:root{
    --white-color:#fff;
    --black-color:#000;
    --btn-color:#C6A867;
    --btn-hover:#2E775D;
}
/* .roboto-slab-<uniquifier> {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */
 h2,h4{
    font-family: "Roboto Slab", serif;
 }
section{
    padding: 50px 12px;
        background: #0f0f0f;
}

/* ===================== HEADER ===================== */
.header-area{
    width:100%;
    padding:18px 70px;
    position:absolute;
    top:0; left:0;
    z-index:20;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */
.header-area img{
    height:35px;
}

/* NAV MENU */
.nav-menu a{
    color:var(--white-color);
    text-decoration:none;
    margin:0 18px;
    font-size:16px;
    font-weight:300;
    transition:.3s;
}
.nav-menu a:hover{
    color:var(--btn-color);
}

/* ICONS */
.head-icons i{
    color:var(--white-color);
    font-size:16px;
    margin-right:15px;
    cursor:pointer;
    transition:.3s;
}
.head-icons i:hover{
    color:var(--btn-color);
}

/* BOOK NOW BUTTON */
.book-btn{
      background: var(--white-color);
    color: var(--black-color);
    padding: 4px 13px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
    transition: .3s;
    border: 1px solid transparent;
}
.book-btn:hover{
    background:transparent;
    border-color:var(--white-color);
    color:var(--white-color);
}



/* ================= HERO SECTION ================= */
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* VIDEO */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* DARK OVERLAY (IMPORTANT for text visibility) */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

/* CONTENT */
.hero-content {
    max-width: 500px;
    color: #fff;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
font-family: "Roboto Slab", serif;
}

.hero-content p {
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 25px;
}

.hero-btn {
    background: #fff;
    color: #000;
    padding: 9px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: .3s;
}

.hero-btn:hover {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

/* ======================= CHOOSE YOUR RIDE ======================= */
#choose-ride{
    background:#0f0f0f;
    text-align:center;
}

.ride-wrap {
    max-width:1100px;  
    margin:auto;
}

#choose-ride h2{
    color:#fff;
    font-size:38px;
    margin-bottom:50px;
    font-weight: 400;
}

/* CAR BOX STYLING */
.ride-item{
    overflow:hidden;
    border-radius:22px;
}
.ride-item img{
    width: 100% !important;
    height: 250px;
    object-fit: cover;
    border-radius: 22px;
    transition: .4s;
}
.ride-item:hover img{
    transform:scale(1.05);
}

/* ARROWS + BUTTON */
.ride-bottom{
    margin-top:45px;
}
.ride-arrows i{
    font-size:28px;
    color:#fff;
    margin:0 18px;
    cursor:pointer;
    transition:.3s;
}
.ride-arrows i:hover{
    color:#c6a867;
}

.ride-btn{
    display:inline-block;
    margin-top:18px;
    background:none;
    color:white;
    border:1px solid #fff;
    padding:7px 22px;
    border-radius:20px;
    font-size:14px;
    text-decoration:none;
    transition:.3s;
}
.ride-btn:hover{
    background:#fff;
    color:#000;
}

/* ============ renterl term =============== */
.rental-sec-term{
    padding-top: 0;
}
#rental-terms{
    background:#141010;
    padding:70px 60px;
    border-radius:25px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
}

/* LEFT SIDE */
#rental-terms .terms-left{
    width:40%;
}
#rental-terms .terms-left h2{
    color:#fff;
    font-size:38px;
    font-weight:400;
    margin-bottom:10px;
}
#rental-terms .terms-left p{
    color:#bfbebe;
    font-size:15px;
    line-height:1.6;
}
#rental-terms .terms-btn{
    margin-top:25px;
    display:inline-block;
    padding:8px 20px;
    background:#fff;
    color:#000;
    font-size:14px;
    font-weight:400;
    border-radius:18px;
    text-decoration:none;
}

/* RIGHT BOX GRID */
#rental-terms .terms-grid{
    width:55%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}
#rental-terms .term-box{
    background:#201c1c;
    padding:22px;
    border-radius:18px;
}
#rental-terms .term-box h5{
    color:#fff;
    font-size:16px;
    font-weight:600;
}
#rental-terms .term-box p{
    color:#cfcfcf;
    font-size:13px;
}

/* ======================= TESTIMONIOL SECTION  ======================= */


