/* Universal Css Start Here */

/* Universal Css End Here */

/* Typography Start Here */
.larger-heading {
	font-family: var(--font-montserrat-bold);
	font-size: 53px;
	line-height: 63px;
}

.deafult-heading {
	font-family: var(--font-heading);
	font-size: 40px;
	line-height: 50px;
}

.paragraph-family {
	font-family: var(--font-paragraph);
	font-size: 15px;
	line-height: 25px;
}

/* Typography End Here */

/* Header Css Start Here */


/*  */


/* Base Slider Styles */
.luxury-slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.slick-item {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
    transition: transform 10s ease; /* For Ken Burns effect */
}

/* Background Zoom Animation on Active Slide */
.slick-active .slick-item {
    animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

.luxury-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.2) 100%);
}

/* Typography Upgrade */
.banner-content { position: relative; z-index: 5; }

.banner-content h5 {
    font-size: 1.2rem;
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 15px;
}

.banner-content h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1;
}

.banner-content h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: #f0f0f0;
    margin-bottom: 30px;
}


/* Buttons */
.btn-luxury-main {
    transition: 0.4s;
    display: inline-block;
}

.btn-luxury-main:hover {
    background: white;
    color: black;
    transform: translateY(-5px);
}

/* Custom Slick Arrows & Dots */

.luxury-slider .prev-btn.slick-arrow,.luxury-slider  .next-btn {
    position: absolute;
    background: var(--primary-red);
    z-index: 22;
    top: 50%;
    color: white;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
}


@media(min-width: 1024px) {
.luxury-slider .prev-btn.slick-arrow {
    left: 3%;
}
.luxury-slider .next-btn{
    right:3%
}
}
@media(max-width: 768px) {
	.luxury-slider .prev-btn.slick-arrow,.luxury-slider  .next-btn {
	top:70%
	}
	.luxury-slider .prev-btn.slick-arrow {
    left: 4%;
}
	.luxury-slider .next-btn {
    left: 18%;
    right: unset;
}
.luxury-slider{
height: auto;
margin-bottom: 0 !important;
}
.luxury-dots {
        bottom: 80px !important;
        left: 4% !important;
}
}
/* Container positioning */
.luxury-dots {
    position: relative;
    bottom: 85px;
    z-index: 10;
    left: 6%;
}
.luxury-dots .slick-dots {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px; /* Dots ke beech ka space */
}

/* Base Dot (The Outer Ring) */
.luxury-dots .slick-dots li {
    position: relative;
    width: 30px;
    height: 30px;
    background: rgba(197, 160, 89, 0.2); /* Faint gold background */
    border-radius: 50%;
    display: flex;
	padding: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* The Inner Solid Circle */
.luxury-dots .slick-dots li::after {
    content: "";
    width: 12px;
    height: 10px;
    background-color: var(--primary-red); /* Your Gold/Orange color */
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* The Connecting Line */
.luxury-dots .slick-dots li:not(:last-child)::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 30px; /* Match this with the 'gap' value */
    background: rgba(255, 255, 255, 0.3); /* Thin white/grey line */
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

/* Active State Styles */
.luxury-dots .slick-dots li.slick-active {
    background: rgba(255, 255, 255, 0.2); /* Active outer ring color */
    transform: scale(1.1);
}

.luxury-dots .slick-dots li.slick-active::after {
    background-color: #fff; /* Active inner circle turns white */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* Premium glow */
}

/* Hidden Slick Default Button */
.luxury-dots .slick-dots li button {
    display: none;
}
.luxury-dots .slick-dots button { display: none; }

/* Text Animations */
.ani-top, .ani-left, .ani-right, .ani-bottom {
    opacity: 0;
}

.slick-active .ani-top { animation: fadeInUp 0.8s forwards 0.3s; }
.slick-active .ani-left { animation: fadeInLeft 0.8s forwards 0.6s; }
.slick-active .ani-right { animation: fadeInRight 0.8s forwards 0.9s; }
.slick-active .ani-bottom { animation: fadeInUp 0.8s forwards 1.2s; }

@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }



/* Ticker Item Spacing */
.ticker-item {
    padding: 0 30px; /* Space between items */
    outline: none;
}

/* Hover Animation (Same as before) */


.sliding-text__title:before {
    content: attr(data-hover);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.5s ease;
}

.ticker-item:hover .sliding-text__title:before {
    width: 100%;
}

/* Counter Reset for the Row */
.row { counter-reset: count; }

.services-one__single {
    margin-bottom: 30px;
    z-index: 1;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    border: none;
}

/* --- 3D Rotation Hover Layer --- */
.services-one__single::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--primary-red);
    /* Initial state: rotated and hidden */
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    z-index: -1;
    transition: 0.4s linear;
}

