@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700&family=Inter:wght@400;500;600&display=swap');
  *{margin:0;padding:0;box-sizing:border-box}
  :root{
    --red:#C0001E;
    --red-dark:#8B0015;
    --red-light:#FF1F3D;
    --charcoal:#1A1A1A;
    --mid:#2E2E2E;
    --silver:#F5F5F5;
    --text:#222;
    --muted:#666;
  }
  body{font-family:'Inter',sans-serif;background:#fff;color:var(--text);width:100%}
  .brand{font-family:'Rajdhani',sans-serif}
/* header advitesment css */
.top-offer-banner {
    background: linear-gradient(135deg,#ffffff,#f8f8f8);
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.offer-badge {
    background: #e30613;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
}

.offer-content h2 {
    margin: 0;
    color: #111;
    font-size: 28px;
    font-weight: 700;
}

.offer-content h2 span {
    color: #e30613;
}

.offer-features {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.feature {
    color: #555;
    font-size: 15px;
    font-weight: 500;
}

.offer-buttons {
    display: flex;
    gap: 12px;
}

.call-btn,
.book-btn {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.call-btn {
    background: #111;
    color: #fff;
}

.book-btn {
    background: #e30613;
    color: #fff;
}

.call-btn:hover,
.book-btn:hover {
    transform: translateY(-2px);
}

  /* NAV */
  /* NAVBAR */
nav{
    background:var(--charcoal);
    padding:0 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:64px;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-icon{
    width:38px;
    height:38px;
    background:var(--red);
    border-radius:4px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo-icon svg{
    width:22px;
    height:22px;
    fill:white;
}

.logo-text{
    font-family:'Rajdhani',sans-serif;
    font-size:22px;
    font-weight:700;
    color:#fff;
    letter-spacing:1px;
}

.logo-text span{
    color:var(--red-light);
}

/* Main Navigation */
.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-item{
    position:relative;
}

.nav-link{
    display:flex;
    align-items:center;
    gap:6px;
    color:#ccc;
    text-decoration:none;
    font-size:13px;
    font-weight:500;
    letter-spacing:.5px;
    text-transform:uppercase;
    transition:.3s;
}

.nav-link:hover{
    color:var(--red-light);
}

.dropdown-arrow{
    font-size:9px;
}

/* Dropdown */
.dropdown{
    position:absolute;
    top:100%;
    left:0;
    min-width:650px;
    background:#fff;
    border-radius:12px;
    padding:25px;
    display:flex;
    gap:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.3s;
    z-index:9999;
}

.has-dropdown:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-col{
    min-width:180px;
}

.dropdown-col h4{
    color:var(--red);
    margin-bottom:12px;
    font-size:15px;
}

.dropdown-col a{
    display:block;
    padding:8px 0;
    color:#333;
    text-decoration:none;
    text-transform:none;
    font-size:14px;
    font-weight:500;
}

.dropdown-col a:hover{
    color:var(--red);
}

.dropdown-col p{
    color:#666;
    font-size:13px;
    line-height:1.5;
}

.dropdown-btn{
    display:inline-block !important;
    margin-top:10px;
    background:var(--red);
    color:#fff !important;
    padding:10px 18px;
    border-radius:6px;
}

/* CTA Button */
.nav-cta{
    background:var(--red);
    color:#fff;
    border:none;
    padding:9px 20px;
    border-radius:4px;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    letter-spacing:.5px;
    font-family:'Inter',sans-serif;
    transition:.3s;
}

.nav-cta:hover{
    background:var(--red-light);
}
  /* HERO */
  .hero{background:linear-gradient(135deg,var(--charcoal) 0%,var(--mid) 60%,#3a0008 100%);min-height:520px;padding:70px 40px 60px;display:flex;align-items:center;position:relative;overflow:hidden}
  .hero::before{content:'';position:absolute;right:-60px;top:-60px;width:500px;height:500px;background:var(--red);opacity:0.07;border-radius:50%}
  .hero::after{content:'';position:absolute;right:80px;bottom:-100px;width:300px;height:300px;background:var(--red-light);opacity:0.05;border-radius:50%}
  .hero-content{max-width:540px;position:relative;z-index:2}
  .hero-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(192,0,30,0.2);border:1px solid rgba(192,0,30,0.5);color:#ff6b7a;padding:5px 14px;border-radius:20px;font-size:12px;font-weight:600;letter-spacing:1px;text-transform:uppercase;margin-bottom:20px}
  .hero h1{font-family:'Rajdhani',sans-serif;font-size:54px;font-weight:700;color:#fff;line-height:1.05;margin-bottom:16px}
  .hero h1 span{color:var(--red-light)}
  .hero p{color:#aaa;font-size:16px;line-height:1.7;margin-bottom:30px;max-width:440px}
  .hero-btns{display:flex;gap:14px;flex-wrap:wrap}
  .btn-red{background:var(--red);color:#fff;padding:13px 28px;border-radius:5px;font-weight:600;font-size:14px;text-decoration:none;border:none;cursor:pointer;font-family:'Inter',sans-serif}
  .btn-outline{background:transparent;color:#fff;padding:12px 28px;border-radius:5px;font-weight:600;font-size:14px;border:1.5px solid rgba(255,255,255,0.3);cursor:pointer;font-family:'Inter',sans-serif}
  .hero-stats{display:flex;gap:36px;margin-top:44px;padding-top:36px;border-top:1px solid rgba(255,255,255,0.08)}
  .stat-num{font-family:'Rajdhani',sans-serif;font-size:30px;font-weight:700;color:#fff}
  .stat-num span{color:var(--red-light)}
  .stat-label{color:#777;font-size:12px;margin-top:2px;letter-spacing:0.5px}
  .hero-visual{position:absolute;right:0;top:50%;transform:translateY(-50%);opacity:0.9;width:550px;max-width:50vw}
  .hero-visual img{width:100%;height:auto;display:block;object-fit:contain}
  .bike-graphic{width:360px;height:260px}

  /* TRUST BAR */
  .trust-bar{background:var(--red);padding:14px 40px;display:flex;gap:36px;align-items:center;justify-content:center;flex-wrap:wrap}
  .trust-item{display:flex;align-items:center;gap:8px;color:#fff;font-size:13px;font-weight:500}
  .trust-dot{width:6px;height:6px;background:rgba(255,255,255,0.5);border-radius:50%}

  /* SECTION STYLES */
  .section{padding:64px 40px}
  .section-alt{background:var(--silver)}
  .section-dark{background:var(--charcoal)}
  .section-label{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--red);margin-bottom:10px}
  .section-title{font-family:'Rajdhani',sans-serif;font-size:36px;font-weight:700;color:var(--charcoal);margin-bottom:8px;line-height:1.1}
  .section-title.white{color:#fff}
  .section-sub{color:var(--muted);font-size:15px;max-width:500px;line-height:1.6}
  .section-sub.white{color:#aaa}
  .section-head{margin-bottom:40px}

  /* CATEGORIES */
  .cat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:16px}
  .cat-card{border-radius:10px;overflow:hidden;position:relative;cursor:pointer;border:1px solid #e8e8e8;transition:transform 0.2s,box-shadow 0.2s,border-color 0.2s}
  .cat-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,0.1);border-color:rgba(192,0,30,0.18)}
  .cat-card:focus-visible{outline:2px solid var(--red);outline-offset:4px}
  .cat-card::after{content:'View details';position:absolute;left:16px;bottom:16px;padding:8px 12px;background:rgba(0,0,0,0.75);color:#fff;font-size:13px;border-radius:999px;opacity:0;transform:translateY(6px);transition:opacity 0.2s,transform 0.2s}
  .cat-card:hover::after,.cat-card:focus-within::after{opacity:1;transform:translateY(0)}
  .cat-img{width:100%;height:140px;display:flex;align-items:center;justify-content:center;font-size:56px}
  .cat-img.c1{background:#fff5f5}
  .cat-img.c2{background:#fff8f0}
  .cat-img.c3{background:#f5f5ff}
  .cat-img.c4{background:#f0fff8}
  .cat-info{padding:14px 16px;background:#fff}
  .cat-name{font-family:'Rajdhani',sans-serif;font-size:17px;font-weight:700;color:var(--charcoal);margin-bottom:2px}
  .cat-count{font-size:12px;color:var(--muted)}

  /* FEATURED BIKES */
  .bikes-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px}
  .bike-card{background:#fff;border-radius:10px;border:1px solid #e8e8e8;overflow:hidden;transition:transform 0.2s,box-shadow 0.2s;cursor:pointer}
  .bike-card:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(0,0,0,0.1)}
  .bike-img{height:160px;display:flex;align-items:center;justify-content:center;font-size:72px;background:#f9f9f9;position:relative}
  .bike-badge{position:absolute;top:10px;left:10px;background:var(--red);color:#fff;font-size:10px;font-weight:700;padding:3px 9px;border-radius:3px;letter-spacing:0.5px}
  .bike-body{padding:16px 18px}
  .bike-brand{font-size:11px;color:var(--red);font-weight:700;letter-spacing:1px;text-transform:uppercase;margin-bottom:4px}
  .bike-name{font-family:'Rajdhani',sans-serif;font-size:20px;font-weight:700;color:var(--charcoal);margin-bottom:6px}
  .bike-specs{display:flex;gap:14px;margin-bottom:14px}
  .spec{font-size:12px;color:var(--muted)}
  .spec strong{display:block;font-size:13px;color:var(--text);font-weight:600}
  .bike-price{font-family:'Rajdhani',sans-serif;font-size:22px;font-weight:700;color:var(--red)}
  .bike-price small{font-size:12px;color:var(--muted);font-family:'Inter',sans-serif;font-weight:400}
  .bike-footer{display:flex;align-items:center;justify-content:space-between;margin-top:12px}
  .btn-sm{background:var(--red);color:#fff;padding:8px 16px;border-radius:5px;font-size:13px;font-weight:600;border:none;cursor:pointer;font-family:'Inter',sans-serif}
  .btn-sm-out{background:transparent;color:var(--red);padding:7px 15px;border-radius:5px;font-size:13px;font-weight:600;border:1.5px solid var(--red);cursor:pointer;font-family:'Inter',sans-serif}

  /* SERVICES */
  .services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px}
  .service-card{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.08);border-radius:10px;padding:28px 24px;transition:background 0.2s,border-color 0.2s;cursor:pointer}
  .service-card:hover{background:rgba(192,0,30,0.1);border-color:rgba(192,0,30,0.3)}
  .svc-icon{width:48px;height:48px;background:rgba(192,0,30,0.15);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:18px}
  .svc-title{font-family:'Rajdhani',sans-serif;font-size:20px;font-weight:700;color:#fff;margin-bottom:8px}
  .svc-desc{font-size:13px;color:#999;line-height:1.6}
  .svc-link{display:inline-flex;align-items:center;gap:5px;color:var(--red-light);font-size:12px;font-weight:600;margin-top:14px;letter-spacing:0.5px}

  /* WHY US */
  .why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px}
  .why-card{text-align:center;padding:28px 20px}
  .why-icon{font-size:36px;margin-bottom:14px}
  .why-title{font-family:'Rajdhani',sans-serif;font-size:19px;font-weight:700;color:var(--charcoal);margin-bottom:6px}
  .why-text{font-size:13px;color:var(--muted);line-height:1.6}

  /* ACCESSORIES */
  .acc-strip{display:flex;gap:16px;overflow-x:auto;padding-bottom:8px;scrollbar-width:none}
  .acc-card{min-width:200px;background:#fff;border-radius:10px;border:1px solid #e8e8e8;padding:20px;text-align:center;flex-shrink:0;cursor:pointer;transition:transform 0.2s}
  .acc-card:hover{transform:translateY(-3px)}
  .acc-emoji{font-size:40px;margin-bottom:12px;display:block}
  .acc-name{font-weight:600;font-size:14px;color:var(--charcoal);margin-bottom:4px}
  .acc-price{font-family:'Rajdhani',sans-serif;font-size:17px;font-weight:700;color:var(--red)}

  /* TESTIMONIALS */
  .test-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px}
  .test-card{background:#fff;border-radius:10px;border:1px solid #e8e8e8;padding:24px}
  .stars{color:#f5a623;font-size:14px;margin-bottom:12px}
  .test-text{font-size:14px;color:var(--text);line-height:1.7;margin-bottom:16px;font-style:italic}
  .test-author{display:flex;align-items:center;gap:10px}
  .avatar{width:38px;height:38px;border-radius:50%;background:var(--red);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:14px}
  .author-name{font-weight:600;font-size:13px;color:var(--charcoal)}
  .author-loc{font-size:11px;color:var(--muted)}

  /* CTA BANNER */
  .cta-band{background:var(--red);padding:50px 40px;text-align:center}
  .cta-band h2{font-family:'Rajdhani',sans-serif;font-size:38px;font-weight:700;color:#fff;margin-bottom:10px}
  .cta-band p{color:rgba(255,255,255,0.8);font-size:15px;margin-bottom:28px}
  .cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
  .btn-white{background:#fff;color:var(--red);padding:13px 28px;border-radius:5px;font-weight:700;font-size:14px;border:none;cursor:pointer;font-family:'Inter',sans-serif;transition:background 0.2s}
  .btn-white:hover{background:rgba(255,255,255,0.9)}
  .btn-trans{background:transparent;color:#fff;padding:12px 28px;border-radius:5px;font-weight:700;font-size:14px;border:2px solid #fff;cursor:pointer;font-family:'Inter',sans-serif;transition:background 0.2s,color 0.2s}
  .btn-trans:hover{background:#fff;color:var(--red)}

  /* SEO BREADCRUMB STRIP */
  .seo-strip{background:#f5f5f5;padding:20px 40px;text-align:center;border-top:1px solid #e8e8e8;border-bottom:1px solid #e8e8e8}
  .seo-link{color:#666;text-decoration:none;font-size:13px;transition:color 0.2s;margin:0 4px}
  .seo-link:hover{color:var(--red);text-decoration:underline}

  /* FOOTER */
  footer{background:var(--charcoal);color:#aaa;padding:50px 40px 30px;border-top:1px solid rgba(255,255,255,0.08)}
  .footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:40px;margin-bottom:40px}
  .footer-brand p{font-size:14px;line-height:1.6;margin-bottom:20px;color:#888}
  .footer-brand .logo-text{display:block;margin-bottom:12px}
  .footer-col h4{font-family:'Rajdhani',sans-serif;font-size:17px;font-weight:700;color:#fff;margin-bottom:20px}
  .footer-col ul{list-style:none}
  .footer-col li{margin-bottom:12px}
  .footer-col a{color:#aaa;text-decoration:none;font-size:14px;transition:color 0.2s}
  .footer-col a:hover{color:var(--red-light)}
  .contact-row{display:flex;align-items:center;gap:10px;font-size:14px;margin-bottom:14px;color:#aaa}
  .contact-icon{font-size:16px}
  .footer-bottom{display:flex;align-items:center;justify-content:space-between;border-top:1px solid rgba(255,255,255,0.08);padding-top:30px;flex-wrap:wrap;gap:20px}
  .footer-copy{font-size:13px;color:#666}
  .footer-copy span{color:var(--red-light)}
  .badges{display:flex;gap:12px;flex-wrap:wrap}
  .badge{background:rgba(192,0,30,0.15);color:#ff6b7a;border:1px solid rgba(192,0,30,0.3);padding:6px 14px;border-radius:4px;font-size:11px;font-weight:600;letter-spacing:0.5px}

  @media(max-width:768px){
    nav{padding:0 20px;height:56px}
    .hero{padding:50px 20px 40px}
    .hero-visual{width:300px;max-width:35vw;right:20px}
    .section{padding:40px 20px}
    .footer-grid{gap:30px}
    .footer-bottom{flex-direction:column;align-items:flex-start}
  }
  
  @media(max-width:600px){
    .hero-visual{display:none}
  }  


  /* home  */
/* <!-- CATEGORIES --> */
.cat-img{
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:12px;
}

.cat-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* bike card price */
.bike-img {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 16px;
    background: #f8f8f8;
}

.bike-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Shows the complete bike */
    display: block;
    transition: transform 0.3s ease;
}

.bike-img:hover img {
    transform: scale(1.05);
}

/* .bike-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e53935;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
} */