/*==============================
GOOGLE FONT & RESET
===============================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #06111d;
    color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 92%;
    max-width: 1320px;
    margin: auto;
}

/*==============================
HEADER
===============================*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: .4s;
}

header.active {
    background: rgba(6, 17, 29, .85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/*==============================
NAVBAR
===============================*/

nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 78px;

}

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

}

.logo-icon {

    width: 40px;

    height: 40px;

    border-radius: 10px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: linear-gradient(135deg, #00d4ff, #006eff);

    color: #fff;

    font-size: 16px;

}

.logo-text {

    font-size: 24px;

    font-weight: 800;

    color: #fff;

}

.logo span {

    color: #00d4ff;

}

/*==============================
MENU
===============================*/

nav ul {

    display: flex;

    gap: 32px;

}

nav ul li a {

    color: #d6dce5;

    font-size: 15px;

    font-weight: 600;

    transition: .3s;

    position: relative;

}

nav ul li a:hover {

    color: #00d4ff;

}

nav ul li a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #00d4ff;

    transition: .35s;

}

nav ul li a:hover::after {

    width: 100%;

}

/*==============================
BUTTON
===============================*/

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 28px;

    border-radius: 10px;

    background: linear-gradient(135deg, #00d4ff, #006eff);

    color: #fff;

    font-size: 15px;

    font-weight: 700;

    transition: .35s;

}

.btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0, 212, 255, .35);

}

/*==============================
HAMBURGER
===============================*/

.hamburger {

    display: none;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

}

.hamburger span {

    width: 26px;

    height: 2px;

    background: #fff;

}

/*==============================
HERO
===============================*/

.hero {

    /* min-height: 100vh; */

    display: flex;

    align-items: center;

    padding-top: 90px;

    position: relative;

    background:
        linear-gradient(90deg,
            rgba(4, 10, 18, .92) 0%,
            rgba(4, 10, 18, .75) 35%,
            rgba(4, 10, 18, .20) 65%),
        url(assets/hero-7.jpeg);

    background-size: cover;
    background-position: center;

}

.overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at right top,
            rgba(0, 212, 255, .18),
            transparent 45%);

}

.hero-content {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    align-items: center;

}

/*==============================
LEFT
===============================*/

.tag {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 15px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .06);

    border: 1px solid rgba(255, 255, 255, .12);

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 25px;

}

.tag i {

    color: #00d4ff;

    font-size: 9px;

}

.left h1 {

    font-size: 58px;

    font-weight: 800;

    line-height: 1.05;

    max-width: 580px;

    margin-bottom: 22px;

}

.left h1 span {

    background: linear-gradient(135deg, #00d4ff, #4aa8ff);

    -webkit-background-clip: text;

    color: transparent;

}

.left p {

    font-size: 17px;

    color: #c8d2dc;

    line-height: 1.7;

    max-width: 520px;

    margin-bottom: 35px;

}

/*==============================
BUTTON GROUP
===============================*/

.hero-buttons {

    display: flex;

    gap: 16px;

    margin-bottom: 45px;

}

.primary-btn {

    padding: 15px 28px;

    background: linear-gradient(135deg, #00d4ff, #006eff);

    border-radius: 10px;

    color: #fff;

    font-size: 15px;

    font-weight: 700;

    transition: .3s;

}

.primary-btn:hover {

    transform: translateY(-4px);

}

.secondary-btn {

    padding: 15px 28px;

    border-radius: 10px;

    color: #fff;

    border: 1px solid rgba(255, 255, 255, .12);

    background: rgba(255, 255, 255, .05);

    backdrop-filter: blur(15px);

}

.secondary-btn:hover {

    background: #00d4ff;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn .bbb_logo {
    border-radius: 7px;
    background-color: white;
    padding: 0px 1px 2.3px 1.5px;
}

.nav-btn .bbb_logo img {
    height: 52px;
    width: 100px;
    /* object-fit: cover; */

}

/*==============================
STATS
===============================*/

.hero-stats {

    display: flex;

    gap: 35px;

}

.hero-stats h2 {

    font-size: 30px;

    color: #00d4ff;

    margin-bottom: 6px;

}

.hero-stats p {

    font-size: 14px;

    color: #b7c5d5;

}

/*==============================
RIGHT IMAGE
===============================*/

.right {

    position: relative;

}

.right img {

    width: 100%;

    max-width: 520px;

    margin-left: auto;

    border-radius: 20px;

}

/*==============================
FLOATING CARDS
===============================*/

.card {

    position: absolute;

    padding: 16px 18px;

    border-radius: 16px;

    background: rgba(12, 24, 40, .75);

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(15px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);

}

.card h4 {

    font-size: 12px;

    color: #bfc8d3;

    margin-bottom: 6px;

}

.card h2 {

    font-size: 24px;

    color: #00d4ff;

    margin-bottom: 4px;

}

.card p {

    font-size: 12px;

    color: #8ea3b9;

}

.revenue {

    top: 20px;

    left: -20px;

}

.traffic {

    top: 120px;

    right: -15px;

}

.sales {

    bottom: 80px;

    left: 10px;

}

.conversion {

    right: 10px;

    bottom: -10px;

}

/*====================================================
ANIMATION
====================================================*/

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }

}

