body{
    font-family:Arial,Helvetica,sans-serif;
    background:#eef2f7;
    margin:0;
}

.header{
    background:#0d6efd;
    color:#fff;
    padding:15px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 3px 10px rgba(0,0,0,.2);
}

.logo-section{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo{
    width:70px;
    height:70px;
    border-radius:10px;
    background:#fff;
    padding:5px;
}

.logout-btn{
    background:#dc3545;
    color:#fff;
    padding:10px 18px;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
}

.logout-btn:hover{
    background:#bb2d3b;
}

.cards{
    display:flex;
    gap:20px;
    margin:25px;
}

.card{
    flex:1;
    background:#fff;
    padding:20px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 3px 12px rgba(0,0,0,.15);
}

.card h2{
    margin:0;
    color:#0d6efd;
    font-size:34px;
}

table{
    width:96%;
    margin:20px auto;
    background:#fff;
    border-collapse:collapse;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}

th{
    background:#0d6efd;
    color:#fff;
}

th,td{
    padding:12px;
    border:1px solid #ddd;
}

select{
    padding:8px;
    border-radius:6px;
}

.update-btn{
    background:#198754;
    color:#fff;
    border:none;
    padding:8px 15px;
    border-radius:6px;
    cursor:pointer;
    margin-left:8px;
    font-weight:bold;
}

.update-btn:hover{
    background:#146c43;
}





nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.login-btn {
    margin-left: auto;
    padding: 8px 16px;
    background: #00c2ff;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.login-btn:hover {
    background: #0099cc;
}




html {
    scroll-behavior: smooth;
}


/* ==========================================================================
   1. Global Reset & Base Layout Setup
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #081B33;
    color: #fff;
    margin: 0;
}

/* ==========================================================================
   2. Base Elements & Typography Elements
   ========================================================================== */
h1 {
    text-align: center;
    color: #4DA3FF;
    margin-bottom: 50px;
}

h2 {
    text-align: center;
    color: #4da3ff;
    margin-bottom: 15px;
}

p {
    line-height: 1.6;
    color: #ddd;
}

a {
    color: white;
    text-decoration: none;
    transition: .3s;
}

a:hover {
    color: #00C853;
}

ul {
    list-style: none;
}

li {
    margin: 10px 0;
}

/* Common Global Grid Layout System */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Global Reusable Buttons */
.btn {
    display: inline-block;
    background: #0057ff;
    padding: 14px 28px;
    border-radius: 30px;
    margin: 8px;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.btn:hover {
    background: #00C853;
}

.alt {
    background: #00c853;
}

/* ==========================================================================
   3. SAARTHI Brand Logo Design Components
   ========================================================================== */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.logo-shield {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0057FF, #00C853);
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0, 87, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulseGlow 3s infinite alternate;
}

.logo-icon {
    font-size: 28px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-name {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff, #4DA3FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0, 87, 255, 0.3));
}

.brand-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #00C853;
    margin-top: 2px;
    opacity: 0.9;
}

@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 87, 255, 0.5); }
    100% { transform: scale(1.04); box-shadow: 0 0 35px rgba(0, 200, 83, 0.7); }
}

/* ==========================================================================
   4. Loader & Navigation Bar Elements (Left Aligned Horizontally)
   ========================================================================== */
#loader {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #081B33;
    z-index: 99;
}

.spin {
    width: 60px;
    height: 60px;
    border: 6px solid #fff;
    border-top-color: #0057ff;
    border-radius: 50%;
    animation: r 1s linear infinite;
}

@keyframes r {
    to { transform: rotate(360deg); }
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    padding: 16px 40px;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(10px);
    z-index: 90;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #4DA3FF;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0;
}

nav a {
    font-size: 16px;
    font-weight: 600;
}

/* ==========================================================================
   5. Hero Background Video Setup
   ========================================================================== */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(8, 27, 51, .7), rgba(8, 27, 51, .9));
    z-index: 2;
}

.content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* ==========================================================================
   6. Core Layout Sections (About, Features, Timeline)
   ========================================================================== */
.about, .features {
    padding: 60px 10%;
}

.about p {
    text-align: center;
}

.features .card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: .3s;
}

.features .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px #0057ff;
}

.timeline {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
}

.step.show {
    opacity: 1;
    transform: translateY(0);
}

.circle {
    width: 60px;
    height: 60px;
    background: #0057FF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.timeline .card {
    flex: 1;
    background: rgba(255, 255, 255, .08);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.line {
    width: 4px;
    height: 40px;
    background: #0057FF;
    margin: 0 28px;
}

/* ==========================================================================
   7. Vehicles Showcase & Section Demo Players
   ========================================================================== */
.vehicles {
    padding: 80px 8%;
    text-align: center;
}

.vehicles .grid {
    gap: 40px;
}

.vehicles .card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, .15);
}

