/* Custom styles for Owais Auto Battery And Electricals website with red/black theme */

/* Hero section styling with overlay for text readability */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for contrast */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Sticky navbar adjustments */
.navbar {
    transition: background-color 0.3s ease;
}

/* Card hover effects and rounded corners for modern look */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* List group items with icons */
.list-group-item {
    border-radius: 8px;
    margin-bottom: 5px;
}

/* Floating button styling */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0,
0, 0, 0.2);
    transition: background-color 0.3s ease;
}