.services-one__single:hover::before {
    transform: scaleX(1) rotateX(0deg);
    opacity: 1;
}

/* --- Bottom Bar --- */
.services-one__single::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 6px;
    background-color: var(--primary-red);
    transition: 0.5s ease-in-out;
    z-index: 1;
}

.services-one__single:hover::after {
    background-color: var(--gorent-black);
}

/* --- Number Container (The Box) --- */
.services-one__count {
    transform: translateY(-50%);
    width: 55px;
    height: 45px;
    border-radius: 10px 0 0 10px;
    z-index: 2;
}

/* --- Automatic Counter Text --- */
.services-one__count::before {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: var(--gorent-black);
    counter-increment: count 1;
    content: "0" counter(count);
    transition: 0.5s;
    z-index: 4;
}

/* --- Number Background Slide-in --- */
.services-one__count::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    background-color: var(--gorent-black);
    opacity: 0;
    transform: translateX(55px);
    z-index: 3;
    transition: 0.7s;
}

/* --- Hover States for Content --- */
.services-one__single:hover .services-one__count::before {
    color: var(--primary-red);
}

.services-one__single:hover .services-one__count::after {
    opacity: 1;
    transform: translateX(0px);
}

.services-one__single:hover .title-text,
.services-one__single:hover .desc-text {
    color: var(--gorent-black) !important;
}

.services-one__single:hover {
    transform: translateY(-10px);
}


/*  */

.bg-primary-red { background-color: var(--primary-red); }

.about-sec { background: #fff; }

/* Image Collage Logic */
.image-collage {
    position: relative;
    padding-bottom: 60px;
}

.img-front {
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 60%;
    z-index: 2;
}

.img-back {
    width: 90%;
    z-index: 1;
}

.exp-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    z-index: 3;
    min-width: 150px;
    /* Custom Shape like in image */
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 30% 85%, 20% 100%, 20% 85%, 0% 85%);
}

/* Progress Bars Customization */
.progress {
    background-color: #eee;
    overflow: visible;
}

.progress-bar {
    background-color: var(--primary-red)!important;
    position: relative;
}



@media (max-width: 991px) {
    .image-collage { margin-bottom: 80px; }
    .img-front { width: 50%; right: 0; }
}

.process-row { counter-reset: count; }

  /* Card */
.process-card {
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.4s cubic-bezier(.22,.68,0,1.2), border-color 0.4s, box-shadow 0.4s;
    counter-increment: count;
    border-radius: 20px;
  }
  .process-card:hover {
    transform: translateY(-12px);
    border-color: rgba(220,30,30,0.45);
    box-shadow: 0 28px 60px rgba(220,30,30,0.18);
  }

  /* Shimmer top line */
  .card-shimmer {
    position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    opacity: 0; transition: opacity 0.4s;
  }
  .process-card:hover .card-shimmer { opacity: 1; }

  /* Red glow bg */
  .card-glow {
    position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(ellipse at 80% 100%, rgba(220,30,30,0.13) 0%, transparent 65%);
    opacity: 0.5; transition: opacity 0.4s;
  }
  .process-card:hover .card-glow { opacity: 1; }

  /* Icon circle */
  .step-icon {
    width: 54px; height: 54px;
    background: var(--primary-red);
    border: 2px solid rgba(220,30,30,0.2);
    transition: border-color 0.4s, box-shadow 0.4s;
  }
  .process-card:hover .step-icon {
    border-color: rgba(255,255,255,0.35);
    box-shadow: 0 0 20px rgba(220,30,30,0.5);
  }
  .process-card:hover .step-icon i { animation: wobble 0.7s ease-in-out; }
  @keyframes wobble {
    16%{transform:translateX(7px)} 33%{transform:translateX(-5px)} 50%{transform:translateX(3px)} 100%{transform:translateX(0)}
  }

  /* Step number */
  .step-num {
    font-size: 56px; font-weight: 900; font-family: var(--font-display);
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.1);
    transition: -webkit-text-stroke 0.4s;
  }
  .step-num::after { content: "0" counter(count); }
  .process-card:hover .step-num { -webkit-text-stroke: 1.5px rgba(220,30,30,0.6); }

  /* Divider */
  .step-divider {
    width: 30px; height: 2px;
    background: linear-gradient(90deg, var(--primary-red), rgba(220,30,30,0.3));
    transition: width 0.4s;
  }
  .process-card:hover .step-divider { width: 52px; }

  /* Arrow connector */


