@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

:root {
    --color-regular: #034099;
    --color-white: #ffffff;
    --color-light: #f1f5f9;
    --color-black: #121212;
    --color-night: #001632;
    --color-red: #f44336;
    --color-blue: #1a73e8;
    --color-gray: #80868b;
    --color-grayish: #dadce0;
    --shadow-normal: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

a {
    text-decoration: none;
    color: #000;
}

img {
    object-fit: cover;
}

body {
    background-color: #f1f1f1;
    transition: all 0.3s;
    scroll-behavior: smooth;
}

nav {
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    /* position: sticky; */
    top: 0;
    z-index: 1000;
    background-color: #fcf5f598;
}

nav a.logo {
    font-size: 33px;
    color: #0f2182;
    font-weight: 600;
}

nav .logo img {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 50px;
}


nav .links a:not(:last-child) {
    margin-right: 20px;
}

nav .login button {
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    background-color: #000;
    border-radius: 8px;
}

nav .login button a {
    color: #fff;
}

nav .login button.signup {
    background-color: #000;
    color: #fff;
    border-radius: 4px;
    margin-right: 14px;
}

header {
    padding: 0 80px;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .left {
    width: 700px;
}

header .left h1 {
    font-size: 80px;
}

header .left h1 span {
    color: #0f2182;
}

header .left p {
    margin: 40px 0;
    width: 100svh;
    color: #777;
    text-align: justify;
}

header .left a {
    display: flex;
    align-items: center;
    background: #000;
    width: 200px;
    padding: 8px;
    border-radius: 60px;
}

header .left a i {
    background-color: #fff;
    font-size: 24px;
    border-radius: 50%;
    padding: 8px;
}

header .left a span {
    color: #fff;
    margin-left: 10px;
}

header img {
    width: 600px;
}

h2.separator {
    padding: 0 80px;
    font-size: 3rem;
    margin-top: 40px;
}

.service-pane {
    padding: 0 80px;
    margin: 50px 0 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    gap: 30px;
}

.service-pane .item,
.nft-shop .nft-list .item {
    padding: 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-pane .item:hover,
.nft-shop .nft-list .item:hover,
.sellers .item:hover {
    box-shadow: 12px 12px 2px 1px rgba(0, 0, 0, .2);
}

.service-pane .item .header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-pane .item .header i {
    font-size: 40px;
}

.service-pane .item .header h5 {
    font-size: 17px;
}

.service-pane .item p {
    text-align: justify;
    margin-top: 10px;
    padding: 0 4px;
}

.nft-shop {
    padding: 0 80px;
    margin-top: 30px;
}

.nft-shop .category {
    display: flex;
    gap: 14px;
}

.nft-shop .category a {
    background-color: #dfdcdc;
    padding: 8px 14px;
    font-size: 15px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.nft-shop .category a:hover {
    color: #fff;
    background-color: #0f2182;
}

.nft-shop .nft-list {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nft-shop .nft-list .item img {
    width: 280px;
    height: 280px;
    border-radius: 18px;
}

.nft-shop .nft-list .item .info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #edecec;
}

.nft-shop .nft-list .item .info h5 {
    font-size: 18px;
}

.nft-shop .nft-list .item .info .btc {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nft-shop .nft-list .item .btc i {
    font-size: 22px;
    color: #304ffe;
}

.nft-shop .nft-list .item .btc p {
    font-size: 12px;
    color: #304ffe;
}

.nft-shop .nft-list .item .info>p {
    font-size: 12px;
    color: #989898;
}

.nft-shop .nft-list .item .bid {
    padding: 14px 0 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nft-shop .nft-list .item .bid p,
.nft-shop .nft-list .item .bid a {
    background-color: #edecec;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 10px;
}

.nft-shop .nft-list .item .bid a {
    color: #304ffe;
    background: transparent;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nft-shop .nft-list .item .bid a:hover {
    color: #fff;
    background-color: #000;
}

.view-more {
    margin: 10px 0 40px;
    display: flex;
    justify-content: center;
}

.view-more button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background: #dfdcdc;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more button:hover {
    color: #fff;
    background: #0f2182;
}

.sellers {
    padding: 0 80px;
    margin: 40px 0 80px;
    display: flex;
    gap: 30px;
}

.tools {
    height: 60vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 30px 0 30px;
}

.tools .tool {
    background-color: #034099;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    height: 35svh;
    width: 100%;
    border: 1px solid black;
    border-radius: 20px;
    transition: all 0.2s;
}

.tools .tool:hover {
    transform: translateY(12px) scale(1.02);
    background-color: #222;
    box-shadow: 12px 12px 2px 1px rgba(0, 0, 0, .2);
}

/* .tools .tool:hover a{
    color: #fff;
} */

.tools .tool {
    font-size: 1.2rem;
    color: #fff;
}

.team .team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    width: 100%;
}

.team .member {
    text-align: center;
    flex: 1;
    max-width: 100%;
}

.team .member img {
    height: 50svh;
    width: 70svw;
    border-radius: 14px;
    transition: all 0.3s;
}

.team .section-header {
    margin-bottom: 20px;
    text-align: center;
}

.team .member h4 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
}

.team .member span {
    color: #666;
    font-size: 1rem;
}

.team .social {
    margin-top: 10px;
}

.team .social a {
    margin: 5px;
    color: #555;
    font-size: 1.2rem;
    text-decoration: none;
}

.team .member img:hover {
    transform: scale(1.03);
}

.team .social a:hover {
    color: #000;
}

.contact-section {
    margin: 0 30px 0 30px;
    padding: 60px 0;
    border-radius: 14px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
}

.section-header p {
    font-size: 18px;
    color: #777;
}

/* Contact Form Styling */
.contact-form-box {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form-group {
    margin-bottom: 20px;
}

button[type="submit"] {
    background-color: var(--color-regular);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    text-align: center;
}

button[type="submit"]:hover {
    background-color: #222;
    color: #fff;
}

button[type="submit"].disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.help-block {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

.messages {
    margin-top: 20px;
}

.alert {
    font-size: 16px;
    color: #2926be;
}

.alert-close {
    color: #2926be;
    font-size: 16px;
}

/* Contact Information Styling */
.contact-information-box-3 {
    background: #034099;
    padding: 18px;
    border-radius: 8px;
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    /* margin-bottom: 50px; */
}

.single-contact-info-box {
    margin-bottom: 20px;
}

.contact-info h6 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 16px;
    color: #fff;
}

.sellers .item {
    background: #fff;
    display: flex;
    align-items: center;
    width: 25%;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sellers .item img {
    width: 64px;
}

.sellers .item .info p {
    font-size: 14px;
    margin-top: 8px;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 50px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer h3 {
    font-size: 3.5rem;
}

footer .right {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 26px;
}

footer .right .links {
    display: flex;
    gap: 30px;
}

footer .right .links a {
    color: #989898;
    transition: color 0.3s ease;
}

footer .right .links a:hover {
    color: #fff;
}

footer .right .social {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .right .social i {
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

footer .right .social i:hover {
    color: #304ffe;
}

footer .right p {
    font-size: 13px;
    color: #777;
}

@media screen and (max-width: 1400px) {

    nav,
    header,
    h2.separator,
    .service-pane,
    .nft-shop,
    .sellers {
        padding: 0 40px;
    }

    header .left h1 {
        font-size: 60px;
    }

    header img {
        width: 540px;
    }

    .nft-shop .nft-list .item img {
        width: 220px;
        height: 220px;
    }

    footer {
        padding: 80px 40px;
    }

    footer h3 {
        font-size: 38px;
    }

}

@media screen and (max-width: 1200px) {

    header .left h1 {
        font-size: 48px;
    }

    header img {
        width: 480px;
    }

    h2.separator {
        font-size: 34px;
    }

    .service-pane .item .header i {
        font-size: 36px;
    }

    .service-pane .item .header h5 {
        font-size: 15px;
    }

    .service-pane .item p {
        font-size: 13px;
    }

    .nft-shop .nft-list {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .nft-shop .nft-list .item {
        width: 48%;
    }

    .nft-shop .nft-list .item img {
        width: 100%;
        height: auto;
    }

    .sellers {
        flex-wrap: wrap;
    }

    .sellers .item {
        width: 48%;
    }

    footer .links a {
        font-size: 15px;
    }

}

@media screen and (max-width: 992px) {

    nav a.logo {
        font-size: 28px;
    }

    nav .links a {
        font-size: 14px;
    }

    header {
        flex-direction: column-reverse;
        height: auto;
        margin-bottom: 60px;
    }

    header .left {
        width: 100%;
    }

    header img {
        width: 100%;
    }

    .service-pane {
        flex-wrap: wrap;
        gap: 20px;
    }

    .service-pane .item {
        width: 48%;
    }

    .sellers {
        gap: 20px;
    }

    footer {
        flex-direction: column;
        padding: 60px 40px;
    }

    footer h3 {
        margin-bottom: 40px;
        font-size: 32px;
    }

    footer .right {
        width: 100%;
        align-items: center;
    }

}

@media screen and (max-width: 768px) {

    nav,
    header,
    h2.separator,
    .service-pane,
    .nft-shop,
    .sellers {
        padding: 0 20px;
    }

    nav a.logo {
        display: none;
    }

    nav .links a {
        font-size: 12px;
    }

    nav .login button {
        font-size: 12px;
        padding: 6px 10px;
    }

    header .left h1 {
        font-size: 36px;
    }

    header .left p {
        font-size: 14px;
    }

    header .left a {
        padding: 6px;
        width: 160px;
        font-size: 14px;
    }

    header .left a i {
        padding: 6px;
    }

    h2.separator {
        font-size: 30px;
    }

    footer {
        padding: 40px 20px;
    }

}

@media screen and (max-width: 576px) {
    header .left h1 {
        font-size: 30px;
    }

    header .left p {
        max-width: 100%;
        font-size: 14px;
        text-wrap: balance;
    }

    .service-pane .item {
        width: 100%;
    }

    .nft-shop .nft-list .item,
    .sellers .item {
        width: 47%;
    }
    
    .service-pane{
        grid-template-columns: repeat(2, 1fr);
    }

    .tools{
        flex-direction: column;
        gap: 1rem;
    }

    .team-row{
        flex-direction: column;
    }

    .nft-shop .category a {
        font-size: 13px;
    }

}