﻿.gradient-bg {
    position: relative;
    background: linear-gradient(-45deg, #020617, #0b1228, #1e3a8a, #0f172a, #0369a1);
    background-size: 400% 400%;
    animation: gradientMove 18s ease infinite;
}

    .gradient-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 20% 30%, rgba(59,130,246,.25) 0%, transparent 18%), radial-gradient(circle at 80% 20%, rgba(34,211,238,.18) 0%, transparent 18%), radial-gradient(circle at 70% 80%, rgba(99,102,241,.18) 0%, transparent 22%);
        animation: pulseGlow 8s ease-in-out infinite alternate;
        pointer-events: none;
    }

    .gradient-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .15;
        background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
        background-size: 60px 60px;
        animation: gridMove 18s linear infinite;
    }

.glass {
    animation: cardFloat 5s ease-in-out infinite;
}

    .glass:nth-child(2) {
        animation-delay: .8s;
    }

    .glass:nth-child(3) {
        animation-delay: 1.6s;
    }

a.bg-gradient-to-r {
    position: relative;
    overflow: hidden;
}

    a.bg-gradient-to-r::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
        transform: skewX(-20deg);
        animation: shine 3s infinite;
    }

@media (max-width:1024px) {

    #home {
        padding-top: 120px;
        text-align: center;
    }

        #home .grid {
            grid-template-columns: 1fr !important;
            gap: 50px;
        }

        #home img {
            width: 90%;
            margin: auto;
        }

        #home .absolute.top-8,
        #home .absolute.bottom-10 {
            position: relative;
            left: 0;
            right: 0;
            top: 20px;
            bottom: auto;
            display: inline-block;
            margin: 10px;
        }
}

@media(max-width:768px) {

    #home h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    #home p {
        font-size: 16px;
    }

    #home .flex.flex-wrap {
        justify-content: center;
    }

    #home .grid-cols-3 {
        grid-template-columns: 1fr !important;
    }

    #home .glass {
        margin-bottom: 15px;
    }
}

@media(max-width:480px) {

    #home {
        padding-top: 90px;
    }

        #home h1 {
            font-size: 2rem !important;
        }

        #home a {
            width: 100%;
            justify-content: center;
            display: flex;
        }

        #home img {
            width: 100%;
        }
}

@keyframes gradientMove {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulseGlow {

    0% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}

@keyframes gridMove {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(60px);
    }
}

@keyframes imageFloat {

    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes cardFloat {

    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatParticle {

    0% {
        transform: translateY(110vh) scale(.2);
        opacity: 0;
    }

    10% {
        opacity: .7;
    }

    100% {
        transform: translateY(-20vh) scale(1);
        opacity: 0;
    }
}

@keyframes shine {

    0% {
        left: -120%;
    }

    100% {
        left: 140%;
    }
}

.gradient-bg::before,
.gradient-bg::after,
.particles,
.absolute.inset-0 {
    pointer-events: none;
}

#home {
    position: relative;
}

    #home .relative.max-w-7xl {
        position: relative;
        z-index: 10;
    }

.blur-circle {
    pointer-events: none;
    z-index: 0;
}

#home .container,
#home .max-w-7xl,
#home .grid {
    position: relative;
    z-index: 20;
}



/*==========================
    NAVBAR
===========================*/

#navbar {
    background: rgba(7,17,34,.75);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: .35s;
}

.nav-container {
    max-width: 1350px;
    margin: auto;
    padding: 0 30px;
    height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 58px;
    transition: .4s;
}

.logo:hover img {
    transform: scale(1.05);
}

/*==========================
MENU
===========================*/

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

    .nav-links a {
        position: relative;
        color: #e2e8f0;
        text-decoration: none;
        font-weight: 600;
        transition: .3s;
    }

        .nav-links a:hover {
            color: #38bdf8;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -10px;
            width: 0;
            height: 3px;
            border-radius: 20px;
            background: #38bdf8;
            transition: .3s;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after,
        .nav-links .active::after {
            width: 100%;
        }

/*==========================
RIGHT BUTTONS
===========================*/

.nav-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    color: #fff;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,.15);
    transition: .35s;
}

    .login-btn:hover {
        background: #ffffff10;
        color: #38bdf8;
    }

.signup-btn {
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 40px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(90deg,#2563eb,#06b6d4);
    box-shadow: 0 10px 30px rgba(37,99,235,.4);
    transition: .35s;
}

    .signup-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(37,99,235,.55);
    }

