body {
    font-family: 'Poppins', sans-serif;
    background: #050505;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 999;

    background: rgba(0, 0, 0, 0.85);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* NAVBAR */

.navbar {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;

    text-decoration: none;
}

.logo-box {
    width: 52px;
    height: 52px;

    border-radius: 16px;

    overflow: hidden;

    background: #111;

    box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    color: #fff;

    font-size: 28px;
    font-weight: 800;

    line-height: 1;
}

.logo-subtitle {
    color: #9ca3af;

    font-size: 11px;

    letter-spacing: 4px;
    text-transform: uppercase;
}

/* DESKTOP MENU */

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* MENU LINK */

.menu-link {
    position: relative;

    color: #d1d5db;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    transition: .3s;
}

.menu-link:hover {
    color: #fff;
}

.menu-link::after {
    content: '';

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0%;
    height: 2px;

    background: #fff;

    transition: .3s;
}

.menu-link:hover::after {
    width: 100%;
}

/* DROPDOWN */

.dropdown {
    position: relative;
}

/* DROPDOWN BUTTON */

.dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    background: none;
    border: none;
    outline: none;

    color: #d1d5db;

    font-size: 15px;
    font-weight: 500;

    cursor: pointer;

    transition: .3s;
}

.dropdown-btn:hover {
    color: #fff;
}

.dropdown-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* DROPDOWN MENU */

.dropdown-menu {
    position: absolute;

    top: 55px;
    left: 0;

    width: 320px;

    padding: 14px;

    background: #111111;

    border-radius: 22px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: .3s;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);

    z-index: 999;
}

/* SHOW DROPDOWN */

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

/* DROPDOWN LINKS */

.dropdown-menu a {
    text-decoration: none;
}

/* DROPDOWN ITEM */

.dropdown-item {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 15px;

    border-radius: 16px;

    transition: .3s;
}

.dropdown-item:hover {
    background: #1a1a1a;
}

/* ICON */

.dropdown-item i {
    width: 42px;
    height: 42px;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1f1f1f;

    color: #fff;

    font-size: 15px;

    transition: .3s;
}

.dropdown-item:hover i {
    background: #fff;
    color: #000;
}

/* TEXT */

.dropdown-item span {
    color: #d1d5db;

    font-size: 14px;
    font-weight: 500;

    transition: .3s;
}

.dropdown-item:hover span {
    color: #fff;
}

/* RIGHT SECTION */

