* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

:root {
    --gotrek-orange: #ff4d00;
    --gotrek-dark: #1a1a1a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Hover Shadow Effects */
.hover-shadow {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .175) !important;
    transform: translateY(-5px);
}

.hover-shadow-lg {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hover-shadow-lg:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .3) !important;
    transform: translateY(-8px);
}

.hover-shadow-red {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hover-shadow-red:hover {
    box-shadow: 0 16px 48px rgba(220, 53, 69, 0.4) !important;
    transform: translateY(-5px);
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    box-shadow: 0 0.8px 16px rgba(0, 0, 0, .3);
    transform: translateY(-2px);
}

/* Icon Hover Effects */
.icon-hover {
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.icon-hover:hover {
    transform: scale(1.2);
    color: var(--gotrek-orange) !important;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Gallery Image Hover */
.gallery-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.gallery-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 48px rgba(220, 53, 69, 0.3) !important;
}

.gallery-hover img {
    transition: transform 0.3s ease;
}

.gallery-hover:hover img {
    transform: scale(1.1);
}

/* Nav Link Hover */
.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gotrek-orange) !important;
}

/* Footer Link Hover */
footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
    display: inline-block;
}


.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-container {
    position: relative;
    z-index: 2;
}

/* Header Section */
.section-label {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.testimonials-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
}

/* Carousel Wrapper */
.carousel-inner {
    border-radius: 0;
    background: transparent;
}

.carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Image Section */
.testimonial-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s ease;
}

.carousel-item.active .testimonial-image {
    animation: imageZoom 0.8s ease-in-out;
}

@keyframes imageZoom {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Text Section */
.testimonial-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 24px;
}

.testimonial-stars i {
    color: #ffc107;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-style: italic;
    letter-spacing: 0.3px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    color: var(--primary-color);
    font-size: 48px;
    opacity: 0.3;
    line-height: 0;
    margin: 0 5px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e74c3c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.author-info h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
    letter-spacing: -0.5px;
}

.author-info p {
    font-size: 15px;
    color: var(--primary-color);
    margin: 0;
}





/* Trust Section */
.trust-item {
    text-align: center;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trust-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.trust-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}



.bike-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.main-bike-img {
    width: 100%;
    max-width: 450px;
    height: 500px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.circle-img {
    position: absolute;
    border-radius: 50%;
    border: 3px solid var(--gotrek-orange);
    object-fit: cover;
    transition: transform 0.3s ease;
    z-index: 1;
    cursor: pointer;
}

.circle-img:hover {
    transform: scale(1.15);
    z-index: 3;
    border-color: var(--gotrek-orange);
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
}

.circle-2 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 15%;
}

.circle-3 {
    width: 90px;
    height: 90px;
    top: 5%;
    left: 35%;
}

.circle-4 {
    width: 110px;
    height: 110px;
    top: 35%;
    left: 0%;
}

.circle-5 {
    width: 95px;
    height: 95px;
    bottom: 30%;
    left: 8%;
}

.circle-6 {
    width: 105px;
    height: 105px;
    bottom: 35%;
    right: 5%;
}

.circle-7 {
    width: 115px;
    height: 115px;
    bottom: 10%;
    right: 20%;
}

.circle-8 {
    width: 100px;
    height: 100px;
    bottom: 5%;
    left: 30%;
}

.content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.cta-button {

    color: white;
    padding: 15px 50px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
}

.Pro img{
  width: 100%;
    height: 250px;
    object-fit: contain;
}

.cta-button:hover {
    background-color: var(--gotrek-orange);
    color: white;
}