#testimonials{
    background:#000;
    text-align:center;
}

#testimonials h2{
    color:#fff;
    font-size:34px;
    font-weight:400;
    line-height:1.4;
    margin-bottom:50px;
}


.testi-card{
    background:#111;
    height:120px;
    border-radius:25px;
    margin:10px;
}


.testi-slider .owl-item{
    padding:5px;
}
.testi-slider .owl-stage {
    transition-timing-function: linear !important;
}
.testi-card {
    background: #111;
    height: 120px;
    border-radius: 25px;
    margin: 10px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testi-card p {
    color: #eee;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.testi-card span {
    color: #aaa;
    font-size: 12px;
}


/* ================ step section ========================= */
.steps-section{
    background:#000;
    padding-top:0px;
}

.steps-title{
    text-align:center;
    color:#fff;
    font-size:38px;
    font-weight:400;
    margin-bottom:50px;
}

.steps-img{
    height: 95%;
}
.steps-img img{
    width:100%;
    border-radius:22px;
    display:block;
    object-fit: cover;
    height: 100%;
}

.step-box{
    background:#111;
    color:#fff;
    padding:25px 22px;
    border-radius:18px;
    margin-bottom:25px;
    min-height:180px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-align:left;
    transition:0.3s ease;
}

.step-box:hover{
    background:#1a1a1a;
    transform:translateY(-5px);
}

.step-box span{
    font-size:22px;
    font-weight:600;
    opacity:0.8;
}

.step-box h5{
    font-size:18px;
    margin:10px 0;
    font-weight:600;
}

.step-box p{
    font-size:14px;
    line-height:1.5;
    opacity:0.85;
}



/* ===============================-premium section strat ----------------------------------- */

.premium-section {
    background: #000;
    color: #fff;
    padding-top: 0;
}

.premium-title {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
}

.premium-grid {
    row-gap: 24px;
}

.premium-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 260px;
}

.premium-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.premium-overlay h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.premium-overlay p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.4;
}

/* ===============================-premium section end ----------------------------------- */
/* ===============================-FAQ section start ----------------------------------- */
.faq-section {
    background: #000;
    color: #fff;
    padding-top: 0;
}

.faq-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 400;
}

.faq-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.faq-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-size: 16px;
    padding: 20px 0;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    display: none;
}

.faq-accordion .icon {
    margin-left: auto;
    transition: 0.3s;
}

.faq-accordion .accordion-button:not(.collapsed) .icon {
    transform: rotate(45deg); /* plus to minus */
}

.faq-accordion .accordion-body {
    padding: 0 0 20px 0;
    font-size: 14px;
    color: #ccc;
}

/* ===============================-FAQ section end ----------------------------------- */


/* =========leatest stories css strat  */
.news-stories {
    background: #000;
}

.news-stories .news-title {
    text-align: center;
    color: #fff;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
}

.news-stories .news-card {
    position: relative;
    height: 250px;
    border-radius: 22px;
    overflow: hidden;
}

.news-stories .news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-stories .news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.15));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.news-stories .news-overlay p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-stories .read-more {
    display: inline-block;
    background: #fff;
    color: #000;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
}

.news-stories .owl-nav {
    display: none;
}

.news-stories .owl-dots {
    margin-top: 25px;
}

.news-stories .owl-dot span {
    background: rgba(255,255,255,0.4);
}

.news-stories .owl-dot.active span {
    background: #fff;
}

/* =========leatest stories css end */

/* =============footer css start ========== */
.site-footer {
    background: #000;
    color: #fff;
}

.site-footer .footer-box {
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 28px;
    padding: 40px;
    background: radial-gradient(circle at top, #111, #000);
}

.site-footer .logo img {
    max-width: 140px;
    margin-bottom: 20px;
}

.site-footer .footer-text {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 14px;
}

.site-footer .footer-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 18px;
    color: #fff;
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links li {
    margin-bottom: 10px;
}

.site-footer .footer-links a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
}

.newsletter-form {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 999px;
    padding: 6px;
    max-width: 420px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 16px;
    flex: 1;
    font-size: 14px;
    outline: none;
    width: 30px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #eaeaea;
}

.site-footer .footer-note {
    font-size: 12px;
    color: #aaa;
    line-height: 1.4;
}

/* =============footer css end========== */