.right-section {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* BUTTON */

.header-btn {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 13px 28px;

    border-radius: 999px;

    background: #fff;

    color: #000;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: .3s;
}

.header-btn:hover {
    background: #e5e7eb;

    transform: translateY(-2px);
}

/* MOBILE BUTTON */

.mobile-btn {
    width: 46px;
    height: 46px;

    border: none;
    outline: none;

    border-radius: 14px;

    background: #111;

    color: #fff;

    font-size: 20px;

    cursor: pointer;

    display: none;
}

/* MOBILE MENU */

.mobile-menu {
    background: #080808;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-wrapper {
    padding: 24px;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

.mobile-menu-wrapper a {
    color: #d1d5db;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;
}

/* MOBILE CONTACT BUTTON */

.mobile-contact-btn {
    margin-top: 10px;

    background: #fff;

    color: #000 !important;

    padding: 14px;

    border-radius: 999px;

    text-align: center;

    font-weight: 600;
}

/* RESPONSIVE */

@media(max-width:1024px) {

    .desktop-menu {
        display: none;
    }

    .header-btn {
        display: none;
    }

    .mobile-btn {
        display: block;
    }

    /* MOBILE DROPDOWN */

    .mobile-dropdown {
        width: 100%;
    }

    .mobile-dropdown-btn {
        width: 100%;

        padding: 0;

        justify-content: space-between;
    }

    .mobile-dropdown-menu {
        position: static;

        width: 100%;

        margin-top: 14px;

        padding: 10px;

        display: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        border-radius: 16px;

        box-shadow: none;
    }

    /* OPEN DROPDOWN */

    .mobile-dropdown.active .mobile-dropdown-menu {
        display: block;
    }

}

@media(max-width:768px) {

    .navbar {
        height: 75px;
    }

    .logo-box {
        width: 46px;
        height: 46px;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-subtitle {
        font-size: 10px;

        letter-spacing: 3px;
    }

    .dropdown-item {
        padding: 14px;
    }

    .dropdown-item i {
        width: 38px;
        height: 38px;

        font-size: 14px;
    }

    .dropdown-item span {
        font-size: 13px;
    }

}

@media(max-width:480px) {

    .logo-box {
        width: 42px;
        height: 42px;
    }

    .logo-text {
        font-size: 21px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .mobile-menu-wrapper {
        padding: 20px;
    }

}

/* =========================
   DESKTOP DROPDOWN
========================= */

.dropdown {
    position: relative;
}

/* Desktop Dropdown Menu */

.dropdown-menu {
    position: absolute;

    top: 55px;
    left: 0;

    width: 320px;

    padding: 14px;

    background: #111111;

    border-radius: 22px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: .3s;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);

    z-index: 999;
}

/* Hover Only Desktop */

@media(min-width:1025px) {

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

}

/* =========================
   MOBILE & TABLET DROPDOWN
========================= */

@media(max-width:1024px) {

    .mobile-dropdown {
        width: 100%;
    }

    /* Button */

    .mobile-dropdown-btn {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 5px 0;

        background: none;
        border: none;
        outline: none;

        cursor: pointer;
    }

    /* Mobile Dropdown Menu */

    .mobile-dropdown-menu {

        position: static;

        width: 100%;

        margin-top: 14px;

        padding: 10px;

        display: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        border-radius: 16px;

        background: #111111;

        box-shadow: none;

        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Open Dropdown */

    .mobile-dropdown.active .mobile-dropdown-menu {
        display: block;
    }

}

.logo-box {
    width: 60px;
    height: 60px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(to bottom right, #ffffff, #6b7280);

    color: #000;

    font-size: 20px;
    font-weight: 800;

    letter-spacing: 1px;

    box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
}

==============================
/* hero section */
/* =========================
   HERO SECTION
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #050505;
    overflow-x: hidden;
}

/* HERO SECTION */

.hero-section {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #050505;

    padding: 10px 0 10px;
}

/* GRID */

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

    background-size: 60px 60px;

    mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
}

/* BACKGROUND GRADIENT */

.hero-gradient {
    position: absolute;

    border-radius: 999px;

    filter: blur(150px);

    opacity: .30;
}

.hero-gradient-1 {
    width: 420px;
    height: 420px;

    background: #374151;

    top: -120px;
    left: -120px;
}

.hero-gradient-2 {
    width: 450px;
    height: 450px;

    background: #1f2937;

    bottom: -150px;
    right: -120px;
}

/* WRAPPER */

.hero-wrapper {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;
}

/* LEFT */

.hero-content {
    width: 100%;
}

/* BADGE */

.hero-badge {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #d1d5db;

    font-size: 13px;
    font-weight: 500;

    margin-bottom: 18px;

    backdrop-filter: blur(10px);
}

/* DOT */

.badge-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #fff;
}

/* TITLE */

.hero-title {
    color: #fff;

    font-size: 42px;
    font-weight: 800;

    line-height: 1.3;

    margin-bottom: 20px;
}

.hero-title span {
    display: block;

    background: linear-gradient(to right, #ffffff, #6b7280);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */

.hero-description {
    color: #9ca3af;

    font-size: 15px;
    line-height: 1.9;

    max-width: 560px;

    margin-bottom: 32px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

    margin-bottom: 35px;
}

/* BUTTON */

.hero-btn-primary,
.hero-btn-secondary {
    padding: 16px 32px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: .3s;
}

/* PRIMARY */

.hero-btn-primary {
    background: #fff;
    color: #000;

    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-btn-primary:hover {
    background: #e5e7eb;
}

/* SECONDARY */

.hero-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.10);

    color: #fff;
}

.hero-btn-secondary:hover {
    background: #111111;
}

/* STATS */

.hero-stats {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;
}

/* STAT BOX */

.stat-box {
    min-width: 130px;

    padding: 18px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-box h3 {
    color: #fff;

    font-size: 28px;
    font-weight: 700;

    margin-bottom: 6px;
}

.stat-box p {
    color: #9ca3af;

    font-size: 13px;
}

/* RIGHT */

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MAIN CIRCLE */

.main-tech-circle {
    position: relative;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(255, 255, 255, 0.03);

    display: flex;
    align-items: center;
    justify-content: center;

    animation: rotateCircle 22s linear infinite;
}

/* FIXED CENTER */

.circle-center {
    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: linear-gradient(to bottom right, #ffffff, #6b7280);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;

    box-shadow: 0 0 50px rgba(255, 255, 255, 0.10);
}

/* FIXED TEXT */

.circle-logo {
    color: #000;

    font-size: 28px;
    font-weight: 800;

    text-align: center;

    line-height: 1.3;

    padding: 15px;

    transform: none !important;
}

/* ICONS */

.floating-tech {
    position: absolute;

    width: 72px;
    height: 72px;

    border-radius: 20px;

    background: #111111;

    border: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 24px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

    animation: counterRotate 22s linear infinite;
}

/* POSITIONS */

.tech-1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.tech-2 {
    top: 80px;
    right: -15px;
}

.tech-3 {
    bottom: 80px;
    right: -15px;
}

.tech-4 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.tech-5 {
    bottom: 80px;
    left: -15px;
}

.tech-6 {
    top: 80px;
    left: -15px;
}

/* ANIMATION */

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1024px) {

    .hero-wrapper {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin: auto auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

}

@media(max-width:768px) {

    .hero-section {
        padding: 90px 0 60px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 14px;
    }

    .main-tech-circle {
        width: 320px;
        height: 320px;
    }

    .circle-center {
        width: 150px;
        height: 150px;
    }

    .circle-logo {
        font-size: 18px;
    }

    .floating-tech {
        width: 55px;
        height: 55px;

        font-size: 18px;

        border-radius: 16px;
    }

    .stat-box {
        min-width: 110px;
        padding: 16px;
    }

}

@media(max-width:480px) {

    .hero-title {
        font-size: 28px;
        line-height: 1.4;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .main-tech-circle {
        width: 250px;
        height: 250px;
    }

    .circle-center {
        width: 120px;
        height: 120px;
    }

    .circle-logo {
        font-size: 14px;
    }

    .floating-tech {
        width: 45px;
        height: 45px;

        font-size: 15px;

        border-radius: 14px;
    }

}

/* HIDE HERO RIGHT SECTION IN MOBILE & TABLET */

@media(max-width:1024px) {

    .hero-right {
        display: none;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

}

/* =========================
   EXPERT CALL SECTION
========================= */

.expert-call-section {
    padding: 90px 0;

    background: #050505;
}

/* BOX */

.expert-call-box {
    position: relative;

    padding: 70px 50px;

    border-radius: 36px;

    overflow: hidden;

    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));

    border: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;

    backdrop-filter: blur(14px);
}

/* Blur Effect */

.expert-call-box::before {
    content: '';

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: #374151;

    filter: blur(140px);

    opacity: .25;

    top: -150px;
    left: -120px;
}

.expert-call-box::after {
    content: '';

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: #1f2937;

    filter: blur(150px);

    opacity: .20;

    bottom: -180px;
    right: -140px;
}

/* CONTENT */

.expert-badge,
.expert-title,
.expert-description,
.expert-buttons {
    position: relative;
    z-index: 2;
}

/* BADGE */

.expert-badge {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #d1d5db;

    font-size: 13px;
    font-weight: 500;

    margin-bottom: 24px;
}

.expert-badge span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #fff;
}

/* TITLE */

.expert-title {
    color: #fff;

    font-size: 42px;
    font-weight: 800;

    line-height: 1.3;

    margin-bottom: 18px;
}

/* DESCRIPTION */

.expert-description {
    max-width: 720px;

    margin: auto;

    color: #9ca3af;

    font-size: 15px;
    line-height: 1.9;

    margin-bottom: 35px;
}

/* BUTTONS */

.expert-buttons {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    flex-wrap: wrap;
}

/* BUTTON COMMON */

.expert-btn-primary,
.expert-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 250px;

    height: 56px;

    padding: 0 28px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: .3s;
}

/* PRIMARY BUTTON */

.expert-btn-primary {
    background: #fff;

    color: #000;
}

.expert-btn-primary:hover {
    background: #e5e7eb;

    transform: translateY(-3px);
}

/* SECONDARY BUTTON */

.expert-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.10);

    color: #fff;

    background: rgba(255, 255, 255, 0.03);
}

.expert-btn-secondary:hover {
    background: #111111;

    transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

    .expert-call-section {
        padding: 70px 0;
    }

    .expert-call-box {
        padding: 50px 25px;
        border-radius: 28px;
    }

    .expert-title {
        font-size: 32px;
    }

    .expert-description {
        font-size: 14px;
    }

    .expert-btn-primary,
    .expert-btn-secondary {
        width: 100%;

        min-width: 100%;
    }

}

@media(max-width:480px) {

    .expert-title {
        font-size: 26px;
    }

    .expert-description {
        font-size: 13px;
    }

    .expert-btn-primary,
    .expert-btn-secondary {
        height: 52px;

        font-size: 13px;
    }

}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
    padding: 100px 0;

    background: #050505;
}

/* HEADING */

.services-heading {
    text-align: center;

    max-width: 750px;

    margin: auto auto 60px;
}

/* BADGE */

.services-badge {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #d1d5db;

    font-size: 13px;
    font-weight: 500;

    margin-bottom: 22px;
}

.services-badge span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #fff;
}

