
.title {
    font-size: 56px;
    font-weight: 800;
    color: #ffcc00;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.desc {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 20px;
}

.btn.primary {
    background: #00cc55; /* Electric Green */
    color: #000;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn.primary:hover {
    background: #00cc55;
    transform: scale(1.05);
}
.btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #00ff66;
    color: #00ff66;
}
.micro-copy {
    font-size: 14px;
    color: #00ff66;
    margin-top: 8px;
    font-weight: 600;
}

/* ===== TOPPER CARD ===== */
.topper {
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.08);
}
.trophy {
    font-size: 44px;
    position: relative;
    z-index: 2;
}

.trophy::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,215,0,0.35) 0%, rgba(255,215,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(10px);
}
.icon img {
    width: 65px;
    height: auto;
    display: block;
}
.icon-circle img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    transform: translateY(6px);   /* adjust 4px – 10px as needed */
}
/* Optional Hover Premium Effect */
.icon img:hover {
    transform: scale(1.1);
    transition: 0.3s ease;
}

.bonus-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255,255,255,0.12) 0%,
        rgba(255,255,255,0.05) 60%,
        rgba(255,255,255,0.02) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.icon-circle img {
    width: 65px;      /* Same width for all */
    height: 65px;     /* Force equal height */
    object-fit: contain;
}

.bonus-card.gold {
    border: 2px solid #ffd700;
    box-shadow: 0 0 25px rgba(255,215,0,0.25);
}
/* Hover Lift Effect */
.bonus-card:hover .icon-circle {
    transform: translateY(-5px);
}
.bonus-card:hover {
    transform: translateY(-8px);
    transition: 0.3s ease;
}
.icon-circle img {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.gold .icon-circle img {
    transform: scale(0.9);
}
.battle-offer {
   
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.deadline b {
    color: #FFD700;
}

.countdown {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #FFD700;
}

#timer {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
}

.battle-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #ff3c00;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.battle-btn:hover {
    transform: translateY(-3px);
}


/* SECTION BACKGROUND */
.hero-new {
    background: #000;
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
}

/* CONTAINER */
.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT SIDE */
.hero-content {
    flex: 1;
}

/* TITLE */
.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffc107;
    margin-bottom: 25px;
}

.hero-title span {
    display: block;
    font-size: 48px;
    font-weight: 800;
}

/* OFFER BOX */
.hero-offer-box {
    margin-bottom: 25px;
}

.offer-text {
    font-size: 21px;
    line-height: 1.6;
}

.highlight {
    color: #ffd400;
    font-weight: 700;
}

.offer-target {
    margin-top: 10px;
    font-size: 15px;
    opacity: 0.9;
}

/* INFO BOXES */
.hero-info-boxes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 30px;
}

.info-box {
    background: #111;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid #333;
    font-size: 19px;
    transition: 0.3s ease;
}

.info-box:hover {
    background: #ffc107;
    color: #000;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
}

.hero-btn.primary {
    background: #28a745;
    color: #fff;
}

.hero-btn.primary:hover {
    background: #1e7e34;
    transform: translateY(-3px);
}

.hero-btn.secondary {
    border: 1px solid #fff;
    color: #fff;
}

.hero-btn.secondary:hover {
    background: #fff;
    color: #000;
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
    height:371px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;   /* Important */
    max-height: 100%;
    object-fit: contain;   /* No crop, No zoom */
    border-radius: 20px;
}

/* .hero-image img:hover {
    transform: scale(1.05);
} */

