@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

@font-face {
    font-family: "ClashDisplay-Light";
    src: url("ClashDisplay_Complete/Fonts/OTF/ClashDisplay-Light.otf") format("otf");
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-light: #fafafa;
    --color-white: white;
    --color-black: black;
    --header-bg-color: #17191c2f;
    --body-bg: #18002d;
    --button-bg: #440080;
    --button-border-bg: #7438aa;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: var(--body-bg);
    color: white;
    min-height: 130vh;
}

/* Navbar */
/* .navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 15px 7px 35px;
    background: var(--header-bg-color);
    backdrop-filter: blur(10px);
    border: 1px solid #37393c;
    border-radius: 50px;
    margin: 20px 15px;
    max-width: 850px;
    width: 100%;
} */

.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 15px 7px 35px;
    background: var(--header-bg-color);
    backdrop-filter: blur(10px);
    border: 1px solid #574666;
    border-radius: 50px;
    max-width: 850px;
    width: calc(100% - 30px); /* dono side ka 15px margin */
}

.logo {
    font-weight: medium;
    font-size: 17px;
    letter-spacing: 1px;
}

.logo span {
    color: rgb(165, 165, 165);
    font-size: 18px;
    margin-left: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    position: relative;
    margin: 0 20px;
    padding: 6px 12px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--color-light);
    font-size: 17px;
    overflow: hidden;
    transition: color 0.5s ease;
}

.nav-links a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(140deg, #383d4e 0%, #4f5464 50%, #383d4e 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -2;
}

.nav-links a span {
    position: relative;
    z-index: -1;
}

.nav-links a:hover::before {
    opacity: 1;
}


.btn-primary {
    background-color: var(--button-bg);
    border-top: 1px solid var(--button-border-bg);
    border-right: 1px solid var(--button-border-bg);
    border-left: 1px solid var(--button-border-bg);
    color: white;
    padding: 9px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    text-align: center;
    max-width: 800px;
    margin: 100px auto;
    padding: 20px;
}

.badge {
    display: inline-block;
    background: var(--body-bg);
    color: var(--button-border-bg);
    box-shadow: 0 0 0 1.5px var(--button-border-bg);
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

.hero h1 {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 20px;
    /* font-family: "Clash Display", system-ui, sans-serif; */
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.hero h1 .span2 {
    color: rgb(223, 223, 223);
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.hero .para {
    font-size: 18px;
    color: #d3d3d3;
    font-size: 20px;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 35px;
}

.hero-buttons {
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary {
    background-color: var(--button-bg);
    border-top: 1px solid var(--button-border-bg);
    border-right: 1px solid var(--button-border-bg);
    border-left: 1px solid var(--button-border-bg);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 400;
    margin-right: 10px;
}

.btn-secondary:hover {
    opacity: 0.9;
}

.btn-outline {
    border: 1px solid #666;
    padding: 10px 15px;
    border-radius: 25px;
    color: #ddd;
    text-decoration: none;
    font-weight: bold;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.trust-text {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: #b5bac4;
}

@media (max-width: 700px) {
    .nav-links {
    display: none;
}
}