/* TITLE */

.services-title {
    color: #fff;

    font-size: 42px;
    font-weight: 800;

    line-height: 1.3;

    margin-bottom: 18px;
}

/* DESCRIPTION */

.services-description {
    color: #9ca3af;

    font-size: 15px;
    line-height: 1.9;
}

/* GRID */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

/* CARD */

.service-card {
    position: relative;

    padding: 35px 28px;

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.06);

    overflow: hidden;

    transition: .3s;
}

/* Hover */

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255, 255, 255, 0.15);

    background: rgba(255, 255, 255, 0.05);
}

/* ICON */

.service-icon {
    width: 70px;
    height: 70px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111111;

    border: 1px solid rgba(255, 255, 255, 0.08);

    margin-bottom: 24px;
}

.service-icon i {
    color: #fff;

    font-size: 28px;
}

/* CARD TITLE */

.service-card h3 {
    color: #fff;

    font-size: 22px;
    font-weight: 700;

    line-height: 1.4;

    margin-bottom: 15px;
}

/* CARD TEXT */

.service-card p {
    color: #9ca3af;

    font-size: 14px;
    line-height: 1.9;
}

/* LEARN MORE BUTTON */

.service-btn {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: .3s;
}

/* ICON */

.service-btn i {
    font-size: 13px;

    transition: .3s;
}