/* Mobile pe arrows hide */


  .pw-arrow-line {
    position: absolute;
    right: -14px;
    top: 44%;
    width: 2px; height: 42px;
    background: linear-gradient(to bottom, rgba(220,30,30,0.15), var(--primary-red), rgba(220,30,30,0.15));
    border-radius: 2px; ;
  }
  .pw-arrow-line::after {
    content: ''; position: absolute;
    bottom: -7px; left: 50%; transform: translateX(-50%);
    border-left: 6px solid transparent; border-right: 6px solid transparent;
    border-top: 9px solid var(--primary-red);
  }

  @media (max-width: 768px) {
    .pw-arrow { transform: rotate(90deg); }
  }


        .stat-grid {
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .stat-item {
            padding: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .divider-end { border-end: 1px solid rgba(255,255,255,0.1); }

        .contact-card {
            background-color: var(--surface);
            border-radius: 12px;
            padding: 40px;
            border: 1px solid rgba(197, 160, 89, 0.2); /* Subtle Gold border */
        }




        /* Matching image_d9fada.png badge style */
        .badge-touch {
            background: rgba(0,0,0,0.3);
            color: var(--gold);
            padding: 5px 15px;
            border-radius: 50px;
            display: inline-block;
        }
        /* Custom Styles for Red & Black Theme */


.car-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.car-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 20px rgba(102, 9, 18, 0.1);
}

.car-card__img {
    position: relative;
    overflow: hidden;
}

.car-card__img img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.car-brand-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary-red);
    color: #fff;
    padding: 4px 15px;
    border-top-right-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.spec-item {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-item i {
    color: var(--primary-red);
}



/* Tab Active Color */
.filter-tab.active {
    background-color: var(--primary-red) !important;
    color: white !important;
    border-color: var(--primary-red) !important;
}

.testimonial-card {
    border: none;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
}

.client-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-red);
}

.quote-icon {
    font-size: 40px;
    color: rgba(102, 9, 18, 0.1);
    position: absolute;
    top: 20px;
    right: 25px;
}

.star-rating {
    color: var(--gold);
    font-size: 14px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* home end */
/* pro detail page start here */
/* Luxury Styling */
.main-img-hover {
    transition: transform 0.5s ease;
    cursor: zoom-in;
      border-radius: 15px;

}
.main-img-hover:hover {
    transform: scale(1.02);
}

.thumb-hover {
    transition: 0.3s;
    cursor: pointer;
}
.thumb-hover:hover {
    border-color: #660912 !important;
    transform: translateY(-3px);
}

/* .spec-box {
    background: #fdfdfd;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    transition: 0.3s;
}
.spec-box i {
    font-size: 20px;
    color: #660912;
} */
.spec-box:hover {
    background: var(--primary-red);
    border-color: #660912;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pro-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}


/* pro detial page end here */
/* footer */


.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s all ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    transition: 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.newsletter-input {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: white !important;
    padding: 12px;
}

.newsletter-input:focus {
    border-color: var(--primary-red) !important;
    box-shadow: none;
}