.card {
    animation: float 5s ease-in-out infinite;
}

.traffic {
    animation-delay: .4s;
}

.sales {
    animation-delay: .8s;
}

.conversion {
    animation-delay: 1.2s;
}


/*====================================================
TRUSTED LOGOS
====================================================*/

.brand-section {

    padding: 40px 0;

    background: #081421;

}

.brand-title {

    text-align: center;

    color: #9eb2c7;

    font-size: 15px;

    margin-bottom: 45px;

}

.brand-wrapper {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    flex-wrap: wrap;

}

.brand-item {

    flex: 1;

    min-width: 140px;

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: .65;

    transition: .35s;

}

.brand-item img {

    max-height: 38px;

    filter: grayscale(100%);

}

.brand-item:hover {

    opacity: 1;

    transform: translateY(-4px);

}

.brand-item:hover img {

    filter: none;

}


/*====================================================
ABOUT
====================================================*/

.about {

    padding: 110px 0;

    background: #06111d;

}

.about-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.about-image {

    position: relative;

}

.about-image img {

    border-radius: 24px;

    width: 100%;

}

.about-card {

    position: absolute;

    bottom: 30px;

    right: -25px;

    background: rgba(9, 22, 39, .88);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .08);

    padding: 22px;

    border-radius: 18px;

    width: 220px;

}

.about-card h2 {

    font-size: 34px;

    color: #00d4ff;

    margin-bottom: 6px;

}

.about-card p {

    font-size: 14px;

    color: #b5c4d5;

}

.about-content span {

    color: #00d4ff;

    text-transform: uppercase;

    font-size: 13px;

    letter-spacing: 2px;

    font-weight: 700;

}

.about-content h2 {

    font-size: 48px;

    margin: 20px 0;

    line-height: 1.15;

}

.about-content p {

    color: #b8c7d8;

    line-height: 1.8;

    font-size: 17px;

    margin-bottom: 20px;

}

.about-list {

    margin-top: 30px;

}

.about-list li {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 18px;

    color: #dfe8f1;

}

.about-list i {

    width: 34px;

    height: 34px;

    border-radius: 50%;

    background: #00d4ff;

    color: #06111d;

    display: flex;

    justify-content: center;

    align-items: center;

}


/*====================================================
COMMON BUTTON
====================================================*/