/* HOVER */

.service-btn:hover {
    color: #d1d5db;
}

.service-btn:hover i {
    transform: translateX(4px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1024px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .services-section {
        padding: 80px 0;
    }

    .services-title {
        font-size: 34px;
    }

    .services-description {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 24px;
    }

    .service-icon {
        width: 62px;
        height: 62px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 20px;
    }

}

@media(max-width:480px) {

    .services-title {
        font-size: 28px;
    }

    .services-description {
        font-size: 13px;
    }

    .service-card {
        border-radius: 24px;
    }

}

/* VIEW MORE BUTTON */

.services-view-more {
    display: flex;
    justify-content: center;

    margin-top: 50px;
}

/* BUTTON */

.view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    height: 56px;

    padding: 0 32px;

    border-radius: 999px;

    background: #ffffff;

    color: #000000;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: .3s;
}

/* ICON */

.view-more-btn i {
    font-size: 13px;

    transition: .3s;
}

/* HOVER */

.view-more-btn:hover {
    background: #e5e7eb;

    transform: translateY(-3px);
}

.view-more-btn:hover i {
    transform: translateX(4px);
}

/* MOBILE */

@media(max-width:480px) {

    .view-more-btn {
        width: 100%;

        font-size: 13px;

        height: 52px;
    }

}

/* =========================
   TECHNOLOGIES SECTION
========================= */

.technologies-section {
    padding: 100px 0;
    background: #050505;
}

/* HEADING */

.technologies-heading {
    text-align: center;
    max-width: 760px;
    margin: auto auto 60px;
}

/* BADGE */

.technologies-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #d1d5db;

    font-size: 13px;
    font-weight: 500;

    margin-bottom: 22px;
}

