/* =========================================================
   ROOT VARIABLES
========================================================= */

:root{
--brand-red:#E10600;
--brand-orange:#FF7A00;
--brand-gradient:linear-gradient(90deg,#E10600,#FF7A00);
--text-dark:#111;
--text-light:#777;}

body{font-family:'Poppins',sans-serif;background:#f7f7f7;margin:0;}

body{font-family:'Poppins',sans-serif;background:#f7f7f7;margin:0;}

/* ================= HEADER ================= */
.header{
  background:#fff;
  padding:15px 0;
  border-bottom:1px solid #eee;
}

.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo{
  width: 220px;
  margin-left:0;
}

/
/* ================= GLOBAL IMAGE CONTROL ================= */

.section-image{
  width:100%;
  height:300px;
  overflow:hidden;
  border-radius:12px;
  margin:20px 0;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
.section-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.timeline{
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:relative;
  margin:60px 0;
  padding:0 20px;
}

.timeline::before{
  content:'';
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#ff6600,#ff3d00);
  z-index:0;
}

.timeline-item{
  text-align:center;
  position:relative;
  transition:0.3s;
}

.timeline-item span{
  display:inline-block;
  padding:8px 16px;
  border:2px solid #ff6600;
  border-radius:30px;
  color:#ff6600;
  font-weight:600;
  transition:0.3s;
}

.timeline-item:hover span{
  background:#ff6600;
  color:#fff;
  transform:scale(1.1);
}

.timeline-item p{
  margin-top:10px;
  color:#f8f3f3;
  font-size:14px;
}
.logo-strip{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  margin:40px 0;
  flex-wrap:wrap;
}

.logo-strip img{
  height:50px;
  opacity:0.6;
  transition:0.3s;
}

.logo-strip img:hover{
  opacity:1;
  transform:scale(1.1);
}
h2{
  font-size:28px;
  margin-bottom:15px;
}

p{
  font-size:16px;
  line-height:1.7;
}
.container{
  margin-bottom:60px;
}
.counter-section{
  display:flex;
  justify-content:space-around;
  text-align:center;
  margin:80px 0;
}

.counter{
  font-size:42px;
  font-weight:700;
  color:#ff6600;
}

.counter-section p{
  margin-top:10px;
  font-weight:500;
}
.about-section{
  padding:60px 0;
  border-bottom:1px solid #eee;
}
.support-card{
  padding:25px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
  background:#fff;
}

.support-card:hover{
  transform:translateY(-5px);
}
h2{
  font-size:30px;
  font-weight:600;
}

p{
  font-size:16px;
  color:#555;
  line-height:1.7;
}
/* ================= SCROLL ANIMATION ================= */

.fade-up{
  opacity:0;
  transform:translateY(40px);
  transition:all 0.8s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}
.section-image img{
  transition:0.5s;
}

.section-image:hover img{
  transform:scale(1.05);
}
.hero-content{
  animation:fadeSlide 1s ease forwards;
}

@keyframes fadeSlide{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.about-block{
  max-width:900px;
  margin:40px auto;
  padding:20px;
}

.about-block h2{
  font-size:28px;
  margin-bottom:15px;
}

.about-block p{
  color:#ebe5e5;
  line-height:1.7;
  margin-bottom:10px;
}

/* CENTER BLOCK */
.about-block.center{
  text-align:center;
}

/* SPACING IMPROVEMENT */
.about-block:not(.center){
  text-align:left;
}
/* SECTION */
.who-section{
  padding:60px 0;
  text-align:center;
}

/* TITLE */
.section-title{
  font-size:30px;
  margin-bottom:40px;
}

/* GRID */
.who-grid{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}
/* CARD BASE */
.who-card{
  background:#fff;
  padding:30px;
  border-radius:15px;
  width:280px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s;
  border:2px solid transparent;
}

/* ICON COLOR */
.who-card .icon{
  font-size:30px;
  margin-bottom:15px;
  color:#ff6600;
}

/* TITLE */
.who-card h5{
  font-size:18px;
  margin-bottom:10px;
  color:#222;
}

/* TEXT */
.who-card p{
  color:#666;
  font-size:14px;
}

/* 🔥 HOVER = BRAND EFFECT */
.who-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(255,102,0,0.25);
  border:2px solid #ff6600;
}

/* 🔥 PREMIUM HOVER (OPTIONAL STRONG) */
.who-card:hover .icon{
  color:#ff3d00;
  transform:scale(1.2);
}

/* ================= TRUSTED SECTION ================= */

.trusted-section{
  text-align:center;
  padding:60px 0;
}

.trusted-section h2{
  font-size:28px;
  margin-bottom:10px;
}

.trusted-sub{
  color:#777;
  margin-bottom:40px;
}

/* LOGO STRIP */
.logo-strip{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
}

/* LOGOS */
.logo-strip img{
  width:120px;
  opacity:0.6;
  transition:0.3s;
}

.logo-strip img:hover{
  opacity:1;
  transform:scale(1.1);
}
body{
  margin:0;
  font-family:'Poppins',sans-serif;
  background:#f4f6f9;
}

.admin-wrapper{
  display:flex;
}

/* SIDEBAR */
.sidebar{
  width:240px;
  height:100vh;
  background:#111;
  color:#fff;
  padding:20px;
}

.sidebar h2{
  margin-bottom:30px;
  color:#ff6600;
}

.sidebar a{
  display:block;
  color:#ccc;
  text-decoration:none;
  margin:10px 0;
  padding:10px;
  border-radius:6px;
}

.sidebar a:hover{
  background:#ff6600;
  color:#fff;
}

/* MAIN */
.main-content{
  flex:1;
  padding:30px;
}
.product-img:hover {
    transform: scale(1.2);
    transition: 0.3s;
}
/* ===== PREMIUM MARQUEE ===== */

.top-marquee {
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        to right,
        #fff3e8,
        #fff8f2,
        #fff3e8
    );

    border-top: 1px solid #ffe0cc;
    border-bottom: 1px solid #ffe0cc;

    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* track */
.marquee-track {
    display: flex;
    width: max-content;
    gap: 80px;
    padding: 18px 0;

    animation: marqueeSmooth 35s linear infinite;
}

/* item */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 280px;
}

/* icon */
.marquee-item i {
    font-size: 22px;
    color: #ff6a00;
    background: rgba(255,106,0,0.08);
    padding: 10px;
    border-radius: 50%;
}

/* text */
.marquee-item h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    color: #222;
    letter-spacing: 0.5px;
}

.marquee-item p {
    font-size: 12px;
    margin: 2px 0 0;
    color: #777;
}

/* smooth loop */
@keyframes marqueeSmooth {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* hover pause */
.marquee-track:hover {
    animation-play-state: paused;
}

/* ================= FOOTER ================= */

/* ===== FOOTER BASE ===== */
.footer {
    background: linear-gradient(90deg, #0d0d0d, #1a1a1a);
    color: #fff;
    padding-top: 50px;
}

/* ===== TOP ===== */
.footer-top {
  background: linear-gradient(to right, #1c1c1c, #2c2c2c);
  color: #fff;
  padding: 40px 80px;
  font-family: Arial;
}

/* TOP BOXES */
.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-box {
  background: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
  width: 22%;
  text-align: center;
}

/* MAIN GRID */
.footer-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-col {
  width: 23%;
}

.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col p {
  margin: 6px 0;
  color: #ccc;
}

/* NEWSLETTER */
.newsletter{

    display:flex;
    align-items:center;
    gap:12px;
    margin-top:15px;
    flex-wrap:wrap;

}


.newsletter input{
    flex:1;
    min-width:220px;
    height:46px;
    padding:0 18px;
    border:none;
    border-radius:30px;
    background:#ffffff;
    color:#333;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.newsletter input:focus{

    box-shadow:0 0 0 3px rgba(255,122,0,.25);

}

.partner-btn{

    background:#ff7a00;
    color:#fff;
    border:none;
    border-radius:30px;
    padding:0 28px;
    height:46px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;

}

.partner-info{

    color:#bfbfbf;
    font-size:13px;
    margin:10px 0 15px;
    line-height:1.6;

}

.partner-btn:hover{
  background:#e76c00;
  transform:translateY(-2px);
}

.partner-btn:disabled{
  background:#999;
    cursor:not-allowed;
    transform:none;

}



.partner-btn:active{
    transform:scale(.97);
}


.newsletter button {
  background: #ff6600;
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  margin-left: 10px;
  color: #fff;
  cursor: pointer;
}

/* SOCIAL */
.footer-social img {
  width: 35px;
  margin-right: 10px;
  background: #333;
  padding: 8px;
  border-radius: 50%;
}

/* BOTTOM */
/* FORCE LINKS TO FOLLOW SELECTION */
a::selection {
    background: #ff6600;
    color: #ffffff !important;
}

a::-moz-selection {
    background: #ff6600;
    color: #ffffff !important;
}
.footer-bottom {
  border-top: 1px solid #f85151;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payments img {
  width: 40px;
  margin-left: 10px;
}
/* HOVER  EFFECT */
.footer-box {
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,102,0,0.25);
}
.footer-col ul li {
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-col ul li:hover {
    color: #ff6600;
    transform: translateX(5px);
}
.dealer-check button {
    transition: all 0.3s ease;
}

.dealer-check button:hover {
    background: #ff8533;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255,102,0,0.6);
}
.footer-social i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    
    background: #1a1a1a;
    color: #fff;
    
    font-size: 16px;
    cursor: pointer;

    position: relative;
    overflow: hidden;

    transition: all 0.3s ease;
}

/* 🔥 HOVER BACKGROUND ANIMATION */
.footer-social i::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: #ff6600;
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 0;
}

/* EXPAND EFFECT */
.footer-social i:hover::before {
    width: 120%;
    height: 120%;
}

/* KEEP ICON ABOVE */
.footer-social i i,
.footer-social i {
    z-index: 1;
}
.footer-social{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:25px;
}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#1a1a1a;

    transition:0.3s;
}

.footer-social a:hover{

    transform:translateY(-4px);

    background:#ff6600;
}
/* ICON COLOR CHANGE */
.footer-social img {
  width: 30px;
  height: 30px;
  margin: 5px;
  padding: 5px;
  background: #2c2c2c;   /* dark circle background */
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.footer-social img:hover {
  transform: scale(1.1);
  background: #ff6600;   /* orange hover effect */
}
.footer-col a{

    display:block;

    color:#ccc;

    text-decoration:none;

    margin-bottom:14px;

    transition:0.3s;
}

.footer-col a:hover{

    color:#ff6600;

    transform:translateX(5px);
}
/* ===== AUTH PAGE ===== */
.auth-page {
    padding: 80px 0;
    background: #f6f6f6;
    min-height: 60vh;
}

/* CENTER BOX */
.auth-box {
    max-width: 420px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
}

/* TITLE */
.auth-box h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

/* INPUT */
.input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* BUTTON */
.btn-main {
    width: 100%;
    padding: 12px;
    background: #ff6a00;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
}

/* SWITCH TEXT */
.switch {
    margin-top: 15px;
}