/* RESPONSIVE */
@media (max-width: 991px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-title span {
        font-size: 36px;
    }

    .hero-image {
        height: 350px;
        width: 100%;
    }

    .hero-info-boxes {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}


/* ======================
   MOBILE
====================== */

@media (max-width:576px){

    .hero-content h1{
        font-size:24px;
    }

    .hero-sub{
        font-size:15px;
    }

    .hero-btn{
        width:100%;
        text-align:center;
    }
}

.career-offer {
    padding: 20px;
}

.career-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.career-image:hover {
    transform: scale(1.03);
}
p {
    font-size: 19px;   /* Increase size */
    line-height: 1.8;  /* Better readability */
}

.neet-registration-wrapper{
    padding:60px 15px;
}

.neet-container{
    max-width:750px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.neet-title{
    text-align:center;
    font-size:28px;
    font-weight:600;
    color:#dc3545;
    margin-bottom:40px;
}

/* ===============================
   STEP INDICATOR
================================ */

.step-indicator{
display:flex;
justify-content:space-between;
align-items:center;
position:relative;
margin-bottom:50px;
}

.step-line{
position:absolute;
top:40px;
left:0;
width:100%;
height:4px;
background:#e0e0e0;
z-index:0;
}

.step-progress{
position:absolute;
top:40px;
left:0;
height:4px;
background:#35ac39;
width:0%;
z-index:1;
transition:0.4s ease;
}

.step{
width:85px;
height:85px;
border-radius:50%;
background:#fff;
border:3px solid #e0e0e0;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
font-weight:bold;
position:relative;
z-index:2;
transition:0.3s ease;
font-size:14px;
}

.step span{
font-size:11px;
}

.step.completed{
background:#35ac39;
border-color:#35ac39;
color:#fff;
}

.step.active{
border-color:#35ac39;
color:#35ac39;
}


/* ===============================
   FORM
================================ */

.form-section{
    display:none;
    animation:fade 0.4s ease;
}

.form-section.active{
    display:block;
}

@keyframes fade{
    from{opacity:0; transform:translateX(10px);}
    to{opacity:1; transform:translateX(0);}
}

input, select{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border-radius:8px;
    border:1px solid #ced4da;
    font-size:14px;
    transition:0.3s;
}

input:focus, select:focus{
    border-color:#dc3545;
    outline:none;
    box-shadow:0 0 5px rgba(220,53,69,0.3);
}

.neet-btn{
    padding:10px 20px;
    border:none;
    border-radius:8px;
    background:#dc3545;
    color:#fff;
    cursor:pointer;
    transition:0.3s ease;
    margin-right:10px;
}

.neet-btn:hover{
    background:#b02a37;
}

.qr-img{
    width:200px;
    border-radius:10px;
    margin:20px 0;
}

.button-group{
    margin-top:10px;
}
.neet-container {
    padding: 50px 45px;   /* container inner gap increase */
}

/* Title Gap */
.neet-title {
    margin-bottom: 50px;
}

/* =========================
   STEP INDICATOR GAP FIX
========================= */

.step-indicator {
    margin-bottom: 60px;  /* more space below step bar */
}

.step {
    margin: 0 15px;   /* circle spacing */
}

/* =========================
   SECTION HEADING GAP
========================= */

.form-section h3 {
    margin-bottom: 25px;
}

/* =========================
   INPUT FIELD GAP
========================= */

input,
select {
    margin-bottom: 20px;   /* more vertical spacing */
}

/* File input spacing */
input[type="file"] {
    padding: 10px;
    background: #fafafa;
}

/* =========================
   BUTTON SPACING
========================= */

.button-group {
    margin-top: 25px;
}

.neet-btn {
    margin-right: 15px;
    margin-top: 5px;
}

/* =========================
   QR IMAGE SPACING
========================= */

.qr-img {
    margin: 25px 0;
}
label{
    font-weight:600;
    display:block;
    margin-top:10px;
}
.neet-btn:disabled{
    background: #999;
    cursor: not-allowed;
}
select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background:#fff;
    padding:12px;
    font-size:16px;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width:768px){

.neet-container{
    padding:25px 20px;
    border-radius:15px;
}

.neet-title{
    font-size:22px;
    margin-bottom:30px;
}

/* STEP INDICATOR */

.step-indicator{
    margin-bottom:40px;
}

.step{
    width:60px;
    height:60px;
    font-size:13px;
}

.step span{
    font-size:10px;
}

.step-line{
    top:30px;
    left:10%;
    width:80%;
}

.step-progress{
    top:30px;
    left:10%;
}

/* FORM */

.form-section h3{
    font-size:18px;
}

label{
    font-size:14px;
}

input,
select{
    font-size:15px;
    padding:12px;
}

/* BUTTON */

.neet-btn{
    width:100%;
    margin-bottom:10px;
}

/* QR */

.qr-img{
    width:170px;
}

}
@media (max-width:768px){

.neet-container{
    width:100%;
    max-width:95%;
    padding:25px 20px;
}

}

*{
    box-sizing: border-box;
}

body{
    overflow-x: hidden;
}
@media (max-width: 480px){

/* Container */
.neet-container{
    padding:20px 15px;
    max-width:100%;
}

/* Title */
.neet-title{
    font-size:22px;
}

/* STEP INDICATOR FIX */
.step-indicator{
    justify-content:space-between;
}

.step{
    width:55px;
    height:55px;
    font-size:13px;
}

.step span{
    font-size:7px;
}

/* Line position fix */
.step-line,
.step-progress{
    top:27px;
    left:12%;
    width:76%;
}

/* Inputs */
input,
select{
    width:100%;
    font-size:16px;
}

/* Buttons */
.neet-btn{
    width:100%;
    margin-bottom:10px;
}

/* QR image */
.qr-img{
    width:160px;
}

}


 /* image view */
.preview-row{
display:flex;
align-items:center;
gap:10px;
margin-top:10px;
}

.preview-img{
width:120px;
height:120px;
object-fit:cover;
border-radius:6px;
border:1px solid #ccc;
}

.remove-btn{
background:#dc3545;
color:white;
border:none;
padding:8px 14px;
border-radius:4px;
cursor:pointer;
}

/* TOP TAB */
.neet-top-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.top-tab {
  border: 1px solid #28a745;
  background: #fff;
  color: #28a745;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.top-tab.active,
.top-tab:hover {
  background: #28a745;
  color: #fff;
}

.main-tab-content {
  display: none;
}

.main-tab-content.active {
  display: block;
}