.read-btn {

    display: inline-flex;

    margin-top: 35px;

    padding: 15px 30px;

    border-radius: 10px;

    background: linear-gradient(135deg, #00d4ff, #006eff);

    color: #fff;

    font-weight: 700;

    transition: .35s;

}

.read-btn:hover {

    transform: translateY(-4px);

}


/*====================================================
SECTION TITLE
====================================================*/

.section-title {

    text-align: center;

    margin-bottom: 70px;

}

.section-title span {

    color: #00d4ff;

    font-size: 13px;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.section-title h2 {

    font-size: 46px;

    margin-top: 18px;

}

.section-title p {

    color: #a7b7c8;

    width: 650px;

    max-width: 100%;

    margin: 20px auto 0;

    line-height: 1.8;

}


/*====================================================
SCROLL REVEAL
====================================================*/

.reveal {

    opacity: 0;

    transform: translateY(60px);

    transition: 1s;

}

.reveal.active {

    opacity: 1;

    transform: translateY(0);

}


/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:991px) {

    nav ul {

        position: fixed;

        top: 78px;

        right: 0;

        width: 280px;

        height: 100vh;

        background: #081421;

        flex-direction: column;

        padding: 40px;

        gap: 25px;

        transition: .4s;

        transform: translateX(100%);

    }

    nav ul.active {

        transform: translateX(0);

    }

    .hamburger {

        display: flex;

    }

    .nav-btn {

        display: none;

    }

    .hero-content {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .left h1 {

        font-size: 48px;

        margin: auto auto 20px;

    }

    .left p {

        margin: auto auto 30px;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-stats {

        justify-content: center;

    }

    .right {

        margin-top: 60px;

    }

    .about-wrapper {

        grid-template-columns: 1fr;

    }

    .about-content {

        text-align: center;

    }

    .about-list {

        display: inline-block;

        text-align: left;

    }

}

@media(max-width:768px) {

    .hero {

        padding: 130px 0 80px;

        min-height: auto;

    }

    .left h1 {

        font-size: 40px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-stats {

        flex-direction: column;

        gap: 25px;

    }

    .card {

        display: none;

    }

    .brand-wrapper {

        justify-content: center;

        gap: 25px;

    }

    .about-content h2 {

        font-size: 36px;

    }

    .section-title h2 {

        font-size: 36px;

    }

}

/*==================================
SERVICES SECTION
==================================*/

.services {
    padding: 50px 0;
    background: #081421;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00d4ff18, transparent 70%);
    top: -180px;
    right: -150px;
}

.services::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #006eff15, transparent 70%);
    bottom: -180px;
    left: -150px;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-title span {
    display: inline-block;
    color: #00d4ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-title p {
    width: 650px;
    max-width: 100%;
    margin: auto;
    color: #b9c7d7;
    line-height: 1.8;
    font-size: 17px;
}

/*=============================
GRID
==============================*/

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    position: relative;

    z-index: 2;

}

/*=============================
CARD
==============================*/

.service-card {

    position: relative;

    background: rgba(15, 28, 45, .85);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 22px;

    padding: 35px;

    overflow: hidden;

    transition: .45s ease;

}

.service-card::before {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    background: radial-gradient(circle, #00d4ff18, transparent 70%);

    top: -150px;

    right: -120px;

    transition: .5s;

}

.service-card:hover::before {

    transform: scale(1.4);

}

.service-card:hover {

    transform: translateY(-12px);

    border-color: #00d4ff;

    box-shadow: 0 25px 60px rgba(0, 212, 255, .15);

}

/*=============================
TOP
==============================*/

.service-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

}

.service-number {

    font-size: 46px;

    font-weight: 800;

    color: rgba(255, 255, 255, .08);

    transition: .4s;

}

.service-card:hover .service-number {

    color: rgba(0, 212, 255, .18);

}

/*=============================
ICON
==============================*/

.service-icon {

    width: 70px;

    height: 70px;

    border-radius: 18px;

    background: linear-gradient(135deg, #00d4ff, #006eff);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 28px;

    transition: .4s;

}

.service-card:hover .service-icon {

    transform: rotate(-12deg) scale(1.08);

}

/*=============================
TEXT
==============================*/

.service-card h3 {

    font-size: 26px;

    margin-bottom: 18px;

    line-height: 1.3;

}

.service-card p {

    color: #b7c6d6;

    line-height: 1.8;

    font-size: 16px;

    margin-bottom: 28px;

}

/*=============================
LINK
==============================*/

.service-card a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #00d4ff;

    font-weight: 700;

    transition: .35s;

}

.service-card a i {

    transition: .35s;

}

.service-card:hover a {

    color: #fff;

}

.service-card:hover a i {

    transform: translateX(8px);

}

/*=============================
RESPONSIVE
==============================*/

@media(max-width:1100px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .services {

        padding: 80px 0;

    }

    .section-title h2 {

        font-size: 36px;

    }

    .section-title p {

        font-size: 15px;

    }

    .services-grid {

        grid-template-columns: 1fr;

    }

    .service-card {

        padding: 28px;

    }

    .service-card h3 {

        font-size: 22px;

    }

    .service-icon {

        width: 60px;

        height: 60px;

        font-size: 24px;

    }

    .service-number {

        font-size: 38px;

    }

}

/*==========================================
ABOUT SECTION
==========================================*/

.about {
    padding: 50px 0;
    background: #06111d;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, #00d4ff15, transparent 70%);
    left: -150px;
    top: -100px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* Image */

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    transition: .5s;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Floating Card */

.experience-card {

    position: absolute;

    top: 40px;

    left: -30px;

    background: rgba(12, 22, 40, .92);

    backdrop-filter: blur(20px);

    padding: 24px;

    border-radius: 20px;

    border: 1px solid rgba(255, 255, 255, .08);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);

}

.experience-card h2 {

    font-size: 42px;

    color: #00d4ff;

    margin-bottom: 5px;

}

.experience-card p {

    color: #b8c6d4;

    font-size: 14px;

}

/* Second Card */

.clients-card {

    position: absolute;

    bottom: 35px;

    right: -25px;

    background: linear-gradient(135deg, #00d4ff, #006eff);

    padding: 20px 28px;

    border-radius: 18px;

    color: #fff;

    text-align: center;

    box-shadow: 0 15px 35px rgba(0, 212, 255, .35);

}

.clients-card h3 {

    font-size: 34px;

    margin-bottom: 4px;

}

.clients-card span {

    font-size: 14px;

}

/* Right Side */

.subtitle {

    display: inline-block;

    color: #00d4ff;

    letter-spacing: 2px;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 20px;

}

.about-content h2 {

    font-size: 48px;

    line-height: 1.2;

    margin-bottom: 25px;

}

.about-content p {

    color: #b6c5d5;

    line-height: 1.9;

    margin-bottom: 35px;

    font-size: 17px;

}

/* List */

.about-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 40px;

}

.about-list div {

    display: flex;

    align-items: center;

    gap: 12px;

}

.about-list i {

    color: #00d4ff;

    font-size: 20px;

}

.about-list span {

    color: #fff;

    font-size: 15px;

}

/* Button */

.about-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 32px;

    background: linear-gradient(135deg, #00d4ff, #006eff);

    border-radius: 12px;

    color: #fff;

    font-weight: 700;

    transition: .35s;

}

.about-btn:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0, 212, 255, .4);

}

.about-btn i {

    transition: .3s;

}

.about-btn:hover i {

    transform: translateX(8px);

}

/* Responsive */

@media(max-width:991px) {

    .about-wrapper {

        grid-template-columns: 1fr;

    }

    .about-content {

        text-align: center;

    }

    .about-list {

        grid-template-columns: 1fr;

        text-align: left;

    }

    .experience-card {

        left: 15px;

    }

    .clients-card {

        right: 15px;

    }

}

@media(max-width:768px) {

    .about {

        padding: 80px 0;

    }

    .about-content h2 {

        font-size: 36px;

    }

    .experience-card {

        position: relative;

        left: 0;

        top: 0;

        margin-top: 20px;

        display: inline-block;

    }

    .clients-card {

        position: relative;

        right: 0;

        bottom: 0;

        margin-top: 20px;

        display: inline-block;

    }

}

/*=====================================
PORTFOLIO
=====================================*/

.portfolio {

    padding: 50px 0;

    background: #081421;

}

.portfolio-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}

