/* ===== Global Reset ===== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary: #0c2d83;
--secondary: #e42328;
--yellow: #ffd200;
--light: #f7f9fd;
--text: #555;
}
html {
scroll-behavior: smooth;
	background-color: #ffffff;
}
body {
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
background:#ffffff;
color: #123;
overflow-x: hidden;
}


.success-overlay {
position: fixed;
top: 0;
left: 0;

width: 100%;
height: 100vh;

background: rgba(0, 0, 0, 0.75);

display: flex;
justify-content: center;
align-items: center;

z-index: 999999;

opacity: 0;
visibility: hidden;

transition: 0.35s ease;
}

.success-overlay.show {
opacity: 1;
visibility: visible;
}

.success-message {
width: min(450px, 90%);
background: #fff;

border-radius: 20px;

padding: 40px;

text-align: center;

transform: scale(0.8);

transition: 0.35s;
}

.success-overlay.show .success-message {
transform: scale(1);
}

.success-icon {
font-size: 60px;
margin-bottom: 15px;
}

.success-message h3 {
color: #0c2d83;
margin-bottom: 10px;
}

.success-message p {
color: #555;
line-height: 1.7;
}

.success-message button {
margin-top: 25px;
padding: 12px 30px;
border: none;
background: #e42328;
color: #fff;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
}
/* ===========================
   PRELOADER
=========================== */

#loader {
position: fixed;

inset: 0;

/*    background:linear-gradient(135deg,#123B92,#0C2D83);*/
background-color: aliceblue;

display: flex;

justify-content: center;

align-items: center;

z-index: 999999;

transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-content {
text-align: center;

color: #fff;
}

.loader-content img {
width: 180px;

margin-bottom: 25px;

animation: zoom 1.2s ease infinite alternate;
}

.spinner {
width: 65px;

height: 65px;

margin: 20px auto;

border: 5px solid rgba(255, 255, 255, 0.25);

border-top: 5px solid #ffd200;

border-radius: 50%;

animation: spin 1s linear infinite;
}

.loader-content h2 {
margin-top: 15px;

font-size: 32px;

font-weight: 700;
}

.loader-content p {
margin-top: 10px;

color: #eee;

letter-spacing: 2px;
}

.loader-hide {
opacity: 0;

visibility: hidden;
}

@keyframes spin {
100% {
transform: rotate(360deg);
}
}

@keyframes zoom {
from {
transform: scale(0.95);
}

to {
transform: scale(1.05);
}
}

.progress {
width: 240px;

height: 8px;

background: rgba(255, 255, 255, 0.2);

border-radius: 20px;

overflow: hidden;

margin: 30px auto;
}

.progress-bar {
width: 0;

height: 100%;

background: #ffd200;

animation: loading 2s linear forwards;
}

@keyframes loading {
from {
width: 0;
}

to {
width: 100%;
}
}
header {
display: grid;
align-items: center;
justify-content: space-between;
gap: 60px;
grid-template-columns: 1.2fr 0.8fr;
background: #fff;
padding: 10px 6% 0 6%;
}
.logoimg {
max-width: 200px;
height: auto;
display: block;
margin-top: 15px;
}
a {
text-decoration: none;
}
.container {
width: min(1200px, 90%);
margin: auto;
}
.benefits {
display: grid;

grid-template-columns: repeat(2, 1fr);

gap: 20px;
}

.benefit-card {
display: flex;

gap: 15px;

padding: 20px;

background: #fff;

border-radius: 18px;

box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);

transition: 0.35s;
border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
transform: translateY(-10px);

box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
.hero {
width: min(1400px, 92%);
margin: 0 auto;
min-height: calc(100vh - 80px);

display: grid;
grid-template-columns: 55% 45%;

align-items: center;
gap: 60px;

padding: 80px 0 40px;
}

.hero-left {
flex: 1;
width: 100%;
}

.hero-right {
display: flex;
justify-content: flex-end;
align-items: center;
}
/* HEADER */

