 /* Hero Banner Styles */
 .hero-carousel {
    position: relative;
    height: 100vh;
    max-height: 800px;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    height: 100vh;
    max-height: 800px;
}

.hero-carousel .carousel-item img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-carousel .carousel-indicators {
    position: absolute;
    bottom: 50px;
    left: 150px;
    right: auto;
    margin: 0;
    justify-content: flex-start;
    z-index: 15;
}

.hero-carousel .carousel-indicators button {
    width: 50px;
    height: 5px;
    background-color: transparent;
    opacity: 0.5;
    margin: 0 5px;
    border-radius: 0;
    border: 1px solid #fff;
    border-radius: 4px;
}

.hero-carousel .carousel-indicators button.active {
    opacity: 1;
    background-color: #fff;
}

.hero-content {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    text-align: left;
    padding-right: 100px;
}

.hero-content h1 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-family: "Ubuntu Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
}

.hero-content h2 {
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-family: "Ubuntu Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
}

.hero-card {
    position: absolute;
    bottom: 0px;
    right: 100px;
    background: rgba(255,255,255,0.72);
    padding: 2rem;
    border-radius: 0;
    max-width: 600px;
    z-index: 2;
}

.hero-card h3 {
    font-size: 42px;
    color: #000;
    text-transform: uppercase;
    font-family: "Ubuntu Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
}
.hero-card h6 {
    font-family: "Ubuntu Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
}
.hero-card p {
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 22px;
    letter-spacing: 1px;
    font-family: "Ubuntu Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
}

.btn-mikey {
    background-color: #e30613;
    color: white;
    padding: 0.7rem 1.8rem;
    border: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 18px;
    font-family:'Roboto',sans-serif;font-weight:700
}

.btn-mikey:hover {
    background-color: #c30512;
    color: white;
}
.add-arrow .carousel-control-next, .add-arrow .carousel-control-prev{
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        padding: 0 20px;
        right: 0;
        top: 45%;
    }
    .hero-content h2 {
        font-size: 2.5rem;
    }
    .hero-card h6 {
        font-size: 14px;
    }
    .hero-card p {
        font-size: 14px;
    }
    .hero-card h3 {
        font-size: 24px;
    }

    /* .hero-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto;
        max-width: 90%;
    } */

    .hero-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 250px !important;
        padding: 20px;
        width: 100%;
        display: none;
    }

    .hero-carousel .carousel-indicators {
        left: 120px;
        bottom: 20px;
    }
    .hero-carousel{height: 70vh;}
    .btn-mikey{font-size: 16px;padding: 0.5rem 1rem;letter-spacing: 1px;}
}