.portfolio-card {

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    cursor: pointer;

}

.portfolio-card img {

    width: 100%;

    height: 420px;

    object-fit: cover;

    transition: .6s;

}

.portfolio-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 35px;

    background: linear-gradient(transparent,

            rgba(0, 0, 0, .85));

}

.portfolio-overlay span {

    color: #00d4ff;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 10px;

}

.portfolio-overlay h3 {

    font-size: 30px;

    margin-bottom: 18px;

    line-height: 1.3;

}

.portfolio-overlay a {

    color: #fff;

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 600;

}

.portfolio-overlay a i {

    transition: .35s;

}

.portfolio-card:hover img {

    transform: scale(1.1);

}

.portfolio-card:hover a i {

    transform: translateX(8px);

}

@media(max-width:992px) {

    .portfolio-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width:768px) {

    .portfolio {

        padding: 80px 0;

    }

    .portfolio-card img {

        height: 300px;

    }

    .portfolio-overlay {

        padding: 25px;

    }

    .portfolio-overlay h3 {

        font-size: 24px;

    }

}

/*====================================
WHY CHOOSE US
====================================*/

.why-us {

    padding: 50px 0;

    background: #06111d;

}

.why-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.why-image {

    position: relative;

}

.why-image img {

    width: 100%;

    border-radius: 22px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);

}