.vehicles .card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 87, 255, .45);
}

.icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.vehicles p {
    margin-bottom: 30px;
}

.videos {
    padding: 80px 8%;
    text-align: center;
}

.videos h1 {
    margin-bottom: 10px;
}

.subtitle {
    color: #d0d7e2;
    margin-bottom: 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 20px;
    transition: .35s;
    border: 1px solid rgba(255, 255, 255, .12);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 36px rgba(0, 87, 255, .35);
}

/* Content Showcase Inner Video Element Adjustments */
.video-card video {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    margin: 18px 0;
    background: #000;
}

/* ==========================================================================
   8. Impact Statistics & FAQ Panel System
   ========================================================================== */
.stats {
    padding: 80px 8%;
    text-align: center;
}

.stats h1 {
    margin-bottom: 10px;
}

.stats p {
    color: #d5dbe5;
    margin-bottom: 40px;
}

.stats .grid {
    gap: 25px;
}

.stats .card {
    background: rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 30px;
    backdrop-filter: blur(12px);
    transition: .35s;
}

.stats .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0, 87, 255, .35);
}

.count {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: #00C853;
    margin-bottom: 12px;
}

.faq {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
}

#search {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    margin: 20px 0;
}

.item {
    background: rgba(255, 255, 255, .08);
    margin: 12px 0;
    border-radius: 12px;
    overflow: hidden;
}

.q {
    width: 100%;
    padding: 16px;
    background: none;
    color: #fff;
    border: none;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
}

.a {
    display: none;
    padding: 16px;
    color: #ddd;
}

.item.open .a {
    display: block;
}

/* ==========================================================================
   9. Fixed Contact Panel Layout Block
   ========================================================================== */
.contact {
    padding: 80px 8%;
}

.contact h1 {
    margin-bottom: 40px;
}

.contact .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: start;
}

.contact .card {
    background: rgba(255, 255, 255, 0.06);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: 0.3s ease;
}

.contact h2 {
    text-align: left;
    color: #4DA3FF;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact input, 
.contact textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(8, 27, 51, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
}

.contact input:focus, 
.contact textarea:focus {
    outline: none;
    border-color: #0057FF;
}

.contact textarea {
    height: 140px;
    resize: vertical;
}

.contact button {
    align-self: flex-start;
    padding: 14px 35px;
    background: #0057FF;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact button:hover {
    background: #00C853;
}

.contact p {
    font-size: 17px;
    margin: 18px 0;
    color: #e2e8f0;
}

.map {
    height: 200px;
    border: 2px dashed rgba(77, 163, 255, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    color: #4DA3FF;
    background: rgba(77, 163, 255, 0.05);
    font-weight: bold;
}

/* ==========================================================================
   10. Global Layout System Footer
   ========================================================================== */
.footer {
    background: #061427;
    padding: 60px 8% 30px;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.col h2, .col h3 {
    margin-bottom: 15px;
    color: #4DA3FF;
}

.col p {
    line-height: 1.6;
    color: #ccc;
}

.social {
    display: flex;
    gap: 15px;
    font-size: 28px;
    margin-top: 10px;
}

.bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

#topBtn {
    padding: 12px 22px;
    border: none;
    border-radius: 25px;
    background: #0057FF;
    color: white;
    cursor: pointer;
}

/* ==========================================================================
   11. Responsive Media Breakpoints
   ========================================================================== */
@media(max-width: 700px) {
    .step { flex-direction: column; text-align: center; }
    .line { margin: 20px auto; }
}

/* ==========================================================================
   12. "Shining" Arrow
   ========================================================================== */

.scroll-arrow {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    text-decoration: none;
}

.shining-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    animation: shine-bounce 2s infinite;
}

@keyframes shine-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.5;
    }
    40% {
        transform: translateY(-20px) rotate(45deg);
        opacity: 1;
        box-shadow: 0 0 20px white; /* The "shining" effect */
    }
    60% {
        transform: translateY(-10px) rotate(45deg);
    }
}

.row-complete { opacity: 0.6; background-color: #f8f9fa; }

/* ==========================================================================
   13. (Removed) Flying Launch-Offer Ticket
   The ticket's full styling now lives self-contained in index.html's own
   <style> blocks (#saarthiTicket / #referTicket), including its own
   animations, layout, and the close button. The old rules that used to be
   here set `pointer-events: none` on #saarthiTicket and never fully
   re-enabled it for the ticket link, which is exactly why the ₹499 ticket
   was unclickable while the Refer & Earn ticket (never targeted by this
   old block) worked fine. Removed to avoid any future conflict with the
   HTML's own ticket styles.
   ========================================================================== */