* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0f172a;
    color: #fff;
    overflow-x: hidden;
}
a {
    color: #d4af37;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}
h1 {
    text-align: center;
    margin-bottom: 20px;
}



p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 40px;
}
/* NAVBAR */
.navbar {
    width: 100%;
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* NAV CONTAINER */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO LEFT */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    width: auto;
}
.card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}
.card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.nav-logo span {
    font-weight: bold;
    font-size: 18px;
    background: linear-gradient(90deg, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* RIGHT BUTTON */
.nav-actions .btn {
    padding: 8px 18px;
}


/* HERO LOGO */
.hero-logo {
    text-align: center;
    margin-bottom: 20px;
}

.hero-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    padding: 8px;
}


/* BACKGROUND GLOW */
.bg-blur::before,
.bg-blur::after {
    content: "";
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #d4af37, transparent);
    filter: blur(120px);
    z-index: -1;
}
.hero-desc {
    margin-top: 15px;
    font-size: 15px;
    color: #ccc;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.section-desc {
    text-align: justify;
    margin: 0 auto 40px;
    color: #ccc;
    line-height: 1.7;
    font-size: 16px;
}
.section-desc2 {
    text-align: center;
    margin: 0 auto 40px;
    color: #ccc;
    line-height: 1.7;
    font-size: 16px;
}

.bg-blur::before {
    top: -100px;
    left: -100px;
}

.bg-blur::after {
    bottom: -100px;
    right: -100px;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* GLASS EFFECT */
.glass {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
}

/* HERO */
.hero {
    padding: 80px 20px;
    text-align: center;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.li-heading {
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ddd;
}

/* BUTTONS */
.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.primary {
    background: linear-gradient(135deg, #d4af37, #ffcc00);
    color: #000;
}

.primary:hover {
    transform: scale(1.05);
}

.secondary {
    border: 1px solid #fff;
    color: #fff;
}

.secondary:hover {
    background: #fff;
    color: #000;
}

/* SECTIONS */
.section {
    padding: 60px 20px;
}

.section h2 {
    text-align: center;
    margin-bottom: 10px;
}

/* .section h2 .terms-heading{
    text-align: left;

} */

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* CARD */
.card {
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

/* LIST */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    color: #ddd;
}

/* FOOTER */
.footer {
    text-align: center;
    margin: 40px;
}


/* RESPONSIVE */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
     .nav-logo span {
        display: none; /* hide text on mobile */
    }

    .nav-actions .btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }

}