﻿
.first-section {
    background-image: url('/img/productpageimg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 500px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Align child to bottom */
}

.first-section h1 {
    color: white;
    margin: 20px;
    padding: 20px; /* Optional spacing from bottom */
}

.bullet-text {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

    .bullet-text::before {
        content: "•";
        position: absolute;
        left: 0;
        top: 0;
        color: #000;
        font-size: 1.2rem;
        line-height: 1.4;
    }

.gallery-card {
    border: none;
}

.gallery-title {
    background-color: #028a0f;
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 500;
}

.tab-pane {
    margin-top: 20px;
}

.custom-select {
    border-radius: 50px;
    border: 1px solid #ced4da;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 110px;
}

.custom-search {
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
}

    .custom-select:focus,
    .custom-search:focus {
        border-color: #028a0f;
        box-shadow: 0 0 0 0.25rem rgba(2, 138, 15, 0.25);
        outline: none;
    }

.-section .nav-tabs {
    border-bottom: none;
}

.product-section .nav-tabs .nav-link.active {
    background-color: #028a0f;
    color: white;
    border-color: #028a0f #028a0f white;
    font-weight: 500;
    border-radius: 0px;
}

.product-section .nav-tabs .nav-link {
    color: #333;
    border: 1px solid transparent;
    border-radius: 0px;
}

    .product-section .nav-tabs .nav-link:hover {
        background-color: #028a0f;
        color: white;
        border-color: #028a0f #028a0f white;
        font-weight: 500;
    }


