body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0a1134, #1c2758);
    color: white;
}

/* NAVBAR */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 70px;
    background: rgba(0,0,0,0.2);
}

.logo {
    font-size: 26px;
    font-weight: 700;
}
.logo span {
    color: #39bdf7;
}

nav a {
    color: #fff;
    margin: 0 14px;
    text-decoration: none;
    font-size: 15px;
}

nav a:hover {
    color: #39bdf7;
}

.nav-btns a {
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
}

.offer-btn {
    background: #0fa36b;
    margin-right: 10px;
}

.signup-btn {
    background: #4264ff;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 80px 20px;
}

.tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 7px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 14px;
}

h1 {
    font-size: 55px;
    font-weight: 800;
}

h1 span {
    color: #39bdf7;
}

.hero p {
    max-width: 650px;
    margin: 15px auto;
    opacity: 0.85;
    font-size: 17px;
}

.hero-buttons {
    margin-top: 25px;
}

.btn-primary, .btn-secondary {
    padding: 13px 24px;
    border-radius: 25px;
    text-decoration: none;
    margin: 7px;
    font-size: 16px;
}

.btn-primary {
    background: #4264ff;
    color: white;
}

.btn-secondary {
    background: white;
    color: black;
}

/* STATS BOXES */
.stats-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255,255,255,0.08);
    padding: 25px 35px;
    border-radius: 14px;
    width: 180px;
    text-align: center;
}

.stat-box h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

.stat-box p {
    margin-top: 5px;
    opacity: 0.8;
    font-size: 14px;
}
/* CHOOSE PATH SECTION */
.choose-path {
    margin-top: 80px;
    text-align: center;
    padding: 20px;
}

.section-title {
    font-size: 45px;
    font-weight: 800;
}

.section-title span {
    color: #b86bff;
}

.section-subtitle {
    margin-top: 10px;
    opacity: 0.85;
    font-size: 17px;
}

.path-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.path-box {
    width: 430px;
    background: rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 18px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.08);
}

.left-box {
    background: linear-gradient(135deg, #0b2539, #1a536a);
}

.right-box {
    background: linear-gradient(135deg, #3a0b3a, #a44aac);
}

.path-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.path-box h3 {
    margin: 0;
    font-size: 26px;
}

.path-sub {
    opacity: 0.75;
    margin-bottom: 15px;
}

.path-text {
    opacity: 0.85;
    margin-bottom: 20px;
}

.path-list {
    list-style: none;
    padding: 0;
    line-height: 32px;
    margin-bottom: 25px;
}

.path-btn {
    display: inline-block;
    width: 100%;
    padding: 14px;
    background: white;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.blue-btn {
    background: linear-gradient(90deg, #008cff, #00d9ff);
    color: #fff;
}

.pink-btn {
    background: linear-gradient(90deg, #ff4d9b, #ff70d7);
    color: #fff;
}
body {
    background: #0b0f1a;
    font-family: 'Poppins', sans-serif;
}

.vertical-section {
    text-align: center;
    padding: 40px 0;
}

.title {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
}

.title span {
    color: #7d5ff5;
}

.subtitle {
    color: #ccc;
    margin-top: 5px;
}

.vertical-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 0 40px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    cursor: pointer;
}

.card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
}

.card h4 {
    color: #fff;
    margin: 12px 0 5px;
}

.card p {
    color: #bdbdbd;
    font-size: 14px;
}

/* ICON STYLES */
.icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

/* Icon Colors */
.blue { background: #3b82f6; }
.purple { background: #a855f7; }
.green { background: #22c55e; }
.orange { background: #f97316; }
.pink { background: #ec4899; }
.red { background: #ef4444; }
.gold { background: #f59e0b; }
.cyan { background: #06b6d4; }
.yellow { background: #eab308; }
.violet { background: #8b5cf6; }
.sky { background: #3b82f6; }

body {
    background: #0b0f1a;
    font-family: 'Poppins', sans-serif;
}

/* BRANDS SECTION */
.brands-section {
    text-align: center;
    padding: 40px 0;
}

.brands-header .tag {
    background: #0f5132;
    color: #9fe2bf;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
}

.brands-header h2 {
    color: #fff;
    font-size: 32px;
    margin-top: 10px;
}

.brands-header h2 span {
    color: #38f29e;
}

.brands-logos {
    display: flex;
    gap: 15px;
    padding: 20px;
    overflow-x: auto;
    justify-content: center;
    flex-wrap: wrap;
}

.brand {
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #dbdbdb;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.brand:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}


/* REVIEW SECTION */
.review-section {
    background: #f8f5ef;
    padding: 40px 0 60px;
    text-align: center;
}

.review-caption {
    font-size: 13px;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.review-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.review-card {
    width: 220px;
    height: 390px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.review-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card:hover {
    transform: translateY(-6px);
}

.play-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: red;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}
body {
    background: #071122;
    font-family: 'Poppins', sans-serif;
}

/* CONTACT AREA */
.contact-main {
    display: flex;
    justify-content: space-between;
    padding: 60px 70px;
    color: white;
}

.contact-main h2 {
    font-size: 32px;
}

.contact-main h2 span {
    color: #9a72ff;
}

.subtext {
    margin-top: 10px;
    color: #ccc;
}

.info-box .info {
    display: flex;
    align-items: start;
    margin: 15px 0;
}

.info-box i {
    background: #0d1b39;
    padding: 12px;
    border-radius: 10px;
    font-size: 18px;
    margin-right: 12px;
    color: #7bdfff;
}

.info-box h4 {
    margin: 0;
    font-size: 15px;
}

.info-box p {
    margin: 3px 0 0 0;
    color: #cfcfcf;
    font-size: 13px;
}

/* RIGHT SIDE CARD */
.right-card {
    width: 360px;
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.right-card h3 {
    margin-bottom: 10px;
}

.right-card p {
    color: #dcdcdc;
    font-size: 13px;
}

.signup-btn {
    width: 100%;
    background: linear-gradient(to right, #7a5cff, #c76bff);
    padding: 12px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    border: none;
    margin: 15px 0;
}

.right-card input {
    width: 100%;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    margin: 6px 0;
    border: none;
}

.small-note {
    margin-top: 10px;
    font-size: 12px;
    color: #bbbbbb;
}

/* FOOTER */
.footer {
    background: #0b0f18;
    padding: 50px 70px;
    color: white;
}

.footer-main {
    display: flex;
    justify-content: space-between;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-col p {
    margin: 5px 0;
    font-size: 14px;
    color: #ccc;
}

.join-btn {
    background: #7a61fe;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    color: white;
    margin-top: 15px;
}

.footer-btn {
    display: block;
    background: transparent;
    border: 1px solid #444;
    padding: 7px 12px;
    border-radius: 6px;
    color: white;
    margin-top: 6px;
    font-size: 13px;
}