/*==========================
HAMBURGER
===========================*/

#menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

/*==========================
MOBILE MENU
===========================*/

#mobile-menu {
    display: none;
    background: #071122;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 25px;
}

    #mobile-menu a {
        display: block;
        color: #fff;
        text-decoration: none;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,.05);
        text-align: center;
    }

.mobile-buttons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/*==========================
SCROLL EFFECT
===========================*/

#navbar.scrolled {
    background: #08111f;
    box-shadow: 0 10px 35px rgba(0,0,0,.35);
}

/*==========================
RESPONSIVE
===========================*/

@media(max-width:992px) {

    .nav-links {
        display: none;
    }

    #menu-btn {
        display: block;
    }

    #mobile-menu.show {
        display: block;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo img {
        height: 50px;
    }
}

@media(max-width:576px) {

    .nav-container {
        height: 75px;
    }

    .signup-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .login-btn {
        display: none;
    }

    .logo img {
        height: 45px;
    }
}




.feature-card {
    position: relative;
    background: rgba(13,24,45,.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0,183,255,.15);
    border-radius: 22px;
    padding: 35px 28px;
    transition: .45s;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.35);
}

    .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,#2563eb,#00d4ff);
    }

    .feature-card:hover {
        transform: translateY(-12px);
        border-color: #38bdf8;
        box-shadow: 0 20px 50px rgba(37,99,235,.45);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,#2563eb,#00d4ff);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
    box-shadow: 0 0 30px rgba(0,183,255,.5);
}

.feature-card h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: #94a3b8;
    line-height: 28px;
    font-size: 15px;
}

.feature-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: #2563eb;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .15;
    top: -80px;
    right: -80px;
    transition: .5s;
}

.feature-card:hover::after {
    opacity: .35;
}

@media(max-width:768px) {

    .feature-card {
        padding: 25px 18px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .feature-card h4 {
        font-size: 18px;
    }
}


.feature-box {
    position: relative;
    padding: 35px 28px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(21,35,60,.95), rgba(10,18,35,.95));
    border: 1px solid rgba(0,180,255,.12);
    transition: .45s;
    box-shadow: 0 15px 35px rgba(0,0,0,.35);
}

    .feature-box::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,#2563eb,#06b6d4);
    }

    .feature-box::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: -70px;
        top: -70px;
        border-radius: 50%;
        background: #2563eb;
        filter: blur(90px);
        opacity: .15;
        transition: .5s;
    }

    .feature-box:hover {
        transform: translateY(-12px);
        border-color: #38bdf8;
        box-shadow: 0 25px 60px rgba(37,99,235,.35);
    }

        .feature-box:hover::after {
            opacity: .35;
        }

.feature-number {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 46px;
    font-weight: 800;
    color: rgba(255,255,255,.05);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 25px;
    background: linear-gradient(135deg,#2563eb,#06b6d4);
    box-shadow: 0 15px 35px rgba(37,99,235,.45);
}

.feature-box h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    color: #94a3b8;
    line-height: 28px;
    margin-bottom: 25px;
    font-size: 15px;
}

.feature-box a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
}

    .feature-box a i {
        margin-left: 8px;
        transition: .3s;
    }

.feature-box:hover a i {
    transform: translateX(6px);
}

@media(max-width:992px) {

    .feature-box {
        padding: 30px 22px;
    }
}

@media(max-width:768px) {

    .feature-box {
        text-align: center;
    }

    .feature-icon {
        margin: auto;
        margin-bottom: 20px;
    }

    .feature-number {
        font-size: 36px;
    }
}


#about {
    background: #050816;
    position: relative;
}

.about-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(37,99,235,.15);
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

    .about-title span {
        color: #38bdf8;
    }