.why-floating-card {

    position: absolute;

    right: -25px;

    bottom: 30px;

    padding: 22px 30px;

    border-radius: 18px;

    background: rgba(10, 22, 38, .9);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, .08);

}

.why-floating-card h2 {

    font-size: 40px;

    color: #00d4ff;

    margin-bottom: 5px;

}

.why-floating-card p {

    font-size: 14px;

    color: #cfd7df;

}

.why-content span {

    color: #00d4ff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}

.why-content h2 {

    font-size: 48px;

    margin: 20px 0;

    line-height: 1.2;

}

.why-content p {

    color: #b7c6d6;

    line-height: 1.9;

    margin-bottom: 35px;

}

.why-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;

}

.why-box {

    display: flex;

    gap: 18px;

    padding: 22px;

    border-radius: 18px;

    background: #0c1827;

    border: 1px solid rgba(255, 255, 255, .06);

    transition: .4s;

}

.why-box:hover {

    transform: translateY(-8px);

    border-color: #00d4ff;

    box-shadow: 0 20px 40px rgba(0, 212, 255, .12);

}

.why-box i {

    width: 58px;

    height: 58px;

    border-radius: 15px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: linear-gradient(135deg, #00d4ff, #006eff);

    font-size: 22px;

    flex-shrink: 0;

}

.why-box h3 {

    margin-bottom: 8px;

    font-size: 20px;

}

.why-box p {

    margin: 0;

    font-size: 15px;

    line-height: 1.7;

}

@media(max-width:991px) {

    .why-wrapper {

        grid-template-columns: 1fr;

    }

    .why-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width:768px) {

    .why-us {

        padding: 80px 0;

    }

    .why-content h2 {

        font-size: 36px;

    }

    .why-floating-card {

        position: relative;

        right: 0;

        bottom: 0;

        margin-top: 20px;

        display: inline-block;

    }

}

/*====================================
STATISTICS
====================================*/

.stats {

    padding: 110px 0;

    background: linear-gradient(135deg, #081421, #0d2238);

    position: relative;

}

.stats::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    background: radial-gradient(circle, #00d4ff20, transparent);

    top: -150px;

    right: -150px;

}

.stats-wrapper {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    position: relative;

    z-index: 2;

}

.stat-card {

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border-radius: 22px;

    padding: 35px;

    text-align: center;

    transition: .4s;

}

.stat-card:hover {

    transform: translateY(-10px);

    border-color: #00d4ff;

    box-shadow: 0 20px 50px rgba(0, 212, 255, .15);

}

.stat-icon {

    width: 70px;

    height: 70px;

    margin: auto;

    border-radius: 18px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: linear-gradient(135deg, #00d4ff, #006eff);

    font-size: 28px;

    margin-bottom: 25px;

}

.stat-card h2 {

    font-size: 52px;

    color: #00d4ff;

    margin-bottom: 10px;

    font-weight: 800;

}

.stat-card p {

    color: #d0dae5;

    font-size: 17px;

}

@media(max-width:992px) {

    .stats-wrapper {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .stats {

        padding: 80px 0;

    }

    .stats-wrapper {

        grid-template-columns: 1fr;

    }

    .stat-card {

        padding: 28px;

    }

    .stat-card h2 {

        font-size: 40px;

    }

}

/*====================================
TESTIMONIALS
====================================*/

.testimonials {

    padding: 50px 0;

    background: #06111d;

}

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.testimonial-card {

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(18px);

    border-radius: 22px;

    padding: 35px;

    transition: .4s;

}

.testimonial-card:hover {

    transform: translateY(-10px);

    border-color: #00d4ff;

    box-shadow: 0 25px 50px rgba(0, 212, 255, .12);

}

.stars {

    color: #FFD54A;

    margin-bottom: 20px;

}

.stars i {

    margin-right: 3px;

}

.testimonial-card p {

    color: #c2d0df;

    line-height: 1.9;

    margin-bottom: 35px;

}

.client {

    display: flex;

    align-items: center;

    gap: 15px;

}

.client img {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    object-fit: cover;

}

.client h4 {

    margin-bottom: 5px;

}

.client span {

    color: #00d4ff;

    font-size: 14px;


}

.testimonialSlider {

    padding: 20px 5px 60px;

}

.swiper-slide {

    height: auto;

}

.testimonial-card {

    height: 100%;

}

@media(max-width:991px) {

    .testimonial-grid {

        grid-template-columns: 1fr;

    }

}

/*====================================
FOOTER
====================================*/

.footer {

    background: #050d18;

    padding: 90px 0 25px;

    border-top: 1px solid rgba(255, 255, 255, .08);

}

.footer-top {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.2fr;

    gap: 50px;

    margin-bottom: 60px;

}

.footer-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

}

.footer-col p {

    color: #a9b9c8;

    line-height: 1.8;

    margin-bottom: 25px;

}

.footer-col h3 {

    margin-bottom: 25px;

    font-size: 22px;

}

.footer-col ul {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.footer-col ul li {

    color: #b9c8d7;

}

.footer-col ul li a {

    color: #b9c8d7;

    transition: .3s;

}

.footer-col ul li a:hover {

    color: #00d4ff;

    padding-left: 8px;

}

.social-links {

    display: flex;

    gap: 15px;

}

.social-links a {

    width: 44px;

    height: 44px;

    border-radius: 50%;

    background: #0b1828;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    transition: .35s;

}

.social-links a:hover {

    background: #00d4ff;

    transform: translateY(-5px);

}

.contact-info li {

    display: flex;

    gap: 12px;

    align-items: flex-start;

}

.contact-info i {

    color: #00d4ff;

    margin-top: 3px;

}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

}

.footer-bottom p {

    color: #9db0c3;

}

.footer-bottom div {

    display: flex;

    gap: 25px;

}

.footer-bottom a {

    color: #9db0c3;

    transition: .3s;

}

.footer-bottom a:hover {

    color: #00d4ff;

}

@media(max-width:991px) {

    .footer-top {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .footer {

        padding: 70px 0 25px;

    }

    .footer-top {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }

    .footer-bottom div {

        flex-wrap: wrap;

        justify-content: center;

    }

}

/*==============================
ABOUT PAGE STYLES
===============================*/

.about-hero {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    background-image: url('./assets/our_company_2.jpeg');
    background-position: center;
    object-fit: cover;
    background-size: cover;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 17, 29, 0.258);
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #00d4ff;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #b0b0b0;
}

.about-image img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.why-us {
    padding: 100px 0;
    background: rgba(0, 212, 255, 0.05);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.why-card {
    background: rgba(0, 212, 255, 0.1);
    padding: 40px 30px;
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
    transition: .3s;
}

.why-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 212, 255, 0.15);
}

.why-icon {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-card {
    text-align: center;
    cursor: pointer;
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: .3s;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.team-card p {
    color: #00d4ff;
    font-size: 0.9rem;
}

/*==============================
SERVICES PAGE STYLES
===============================*/

.services-hero {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    background-image: url("./assets/services.jpeg");
    background-size: cover;
    background-position: center;
}

.services-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 17, 29, 0.196);
}

.services-hero-content {
    position: relative;
    z-index: 1;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

/*==============================
CONTACT PAGE STYLES
===============================*/

.contact-hero {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    background-image: url("/assets/contact_us.jpeg");
    background-position: center;
    background-size: cover;
}

.contact-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 17, 29, 0.299);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-box h2,
.contact-form-box h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #00d4ff;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: #00d4ff;
    min-width: 50px;
}

.info-content h4 {
    color: #fff;
    margin-bottom: 8px;
}

.info-content p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid #00d4ff;
    border-radius: 5px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.contact-cta {
    background: rgba(0, 212, 255, 0.05);
    padding: 80px 0;
    text-align: center;
}

.contact-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00d4ff;
}

