@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');


.contact-heading {
    font-size: 19px;
    font-weight: bold;
    color: #aa6c1f;
}

.contact-para {
    font-size: 13px;
    color: #555;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #e3a038;
    /* Logo Orange */
    --secondary: #333333;
    /* Logo Dark */
    --accent: #FFD700;
    /* Accent Gold */
}

body {
    line-height: 1.6;
}

.call-btn {
    background-color: #e3a038;
    /* Orange */
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.5);
}

.call-btn:active {
    transform: scale(0.95);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        padding: 1rem 0;
        text-align: center;
    }

    .nav-links a,
    .nav-links .btn {
        display: block;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }
}

.Pune-places-heading {
    color: #0f0e46;
    font-family: "Roboto";
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    padding: 6px;
}

/* Header */
header {
    background: white;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 105px;
    width: auto;
    border-radius: 100%;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    font-weight: bold;
}

.btn {
    height: 40px;
    width: 100px;
    background-color: transparent;
    border-width: 2px;
    border-color: var(--primary);
    color: var(--primary);
    border-style: solid;
    margin-top: -5px;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.5);
    background-color: var(--primary);
    color: white;
    font-weight: bold;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}


.item-card {
    border-radius: 15px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    color: white;
}

.call-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #eb4034;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.call-float:hover {
    transform: scale(1.1);
}

.call-icon {
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    overflow: hidden;
}

.carousel-item .pic {
    width: fit-content;
    height: 90vh;
    object-fit: contain;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: absolute;
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.cta-btn {
    background: #e3a038;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

/* Bike Categories */
.bike-section {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Now it's 5 columns */
    gap: 1rem;
}



.bike-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.bike-card:hover {
    transform: translateY(-10px);
}

.bike-img {
    height: 250px;
    overflow: hidden;
}

.bike-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.bike-card:hover .bike-img img {
    transform: scale(1.1);
}

.bike-info {
    padding: 1.5rem;
    text-align: center;
}

.bike-info h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.price-tag {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Why Choose Us */
.features {
    padding: 5rem 5%;
    background: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 5%;
    background: var(--secondary);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 5px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 5%;
    text-align: center;
padding: top 20px;;
}

.social-links {
    margin: 2rem 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary);
}


.carousel-inner img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 10px;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary);
    padding: 15px;
    border-radius: 50%;
}

.carousel-indicators li {
    background-color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .bike-grid {
        grid-template-columns: 1fr;
    }

    
}