.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 80px;
padding: 0 6%;
background: #fff;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
z-index: 9999;
}

.logo img {
height: 55px;
display: block;
width: 200px;
}

.menu-btn {
display: none;
font-size: 32px;
cursor: pointer;
color: #123b92;
line-height: 1;
}

.navbar {
display: flex;
align-items: center;
gap: 10px;
}
.nav-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 7px 14px;
background: #e42328;
color: #fff !important;
border-radius: 8px;
white-space: nowrap; /* Prevent text from wrapping */
}
.nav-btn:hover {
background-color: #0c2d83;
}

.hero-buttons {
display: flex;

gap: 10px;

margin-top: 40px;

flex-wrap: wrap;
transition: 0.3s;

overflow: hidden;

position: relative;
}
.hero-buttons:hover {
transform: translateY(-3px);
}
.tag {
background: #ffe9cc;

color: #d67d00;

padding: 10px 18px;

border-radius: 30px;

font-weight: 600;

display: inline-block;

margin-bottom: 25px;
}

.hero h1 {
font-size: clamp(3.5rem, 6vw, 4.8rem);

font-weight: 800;

color: #e42328;

margin-bottom: 10px;
}

.hero h1 span {
color: #0c2d83;
}

.hero h2 {
font-size: 26px;

color: #0c2d83;

margin-bottom: 20px;
}