.about-text {
    color: #94a3b8;
    font-size: 17px;
    line-height: 34px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: rgba(255,255,255,.05);
    border-radius: 18px;
    transition: .4s;
    border: 1px solid rgba(255,255,255,.08);
}

    .about-feature:hover {
        transform: translateY(-8px);
        border-color: #38bdf8;
    }

    .about-feature i {
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 15px;
        font-size: 24px;
        background: linear-gradient(135deg,#2563eb,#06b6d4);
        color: #fff;
    }

    .about-feature h4 {
        color: #fff;
        margin-bottom: 5px;
    }

    .about-feature span {
        color: #94a3b8;
        font-size: 14px;
    }

.about-dashboard {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.08);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 15px #22c55e;
    animation: pulse 1.5s infinite;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.dashboard-card {
    padding: 25px;
    border-radius: 18px;
    background: #0d1b34;
    text-align: center;
    transition: .4s;
}

    .dashboard-card:hover {
        transform: translateY(-8px);
    }

    .dashboard-card h3 {
        color: #38bdf8;
        font-size: 32px;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .dashboard-card span {
        color: #94a3b8;
    }

.trust-box {
    margin-top: 30px;
    padding: 25px;
    display: flex;
    gap: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg,#2563eb,#06b6d4);
    color: #fff;
}

    .trust-box i {
        font-size: 38px;
        margin-top: 5px;
    }

@keyframes pulse {

    50% {
        transform: scale(1.4);
        opacity: .6;
    }
}
/*==================================
MARKETS
==================================*/

.markets-section {
    padding: 120px 0;
    background: #050816;
    position: relative;
    overflow: hidden;
}

    /* Animated Glow */

    .markets-section::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: #2563eb;
        filter: blur(180px);
        opacity: .18;
        left: -150px;
        top: -120px;
    }

    .markets-section::after {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        background: #06b6d4;
        filter: blur(170px);
        opacity: .15;
        right: -150px;
        bottom: -120px;
    }

/*==============================*/

.market-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(37,99,235,.12);
    color: #38bdf8;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/*==============================*/

.market-title {
    font-size: 54px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

    .market-title span {
        color: #38bdf8;
    }

.market-desc {
    max-width: 760px;
    margin: auto;
    font-size: 18px;
    line-height: 34px;
    color: #94a3b8;
}

/*==============================*/

.market-box {
    position: relative;
    padding: 35px;
    border-radius: 24px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    transition: .45s;
    z-index: 2;
}

    .market-box::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,#2563eb,#06b6d4);
    }

    .market-box:hover {
        transform: translateY(-15px);
        border-color: #38bdf8;
        box-shadow: 0 20px 60px rgba(37,99,235,.35);
    }

/*==============================*/

.market-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 25px;
}

.crypto {
    background: linear-gradient(135deg,#F7931A,#FFB000);
}

.forex {
    background: linear-gradient(135deg,#2563eb,#06b6d4);
}

.stocks {
    background: linear-gradient(135deg,#22c55e,#16a34a);
}

.commodities {
    background: linear-gradient(135deg,#facc15,#f59e0b);
}

/*==============================*/

.market-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.market-box p {
    color: #94a3b8;
    line-height: 28px;
    margin-bottom: 35px;
}

/*==============================*/

.market-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #38bdf8;
    font-weight: 600;
}

    .market-footer i {
        transition: .35s;
    }

.market-box:hover .market-footer i {
    transform: translateX(8px);
}

/*==============================*/

@media(max-width:768px) {

    .market-title {
        font-size: 36px;
    }

    .market-box {
        padding: 28px;
    }
}

.process-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 24px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    transition: .45s;
    overflow: hidden;
}

    .process-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,#2563eb,#06b6d4);
    }

    .process-card:hover {
        transform: translateY(-12px);
        border-color: #38bdf8;
        box-shadow: 0 25px 60px rgba(37,99,235,.35);
    }

.process-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin-bottom: 30px;
}

.step-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 52px;
    font-weight: 800;
    color: rgba(255,255,255,.05);
}

.process-card h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.process-card p {
    color: #94a3b8;
    line-height: 30px;
    font-size: 15px;
}
/*============================
Mission & Vision
=============================*/

.section-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 40px;
    background: rgba(37,99,235,.15);
    color: #38bdf8;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin: 25px 0;
}

    .section-title span {
        color: #38bdf8;
    }

.section-subtitle {
    max-width: 760px;
    margin: auto;
    color: #94a3b8;
    font-size: 18px;
    line-height: 34px;
}

.purpose-card {
    position: relative;
    padding: 45px;
    border-radius: 28px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    transition: .45s;
    overflow: hidden;
}

    .purpose-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,#2563eb,#06b6d4);
    }

    .purpose-card:hover {
        transform: translateY(-12px);
        border-color: #38bdf8;
        box-shadow: 0 25px 60px rgba(37,99,235,.35);
    }