.contact-cta .cta-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.cta-section {
    background: rgba(0, 212, 255, 0.05);
    padding: 80px 0;
    text-align: center;
}

.cta-section .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00d4ff;
}

.cta-section .cta-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 30px;
}

/*==============================
RESPONSIVE - NEW PAGES
===============================*/

@media(max-width:991px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-card img {
        height: 200px;
    }
}

/*==============================
DROPDOWN NAVIGATION STYLES
===============================*/

.nav-dropdown {
    position: relative;
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 0fr);
    min-width: 600px;
    background: #08121d;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    transition: .3s;
    border-left: 3px solid transparent;

}


.dropdown-menu li a:hover {
    background: rgba(0, 212, 255, 0.1);
    border-left-color: #00d4ff;
    color: #00d4ff;
}

/*==============================
SERVICE DETAIL PAGES
===============================*/

.service-detail-hero {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    background-image: url("/assets/common.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.service-detail-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 17, 29, 0.299);
}

.service-detail-hero-content {
    position: relative;
    z-index: 1;
}

.service-detail-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.service-detail-hero-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.service-detail {
    padding: 50px 0;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detail-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #00d4ff;
}

.detail-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #b0b0b0;
}

.detail-image img {
    border-radius: 10px;
    width: 100%;
    height: auto;

}

