:root{
    --primary:#1f2937;
    --accent:#27ae60;
    --light:#f4f7fb;
    --dark:#111827;
    --border:#e5e7eb;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

body{
    background:linear-gradient(135deg,#eef2f7,#f8fafc);
    color:var(--dark);
}

/* NAVBAR */

.menu-toggle{
    display:none;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:#ffffffcc;
    backdrop-filter: blur(10px);
    border-bottom:1px solid var(--border);
    position:sticky;
    top:0;
    z-index:100;
}

.logo{
    font-weight:800;
    font-size:22px;
    letter-spacing:1px;
}

.logo span{
    color:var(--accent);
}

.nav-links{
    display:flex;
    gap:25px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#4b5563;
    font-size:15px;
    position:relative;
}

.nav-links a::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    background:var(--accent);
    bottom:-5px;
    left:0;
    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}

@media(max-width:768px){

    .navbar{
        padding:15px 5%;
        position:relative;
    }

    .logo{
        font-size:20px;
    }

    /* HIDE LINKS INITIALLY */
    .nav-links{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:25px 0;
        box-shadow:0 10px 25px rgba(0,0,0,0.08);
        display:none;
    }

    /* SHOW MENU */
    .nav-links.active{
        display:flex;
    }

    .nav-links a{
        font-size:16px;
        font-weight:500;
    }

    /* MENU ICON */
    .menu-toggle{
        display:block;
        font-size:28px;
        cursor:pointer;
        color:var(--dark);
    }
}

/* HERO */
.hero{
    height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(to right,#111827cc,#1f2937cc),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&q=80&w=1200');
    background-size:cover;
    color:white;
}

.hero-content{
    animation:fadeUp 1s ease;
}

.hero-content h1{
    font-size:42px;
    margin-bottom:10px;
}

.hero-content p{
    color:#d1d5db;
}

/* TRACK BOX */
.track-container{
    margin-top:25px;
    display:flex;
    gap:10px;
    justify-content:center;
    flex-wrap:wrap;
}

.track-container input{
    padding:14px 18px;
    border-radius:8px;
    border:1px solid var(--border);
    width:260px;
    transition:0.3s;
}

.track-container input:focus{
    border-color:var(--accent);
    box-shadow:0 0 0 3px rgba(39,174,96,0.2);
}

.track-container button{
    padding:14px 22px;
    background:linear-gradient(135deg,#27ae60,#2ecc71);
    color:white;
    border:none;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.track-container button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

/* RESULT MESSAGE */
.result-message{
    margin-top:15px;
    font-weight:600;
    animation:fadeUp 0.4s ease;
}

/* CAROUSEL */
.carousel-section{
    padding:60px 8%;
    text-align:center;
}

.card{
    min-width:260px;
    background:white;
    padding:25px;
    border-radius:12px;
    border:1px solid var(--border);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

/* PARTNERS */
.partner-card {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.partner-card img {
    width: 100%;
    height: auto; /* ✅ important */
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.partner-card h3 {
    margin-bottom: 10px;
}

.partner-card p {
    color: #6b7280;
}

/* Control buttons styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--accent);
    border-radius: 50%;
    padding: 10px;
}


/* TESTIMONIAL */
.testimonials{
    padding:60px 8%;
}

.testimonial-card{
    background:white;
    padding:20px;
    border-radius:12px;
    border:1px solid var(--border);
    transition:0.3s;
}

.testimonial-card:hover{
    transform:translateY(-5px);
}

/* VIDEO SECTION (SIDE BY SIDE CLEAN) */
.official-message{
    padding:60px 6%;
}

.message-wrapper{
    display:flex;
    gap:20px;
    align-items:center;
    flex-wrap:wrap;
}

.video-side video{
    width:350px;
    border-radius:14px;
}

.text-side{
    max-width:400px;
}

/* GRID */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    align-items: center;
}

/* CARD */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.reward-card {
    background: white;
    padding: 35px 25px;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: floatIn 0.8s ease forwards;
}

.reward-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.reward-card:nth-child(2){ animation-delay:0.2s; }
.reward-card:nth-child(3){ animation-delay:0.4s; }

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FOOTER */
footer{
    background:rgb(30, 42, 70);
    color:#9ca3af;
    padding:25px;
    text-align:center;
    margin-top:50px;
}

/* ANIMATIONS */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero-content h1{
        font-size:28px;
    }

    .track-container{
        flex-direction:column;
        align-items:center;
    }

    .track-container input{
        width:100%;
        max-width:300px;
    }

    .carousel-track{
        overflow-x:auto;
    }
}

/* =========================
   WRAPPER
========================= */
.tracking-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.main-video {
    cursor: pointer;
}

/* =========================
   HEADER
========================= */
.status-header {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeIn 0.5s ease;
}

.status-header h1 {
    font-size: 28px;
    margin: 10px 0;
}

.status-header p {
    color: #555;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background: #2c3e50;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform; /* Boosts performance */
}

.prev, .next {
    user-select: none; /* Prevents blue highlight on fast clicking */
}

/* =========================
   GRID LAYOUT
========================= */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* =========================
   CARDS
========================= */
.info-card,
.deposit-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    animation: fadeIn 0.6s ease-in-out;
}

/* =========================
   CAR IMAGE
========================= */
.car-display {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.car-display img {
    width: 100%;
    height: auto;
    display: block;
}

.fund-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
}

.partners-section {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

.partners-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: rgb(30, 42, 70);
}

.content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  border-radius: 0 0 15px 15px;
}

.content h3 {
  margin: 0;
  font-size: 22px;
}

.content p {
  font-size: 14px;
  margin-top: 5px;
}

/* Buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--accent);
    border-radius: 50%;
    padding: 12px;
}

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
    .partner-card {
        padding: 15px;
    }

    .partner-card img {
        max-height: 200px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

.testimonials h2 {
    color: rgb(30, 42, 70);
}

.testimonial-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  max-width: 320px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}


/* Awareness Section */
.official-message {
  padding: 80px 20px;
  background: #ffffff;
}

.message-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.video-side {
  flex: 1;
  min-width: 300px;
}

.main-video {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.text-side {
  flex: 1;
  min-width: 300px;
}

.text-side h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.text-side p {
  font-size: 16px;
  color: #555;
}


/* =========================
   DETAILS
========================= */
.user-details {
    margin-top: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* =========================
   SHIPMENT BOX
========================= */
.shipment-box {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #2c3e50;
}

/* =========================
   INPUT BOX
========================= */
.deposit-amount-box input {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* =========================
   CRYPTO BOX
========================= */
.crypto-item {
    margin-top: 15px;
}

.wallet-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f5f9;
    padding: 10px;
    border-radius: 8px;
    margin-top: 5px;
    flex-wrap: wrap;
    gap: 10px;
}

.wallet-box code {
    font-size: 12px;
    word-break: break-all;
}

.wallet-box button {
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
}

/* =========================
   BUTTON
========================= */
.confirm-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.confirm-btn:hover {
    transform: translateY(-2px);
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeIn {
    from {opacity:0; transform: translateY(10px);}
    to {opacity:1; transform: translateY(0);}
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 900px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .status-header h1 {
        font-size: 22px;
    }

    .fund-overlay {
        font-size: 12px;
        padding: 8px 10px;
    }
}

@media (max-width: 500px) {
    .tracking-wrapper {
        padding: 10px;
    }

    .wallet-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .confirm-btn {
        font-size: 14px;
    }
}



.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s ease;
    animation: pulse 1.8s infinite;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}