body{
    overflow-x: hidden;
    background-color: rgb(250, 250, 250);
}

main{
    flex-basis: 1;
    /* overflow-x: hidden; */
}
.navbar{
    position: sticky;
    top: 0;
}
.breadcum-title {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
    color: #222;
    position: relative;
}

.breadcum-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #007bff;
    display: block;
    margin: 10px auto;
    border-radius: 2px;
}
#navbar{
    z-index: 9999;
    background-color:#73d700;
}
#nav-link{
    font-weight: bold;
    font-size: 20px;
    /* box-shadow: 0 0 5px; */
    transition: .5s ease-in-out;
}
#nav-link:hover{
    background-color: #000;
    color: #ffff !important;
    border-bottom: 3px solid orange;
}
.product-slider-img{
    width: 100%;
    height: 300px;
}
.brand-img{
    height: 100px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-top: -10px;
    margin-bottom: -20px;
}
#slider-img{
    height: 90vh;
}
#our_products{
    position: relative;
}

#our_products::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f78da7;
    opacity: 0.2;
    z-index: -1; /* agar background effect chahiye */
}
#social-icon{
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px white;
    transition: 1s;
}
#social-icon:hover{
    background-color: #000 !important;
    transform: rotate(360deg);
}
#nav-contact{
    background-color: rgb(253, 166, 6);
    border: 2px solid #ffff;
    transition: .5s ease-in-out;
}
#nav-contact:hover{
    background-color: #000;
}
#about{
    background-color: rgba(255,255,255,.5);
}
.about-text{
    font-size: 20px;
}
.about-image{
    box-shadow: 5px 5px 5px gray;
    border-radius: 20px !important;
}
.welcome-slider-img img{
    width: 300px;
    height: 200px;
}

.overlay-text {
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.contact{
    background-color: black;
}
.message-form input, .message-form textarea{
    box-shadow: none !important;
    outline: none !important;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
}
input,select,textarea{
    box-shadow: none !important;
}
#getQuoteTitle{
    background-color: #73d700;
    width: 50%;
    margin: auto;
}
.form-label{
    font-weight: bold;
    font-size: 18px;
}
label.required::after {
    content: " *";
    color: red;
}
.gallery-container {
      padding: 80px 0;
      text-align: center;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    /* transform: scale(1.1); */
    filter: brightness(0.85);
}

.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.custom-modal.active {
    display: flex;
}

.custom-modal img {
    width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 38px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
    z-index: 10000;
}

.close-btn:hover {
    color: #ff4747;
}
@media only screen and (max-width:992px){
    #offcanvasNavbar{
        background-color: rgb(78, 78, 78);
        color: #ffff;
    }
    .slider-image{
        height: 40vh;
    }
    #nav-link{
        color: #ffff !important;
        font-weight: bold;
        font-size: 20px;
        margin: 5px;
        transition: .5s ease-in-out;
        box-shadow: none;
        border-bottom: 1px solid;
    }
    #mobile-close{
        color: #ffff !important;
    }
    #nav-link:hover{
        background-color: rgb(0, 0, 0);
    }
    #slider-img{
        height: 50vh;
    }
}
.text-justify{
    text-align: justify;
}
@media only screen and (min-width:1020px){
    .brand-img{
        margin-left: 20%;
    }
}