.service-features {
    padding: 50px 0;
    background: rgba(0, 212, 255, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(0, 212, 255, 0.1);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid #00d4ff;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 212, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.service-process {
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.process-step {
    background: rgba(0, 212, 255, 0.1);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: .3s;
}

.process-step:hover {
    background: rgba(0, 212, 255, 0.15);
}

.step-number {
    font-size: 2.5rem;
    color: #00d4ff;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.process-step p {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/*==============================
TESTIMONIALS PAGE
===============================*/

.testimonials-hero {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    background-image: url("/assets/testimonial2.jpeg");
    background-position: center;
    background-size: cover;
}

.testimonials-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 17, 29, 0.299);
}

.testimonials-hero-content {
    position: relative;
    z-index: 1;
}

.testimonials-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.testimonials-hero-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(0, 212, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
    transition: .3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 212, 255, 0.15);
}

.stars {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #b0b0b0;
    font-style: italic;
}

.client-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    color: #fff;
    margin-bottom: 5px;
}

.client-info span {
    color: #00d4ff;
    font-size: 0.9rem;
}

.testimonials-stats {
    background: rgba(0, 212, 255, 0.05);
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    border-top: 3px solid #00d4ff;
    transition: .3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h2 {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 10px;
}

.stat-card p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.privacy-banner,
.terms-banner {
    padding: 120px 0px 0px;
}


.legal-section {
    padding: 50px 0;
    background: #08111d;
}

.legal-card {
    background: #0f1c2b;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 55px;
}

.legal-date {
    display: inline-block;
    background: #00c8ff20;
    color: #00d4ff;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
}

.legal-card h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.legal-card h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: #00d4ff;
    font-size: 28px;
}

.legal-card p {
    color: #cfd7e2;
    line-height: 1.9;
    margin-bottom: 20px;
}

.legal-card ul {
    padding-left: 22px;
    margin-bottom: 20px;
}

.legal-card li {
    color: #cfd7e2;
    margin-bottom: 12px;
    line-height: 1.8;
}

.contact-box {
    margin-top: 40px;
    background: #07131f;
    border-left: 4px solid #00d4ff;
    padding: 30px;
    border-radius: 15px;
}

.contact-box h4 {
    color: #fff;
    margin-bottom: 10px;
}

/*==============================
RESPONSIVE - SERVICE & TESTIMONIAL PAGES
===============================*/

@media(max-width:991px) {
    .detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .service-detail-hero-content h1,
    .testimonials-hero-content h1 {
        font-size: 2.2rem;
    }

    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}