.registration-form {
background: rgba(255, 255, 255, 0.9);

backdrop-filter: blur(15px);

padding: 35px;

border-radius: 25px;

box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.input-group label {
position: absolute;

left: 15px;

top: 16px;

background: #fff;

padding: 0 5px;

transition: 0.25s;

color: #777;

pointer-events: none;
}

.registration-form h3 {
text-align: center;

margin-bottom: 30px;

font-size: 30px;

color: #0c2d83;
}

.input-group {
position: relative;

margin-bottom: 20px;
}

.registration-form input,
.registration-form select {
width: 100%;

box-sizing: border-box;

padding: 16px;

border: 1px solid #ddd;

border-radius: 10px;

font-size: 16px;

outline: none;
}

.input-group input:focus + label,
.input-group input:valid + label {
top: -10px;

font-size: 12px;

color: #0c2d83;
}

.subtitle {
font-size: 20px;

line-height: 1.8;

margin-bottom: 35px;

color: #555;
}

.registration {
padding: 120px 6%;

background: #f6f9ff;
}

.registration-container {
display: grid;

grid-template-columns: 55% 45%;

gap: 60px;

align-items: center;
}

.section-tag {
display: inline-block;

padding: 10px 18px;

background: #e8f0ff;

color: #0c2d83;

border-radius: 30px;

font-weight: 600;

margin-bottom: 20px;
}

.registration-info h2 {
font-size: 46px;

margin-bottom: 20px;
}

.registration-info h2 span {
color: #e42328;
}

.registration-info p {
font-size: 18px;

line-height: 1.7;

margin-bottom: 10px;
}

.hero-features {
display: grid;

grid-template-columns: repeat(2, 1fr);

gap: 20px;

margin-bottom: 40px;
}

.feature {
background: white;

padding: 18px;

border-radius: 15px;

box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

font-weight: 600;

display: flex;

align-items: center;

gap: 10px;

transition: 0.3s;
}

.feature:hover {
transform: translateY(-6px);
}

.primary-btn {
padding: 15px 9px;

background: #e42328;

color: white;

border-radius: 8px;

font-weight: bold;

text-decoration: none;

margin-right: 10px;

display: inline-block;
}

.secondary-btn {
padding: 15px 9px;

color: #fff;
background: #e42328;
font-weight: bold;

text-decoration: none;

border-radius: 8px;

display: inline-block;
}

.circle {
width: 430px;

height: 430px;

/*
background:#123c9c;

border-radius:50%;

position:absolute;
*/
}

@media (max-width: 900px) {
.nav-btn {
width: auto; /* Instead of 100% */
min-width: 170px;
margin: 10px auto 0;
white-space: nowrap;
}
.menu-btn {
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
margin-left: auto; /* Pushes it to the far right */
z-index: 10001;
position: absolute;
top: 20%;
right: 2%;
}
.subtitle {
text-align: center;
}
.hero {
display: grid;
align-items: center;
justify-content: space-between;
gap: 30px;
/*	    grid-template-columns: 1.2fr .8fr;*/
}
.circle {
width: 100% !important;
height: auto;
}
h1 {
text-align: center;
}
.navbar {
position: absolute;
top: 80px; /* Directly below the header */
left: 0;
width: 100%;
background: #fff;
flex-direction: column;
align-items: flex-start;
padding: 20px;
gap: 0px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

transform: translateY(-20px);
opacity: 0;
visibility: hidden;
transition: 0.35s ease;
}

.navbar.active {
transform: translateY(0);
opacity: 1;
visibility: visible;
}

.navbar a {
width: 100%;
}

.nav-btn {
width: 100%;
text-align: center;
}
.hero {
grid-template-columns: 1fr;
}
}
.trophy {
width: 100%;
max-width: 520px;
height: auto;
}

.scholarship-card {
position: absolute;

bottom: 50px;

left: -20px;

background: #ffd200;

padding: 20px;

border-radius: 18px;

box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

z-index: 3;

text-align: center;
}

.scholarship-card h3 {
font-size: 40px;

margin: 5px 0;

color: #0c2d83;
}

@media (max-width: 768px) {
.registration {
padding: 60px 6%;

background: #f6f9ff;
}

.registration-container {
display: grid;

grid-template-columns: 55% 45%;

gap: 60px;

align-items: center;
}

.section-tag {
display: inline-block;

padding: 10px 18px;

background: #e8f0ff;

color: #0c2d83;

border-radius: 30px;

font-weight: 600;

margin-bottom: 20px;
}

.registration-info h2 {
font-size: 46px;

margin-bottom: 20px;
}

.registration-info h2 span {
color: #e42328;
}

.registration-info p {
font-size: 17px;

line-height: 1.7;

margin-bottom: 35px;
}
}

nav {
display: flex;

gap: 35px;

align-items: center;
}

nav a {
font-weight: 500;

color: #333;
}

nav a:hover {
color: var(--secondary);
}
.contact-grid a {
display: block;

margin-top: 10px;

color: #555;
}

.contact-grid a:hover {
color: var(--primary);
}

.double {
display: grid;

grid-template-columns: 1fr 1fr;

gap: 15px;

margin-bottom: 20px;
}

.double select,
.double input {
padding: 16px;

border-radius: 10px;

border: 1px solid #ddd;

font-size: 16px;

width: 100%;
}

.register-btn {
width: 100%;

padding: 18px;

background: #e42328;

border: none;

color: #fff;

font-size: 18px;

font-weight: 700;

border-radius: 10px;

cursor: pointer;

transition: 0.3s;
}

.register-btn:hover {
background: #c61b1f;
}

@media (max-width: 991px) {
.registration-container {
grid-template-columns: 1fr;
}

.benefits {
grid-template-columns: 1fr;
}

.double {
grid-template-columns: 1fr;
gap: 0;
margin-bottom: 0;
}
}

/* ================= WHY ZNEXT ================= */

.why-znext {
padding: 100px 8%;

background: white;
}

.heading {
text-align: center;

max-width: 850px;

margin: auto;

margin-bottom: 60px;
}

.heading h2 {
font-size: 46px;

margin: 20px 0;

color: #0c2d83;
}

.heading p {
font-size: 19px;

line-height: 1.8;

color: #666;
}

.stats {
display: grid;

grid-template-columns: repeat(4, 1fr);

gap: 25px;

margin-bottom: 70px;
}

.stat-box {
background: linear-gradient(135deg, #0c2d83, #214ab6);

color: white;

padding: 35px;

border-radius: 20px;

text-align: center;

box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.stat-box h3 {
font-size: 48px;

margin-bottom: 12px;

font-weight: 700;
}

.stat-box p {
font-size: 17px;
}

.benefit-grid {
display: grid;

grid-template-columns: repeat(3, 1fr);

gap: 30px;
}

.benefit {
background: white;

padding: 35px;

border-radius: 22px;

text-align: center;

box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

transition: 0.35s;
}

.benefit:hover {
transform: translateY(-10px);
}

.icon {
width: 80px;

height: 80px;

margin: auto;

margin-bottom: 20px;

display: flex;

align-items: center;

justify-content: center;

background: #eef3ff;

font-size: 34px;

border-radius: 50%;
}

.benefit h3 {
margin-bottom: 15px;

color: #0c2d83;

font-size: 24px;
}

.benefit p {
color: #666;

line-height: 1.7;
}

@media (max-width: 991px) {
.stats {
grid-template-columns: repeat(2, 1fr);
}

.benefit-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 600px) {
.stats {
grid-template-columns: 1fr;
}

.heading h2 {
font-size: 34px;
}

.feature {
padding: 15px 0 15px 15px;
font-size: 14px;
}
.hero h2 {
font-size: 20px;
text-align: center;
}
.secondary-btn {
padding: 15px 0;
width: 48%;
text-align: center;
font-size: 14px;
}
.primary-btn {
width: 48%;
padding: 15px 0;
text-align: center;
margin: 0;
font-size: 14px;
display: none;
}
}

/* ================= SCHOLARSHIP ================= */

.scholarship-section {
padding: 10px 8%;

background: #f7f9fd;
}

.timeline {
display: grid;

grid-template-columns: 1fr 120px 1fr;

gap: 30px;

align-items: center;

margin-top: 60px;
}

.timeline-card {
background: #fff;

padding: 40px;

border-radius: 25px;

box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

position: relative;

transition: 0.35s;
border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-card:hover {
transform: translateY(-10px);

box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.timeline-number {
position: absolute;

top: -22px;

left: 35px;

width: 50px;

height: 50px;

border-radius: 50%;

background: #e42328;

color: #fff;

display: flex;

align-items: center;

justify-content: center;

font-size: 22px;

font-weight: bold;
}

.timeline-card h3 {
margin-top: 20px;

font-size: 28px;

color: #0c2d83;
}

.timeline-card p {
margin: 18px 0;

line-height: 1.7;

color: #666;
}

.timeline-card ul {
list-style: none;

padding: 0;

margin-top: 20px;
}

.timeline-card li {
padding: 8px 0;

font-size: 17px;
}

.timeline-arrow {
font-size: 70px;

color: #0c2d83;

text-align: center;

font-weight: bold;
}

/* Rewards */

.reward-section {
padding: 120px 6%;

background: white;
}

.reward-grid {
display: grid;

grid-template-columns: repeat(4, 1fr);

gap: 30px;
}

.reward-card {
padding: 40px 25px;

border-radius: 22px;

text-align: center;

color: white;

transition: 0.35s;
border: 1px solid rgba(0, 0, 0, 0.05);

box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.reward-card:hover {
transform: translateY(-10px);

box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.reward-card .emoji {
font-size: 50px;

margin-bottom: 20px;
}

.reward-card h3 {
font-size: 22px;

margin-bottom: 15px;
}

.reward-card h2 {
font-size: 44px;

margin-bottom: 15px;
}

.reward-card p {
line-height: 1.7;

font-size: 16px;
}

.gold {
background: linear-gradient(135deg, #ffd54f, #ff9800);
}

.silver {
background: linear-gradient(135deg, #607d8b, #455a64);
}

.blue {
background: linear-gradient(135deg, #1976d2, #0d47a1);
}

.red {
background: linear-gradient(135deg, #e53935, #b71c1c);
}

@media (max-width: 991px) {
.timeline {
grid-template-columns: 1fr;
}

.timeline-arrow {
transform: rotate(90deg);

font-size: 50px;
}

.reward-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 600px) {
.reward-grid {
grid-template-columns: 1fr;
}
}

.schools {
padding: 120px 6%;

background: white;
}

.school-logos {
display: grid;

grid-template-columns: repeat(6, 1fr);

gap: 25px;

align-items: center;

margin-top: 50px;
}

.school-logos img {
width: 100%;

filter: grayscale(100%);

transition: 0.3s;
}

.school-logos img:hover {
filter: none;

transform: scale(1.05);
}

@media (max-width: 991px) {
.school-logos {
grid-template-columns: repeat(2, 1fr);
}
}

/* ================= FAQ ================= */

.faq-section {
padding: 100px 8%;

background: #f8f9fc;
}

.faq {
max-width: 900px;

margin: 50px auto;
}

.faq-item {
background: white;

margin-bottom: 18px;

border-radius: 15px;

overflow: hidden;

box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
padding: 22px;

cursor: pointer;

display: flex;

justify-content: space-between;

font-weight: 600;

font-size: 18px;
}

.faq-answer {
display: none;

padding: 0 22px 22px;

color: #666;

line-height: 1.8;
}

.faq-item.active .faq-answer {
display: block;
}

/* CTA */

.cta-section {
padding: 100px 8%;

background: linear-gradient(135deg, #0c2d83, #1e4dd8);

text-align: center;

color: white;
}

.cta-section h2 {
font-size: 48px;

margin-bottom: 20px;
}

.cta-buttons {
margin-top: 40px;

display: flex;

justify-content: center;

gap: 20px;
transition: 0.3s;

overflow: hidden;

position: relative;
}
.cta-buttons:hover {
transform: translateY(-3px);
}
/* Contact */

/* Footer */

.footer {
background: #071f5c;

color: white;

padding: 30px;

text-align: center;
}

/* WhatsApp */

.whatsapp-btn {
position: fixed;

bottom: 100px;

right: 25px;

width: 60px;

height: 60px;

background: #25d366;

color: white;

font-size: 30px;

display: flex;

align-items: center;

justify-content: center;

border-radius: 50%;

text-decoration: none;

box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);

z-index: 999;
}

/* Sticky Register */

.sticky-register {
    position: fixed;
    left: 50%;
    bottom: calc(20px + env(safe-area-inset-bottom));
    transform: translateX(-50%);

    background: #e42328;
    color: #fff;

    padding: 16px 35px;
    border-radius: 50px;

    font-weight: bold;
    text-decoration: none;

    z-index: 998;

    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

/* Scroll Top */

#topBtn {
position: fixed;

right: 25px;

bottom: 180px;

width: 50px;

height: 50px;

border: none;

border-radius: 50%;

background: #0c2d83;

color: white;

cursor: pointer;

display: none;
}

.contact-section {
padding: 80px 8%;

background: white;
}

.contact-grid {
display: grid;

grid-template-columns: repeat(3, 1fr);

gap: 40px;
}

.contact-grid h3 {
color: #0c2d83;

margin-bottom: 20px;
}

.contact-grid p {
line-height: 1.8;

color: #555;
}
/* Responsive */

@media (max-width: 768px) {
.contact-grid {
grid-template-columns: 1fr;
}
.logoimg {
max-width: 150px;
height: auto;
display: block;
}

.cta-buttons {
display: inline-block;
width: 100%;
flex-direction: column;
}

.sticky-register {
width: 90%;

text-align: center;
}
}


/* WordPress standalone template isolation */
html, body.znext-page-body { margin:0 !important; padding:0 !important; background:#fff !important; }
body.znext-page-body #wpadminbar { display:none !important; }
body.znext-page-body { overflow-x:hidden; }
.znext-landing { width:100%; }
.sticky-register.hide-sticky { opacity:0 !important; visibility:hidden !important; pointer-events:none !important; }
@media (max-width:768px) {
  .znext-page-body .header { position:sticky; }
  .znext-page-body .sticky-register { bottom: calc(90px + env(safe-area-inset-bottom)); }
}