.technologies-badge span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #fff;
}

/* TITLE */

.technologies-title {
    color: #fff;

    font-size: 42px;
    font-weight: 800;

    line-height: 1.3;

    margin-bottom: 16px;
}

/* DESCRIPTION */

.technologies-description {
    color: #9ca3af;

    font-size: 15px;
    line-height: 1.9;
}

/* =========================
   TABS
========================= */

.technology-tabs {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;

    margin-bottom: 55px;
}

.tech-tab {
    padding: 12px 24px;

    border: none;
    outline: none;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #d1d5db;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: .3s;
}

.tech-tab.active {
    background: #ffffff;
    color: #000000;
}

.tech-tab:hover {
    background: #ffffff;
    color: #000000;
}

/* =========================
   GRID
========================= */

.technologies-grid {
    display: grid;

    grid-template-columns: repeat(7, 1fr);

    gap: 18px;
}

/* CARD */

.technology-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 24px 16px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.06);

    text-align: center;

    transition: .35s;
}

.technology-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 255, 255, 0.15);

    background: rgba(255, 255, 255, 0.05);
}

/* ICON */

.technology-icon {
    width: 70px;
    height: 70px;

    margin-bottom: 18px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111111;

    border: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 30px;

    color: #ffffff;

    transition: .3s;
}

.technology-card:hover .technology-icon {
    transform: scale(1.08);
}

/* TITLE */

.technology-card h3 {
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.4;
}

/* COLORS */

.android {
    color: #a3e635;
}

.flutter {
    color: #38bdf8;
}

.react {
    color: #38bdf8;
}

.angular {
    color: #ef4444;
}

.vue {
    color: #22c55e;
}

.html {
    color: #f97316;
}

.css {
    color: #3b82f6;
}

.js {
    color: #facc15;
}

.php {
    color: #a78bfa;
}

.node {
    color: #4ade80;
}

.laravel {
    color: #fb7185;
}

.codeigniter {
    color: #f97316;
}

.figma {
    color: #f472b6;
}

.photoshop {
    color: #38bdf8;
}

.canva {
    color: #06b6d4;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .technologies-grid {
        grid-template-columns: repeat(5, 1fr);
    }

}

@media(max-width:992px) {

    .technologies-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media(max-width:768px) {

    .technologies-section {
        padding: 80px 0;
    }

    .technologies-title {
        font-size: 34px;
    }

    .technologies-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .technology-icon {
        width: 60px;
        height: 60px;

        font-size: 26px;
    }

}

@media(max-width:576px) {

    .technologies-title {
        font-size: 28px;
    }

    .technologies-description {
        font-size: 13px;
    }

    .technology-tabs {
        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 5px;

        scrollbar-width: none;
    }

    .technology-tabs::-webkit-scrollbar {
        display: none;
    }

    .tech-tab {
        white-space: nowrap;

        padding: 10px 18px;

        font-size: 13px;
    }

    .technologies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .technology-card {
        padding: 20px 14px;
    }

    .technology-icon {
        width: 55px;
        height: 55px;

        font-size: 22px;

        border-radius: 18px;
    }

    .technology-card h3 {
        font-size: 14px;
    }

}

/* =========================
   DEVELOPMENT PROCESS
========================= */

.development-process-section {
    position: relative;

    padding: 100px 0;

    background: #050505;

    overflow: hidden;
}

/* BACKGROUND GLOW */

.development-process-section::before {
    content: '';

    position: absolute;

    top: -150px;
    left: -150px;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: #1f2937;

    filter: blur(140px);

    opacity: .25;
}

.development-process-section::after {
    content: '';

    position: absolute;

    bottom: -180px;
    right: -180px;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: #374151;

    filter: blur(160px);

    opacity: .18;
}

/* =========================
   HEADING
========================= */

.dev-process-heading {
    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 760px;

    margin: auto auto 70px;
}

/* BADGE */

.dev-process-badge {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #d1d5db;

    font-size: 13px;
    font-weight: 500;

    margin-bottom: 22px;

    backdrop-filter: blur(10px);
}

.dev-process-badge span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #ffffff;

    animation: pulseDot 2s infinite;
}

/* TITLE */