.purpose-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: #fff;
    margin-bottom: 30px;
}

.mission {
    background: linear-gradient(135deg,#2563eb,#06b6d4);
}

.vision {
    background: linear-gradient(135deg,#8b5cf6,#ec4899);
}

.purpose-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.purpose-card p {
    color: #94a3b8;
    line-height: 32px;
    margin-bottom: 30px;
    font-size: 16px;
}

.purpose-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .purpose-card ul li {
        margin-bottom: 15px;
        color: #e2e8f0;
        font-size: 16px;
    }

        .purpose-card ul li i {
            color: #22c55e;
            margin-right: 12px;
        }

@media(max-width:768px) {

    .section-title {
        font-size: 36px;
    }

    .purpose-card {
        padding: 30px;
    }
}

/*============================
FAQ
=============================*/

.faq-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(37,99,235,.15);
    color: #38bdf8;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

    .faq-title span {
        color: #38bdf8;
    }

.faq-subtitle {
    max-width: 700px;
    margin: auto;
    color: #94a3b8;
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 20px;
}

.faq-item {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: .4s;
}

    .faq-item:hover {
        border-color: #38bdf8;
        box-shadow: 0 15px 45px rgba(37,99,235,.25);
    }

    .faq-item summary {
        padding: 24px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        list-style: none;
        font-size: 20px;
        font-weight: 600;
        color: #fff;
    }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary i {
            transition: .35s;
            color: #38bdf8;
        }

    .faq-item[open] summary i {
        transform: rotate(45deg);
    }

    .faq-item p {
        padding: 0 30px 28px;
        color: #94a3b8;
        font-size: 16px;
        line-height: 30px;
    }

@media(max-width:768px) {

    .faq-title {
        font-size: 36px;
    }

    .faq-item summary {
        font-size: 17px;
        padding: 20px;
    }

    .faq-item p {
        padding: 0 20px 20px;
    }
}

/*==========================
FOOTER
===========================*/

.footer-text {
    color: #94a3b8;
    font-size: 16px;
    line-height: 32px;
    max-width: 520px;
}

.footer-heading {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
}

    .footer-heading::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg,#2563eb,#06b6d4);
        border-radius: 20px;
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 16px;
    }

    .footer-links a {
        color: #94a3b8;
        transition: .35s;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: #38bdf8;
            padding-left: 8px;
        }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-contact li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
        color: #94a3b8;
    }

    .footer-contact i {
        color: #38bdf8;
        width: 22px;
    }

.footer-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg,#2563eb,#06b6d4);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

    .footer-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(37,99,235,.35);
    }

.footer-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    text-decoration: none;
    transition: .35s;
}

    .footer-btn-outline:hover {
        border-color: #38bdf8;
        background: rgba(255,255,255,.05);
    }

.social-icon {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: #94a3b8;
    transition: .35s;
    text-decoration: none;
}

    .social-icon:hover {
        background: linear-gradient(135deg,#2563eb,#06b6d4);
        color: #fff;
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(37,99,235,.35);
    }


/*==========================
CONTACT
==========================*/

.contact-info {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,.08);
}

    .contact-info h3 {
        font-size: 34px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
    }

    .contact-info p {
        color: #94a3b8;
        line-height: 30px;
        margin-bottom: 40px;
    }

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    background: linear-gradient(135deg,#2563eb,#06b6d4);
    color: #fff;
    box-shadow: 0 10px 25px rgba(37,99,235,.35);
}

.contact-item h4 {
    color: #fff;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item span {
    color: #94a3b8;
}

.contact-form {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,.08);
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 14px;
        padding: 16px 18px;
        margin-bottom: 20px;
        color: #fff;
        transition: .35s;
        outline: none;
    }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #94a3b8;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #38bdf8;
            box-shadow: 0 0 15px rgba(56,189,248,.25);
        }

    .contact-form button {
        width: 100%;
        padding: 18px;
        border: none;
        border-radius: 50px;
        font-size: 17px;
        font-weight: 600;
        color: #fff;
        cursor: pointer;
        background: linear-gradient(135deg,#2563eb,#06b6d4);
        transition: .35s;
    }

        .contact-form button:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(37,99,235,.35);
        }

@media(max-width:768px) {

    .contact-info,
    .contact-form {
        padding: 30px;
    }

        .contact-info h3 {
            font-size: 28px;
        }
}