.dev-process-title {
    color: #ffffff;

    font-size: 42px;
    font-weight: 800;

    line-height: 1.3;

    margin-bottom: 18px;
}

/* DESCRIPTION */

.dev-process-description {
    color: #9ca3af;

    font-size: 15px;
    line-height: 1.9;
}

/* =========================
   PROCESS WRAPPER
========================= */

.process-scroll-wrapper {
    position: relative;

    max-width: 1000px;

    margin: auto;
}

/* CENTER LINE */

.process-center-line {
    position: absolute;

    top: 0;
    left: 50%;

    width: 3px;
    height: 100%;

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.4),
            rgba(255, 255, 255, 0.08));

    transform: translateX(-50%);
}

/* FLOW */

.dev-process-flow {
    display: flex;
    flex-direction: column;

    gap: 45px;

    position: relative;

    z-index: 2;
}

/* =========================
   CARD
========================= */

.dev-process-card {
    position: relative;

    width: 46%;

    padding: 35px 26px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(14px);

    overflow: hidden;

    transition: .4s;

    animation: cardFloat 5s ease-in-out infinite;
}

/* CARD ALIGN */

.dev-process-card:nth-child(odd) {
    margin-right: auto;
}

.dev-process-card:nth-child(even) {
    margin-left: auto;
}

/* HOVER */

.dev-process-card:hover {
    transform: translateY(-10px);

    border-color: rgba(255, 255, 255, 0.14);

    background: rgba(255, 255, 255, 0.05);
}

/* NUMBER */

.process-number {
    position: absolute;

    top: 50%;

    right: -74px;

    transform: translateY(-50%);

    width: 56px;
    height: 56px;

    border-radius: 50%;

    background: #ffffff;

    color: #000000;

    font-size: 18px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;

    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.20);

    animation: numberPulse 2s infinite;
}

/* EVEN NUMBER */

.dev-process-card:nth-child(even) .process-number {
    left: -74px;
    right: auto;
}

/* ICON */

.dev-process-icon {
    width: 82px;
    height: 82px;

    margin-bottom: 24px;

    border-radius: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111111;

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 30px;

    animation: iconFloat 3s ease-in-out infinite;
}

/* STEP */

.process-step {
    display: inline-block;

    color: #d1d5db;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 12px;

    letter-spacing: 1px;

    text-transform: uppercase;
}

/* TITLE */

.dev-process-card h3 {
    color: #ffffff;

    font-size: 24px;
    font-weight: 700;

    margin-bottom: 14px;
}

/* TEXT */

.dev-process-card p {
    color: #9ca3af;

    font-size: 14px;
    line-height: 1.9;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes iconFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes cardFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes numberPulse {

    0% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.08);
    }

    100% {
        transform: translateY(-50%) scale(1);
    }

}

@keyframes pulseDot {

    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .6;
        transform: scale(1.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}

/* =========================
   TABLET
========================= */

@media(max-width:992px) {

    .development-process-section {
        padding: 90px 0;
    }

    .dev-process-title {
        font-size: 36px;
    }

    .dev-process-card {
        width: 44%;

        padding: 30px 22px;
    }

    .dev-process-icon {
        width: 72px;
        height: 72px;

        font-size: 26px;
    }

    .dev-process-card h3 {
        font-size: 21px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .development-process-section {
        padding: 80px 0;
    }

    .dev-process-heading {
        margin-bottom: 50px;
    }

    .dev-process-title {
        font-size: 32px;
    }

    .dev-process-description {
        font-size: 14px;
    }

    /* LINE */

    .process-center-line {
        left: 22px;
    }

    /* FLOW */

    .dev-process-flow {
        gap: 24px;
    }

    /* CARD */

    .dev-process-card {
        width: 100%;

        margin: 0 0 0 55px !important;

        padding: 26px 20px;

        border-radius: 24px;
    }

    /* NUMBER */

    .process-number {
        left: -55px !important;
        right: auto;

        width: 44px;
        height: 44px;

        font-size: 15px;
    }

    /* ICON */

    .dev-process-icon {
        width: 60px;
        height: 60px;

        font-size: 22px;

        border-radius: 18px;
    }

    /* TITLE */

    .dev-process-card h3 {
        font-size: 19px;
    }

    /* TEXT */

    .dev-process-card p {
        font-size: 13px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px) {

    .development-process-section {
        padding: 70px 0;
    }

    .dev-process-title {
        font-size: 28px;
    }

    .dev-process-description {
        font-size: 13px;
    }

    .dev-process-card {
        margin-left: 48px !important;

        padding: 22px 18px;
    }

    .process-number {
        left: -48px !important;

        width: 40px;
        height: 40px;

        font-size: 14px;
    }

    .dev-process-icon {
        width: 54px;
        height: 54px;

        font-size: 20px;
    }

    .dev-process-card h3 {
        font-size: 17px;
    }

    .dev-process-card p {
        font-size: 12px;

        line-height: 1.8;
    }

}

/* =========================
   FOOTER SECTION
========================= */

.footer-section {
    position: relative;

    padding-top: 90px;

    background: #050505;

    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* GLOW */

.footer-section::before {
    content: '';

    position: absolute;

    top: -120px;
    left: -120px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: #1f2937;

    filter: blur(130px);

    opacity: .18;
}

/* TOP */

.footer-top {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.3fr;

    gap: 40px;

    padding-bottom: 60px;
}

/* LOGO */

.footer-logo {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: #ffffff;

    font-size: 26px;
    font-weight: 800;

    margin-bottom: 24px;

    text-decoration: none;
}

.footer-logo span {
    width: 60px;
    height: 60px;

    border-radius: 14px;

    background: #ffffff;

    color: #000000;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    font-weight: 800;
}

/* ABOUT */

.footer-about p {
    color: #9ca3af;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 28px;

    max-width: 380px;
}

/* SOCIAL */

.footer-social {
    display: flex;
    align-items: center;

    gap: 14px;
}

.footer-social a {
    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.06);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 16px;

    transition: .35s;

    text-decoration: none;
}

.footer-social a:hover {
    transform: translateY(-5px);

    background: #ffffff;

    color: #000000;
}

/* LINKS */

.footer-links h3,
.footer-contact h3 {
    color: #ffffff;

    font-size: 20px;
    font-weight: 700;

    margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: #9ca3af;

    font-size: 14px;

    text-decoration: none;

    transition: .3s;
}

.footer-links ul li a:hover {
    color: #ffffff;

    padding-left: 6px;
}

/* CONTACT */

.footer-contact ul li {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 18px;
}

.footer-contact ul li i {
    color: #ffffff;

    font-size: 16px;

    margin-top: 4px;
}

.footer-contact ul li span {
    color: #9ca3af;

    font-size: 14px;

    line-height: 1.8;
}

/* BOTTOM */

.footer-bottom {
    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;

    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

    .footer-top {
        grid-template-columns: 1fr 1fr;

        gap: 40px 30px;
    }

}

@media(max-width:768px) {

    .footer-section {
        padding-top: 70px;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-logo span {
        width: 44px;
        height: 44px;

        font-size: 20px;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 18px;
    }

    .footer-about p,
    .footer-links ul li a,
    .footer-contact ul li span {
        font-size: 13px;
    }

}

@media(max-width:480px) {

    .footer-section {
        padding-top: 60px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;

        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

}

/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float{
  position:fixed;

  right:20px;
  bottom:20px;

  width:65px;
  height:65px;

  border-radius:50%;

  background:#25D366;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#ffffff;

  font-size:34px;

  text-decoration:none;

  box-shadow:0 10px 30px rgba(37,211,102,0.4);

  z-index:9999;

  animation:whatsappPulse 2s infinite;

  transition:.35s;
}

/* HOVER */

.whatsapp-float:hover{
  transform:translateY(-6px) scale(1.05);

  color:#ffffff;
}

/* PULSE ANIMATION */

@keyframes whatsappPulse{

  0%{
    box-shadow:0 0 0 0 rgba(37,211,102,0.6);
  }

  70%{
    box-shadow:0 0 0 18px rgba(37,211,102,0);
  }

  100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .whatsapp-float{
    width:58px;
    height:58px;

    right:36px;
    bottom:46px;

    font-size:30px;
  }

}

@media(max-width:480px){

  .whatsapp-float{
    width:54px;
    height:54px;

    right: 37px;
    bottom:47px;

    font-size:28px;
  }

}