
.posible-banner img {
    display: block;
    height: auto;
    width: 100%;
}


    .sections.banner .container-fluid{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: end;
    }  


.form-wrapper {
    padding: 30px;
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
}
.form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}
.desktop-banner {
    display: block;
}
.mobile-banner, .tab-banner {
    display: none;
} 
.possible-hai-container  {
    text-align: center;
    padding: 10px 0 0 0;
}
.possible-hai-container h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;  
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
    gap: 30px; /* Space between grid items */   
    margin: auto; /* Center align */
    padding: 30px 0;
}

.product-card {
    border: 1px solid #ddd;
    padding: 30px;
    text-align: center;
    background: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 8px;
}

.icon {
    width:80px;
    margin:0 auto;
    height: 80px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


.icon img {
   display: block;
   height: auto;
   max-width: 100%; 
}


.product-card h3{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;  
}


.apply-now {
    margin-top: auto;
}


.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-body {
    max-height: 90vh;
    overflow: auto;
    padding: 30px !important;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px !important;
    cursor: pointer !important;
}

#loanleadForm .form-control {
    height:40px
}
#loanleadForm .form-check-label {
    font-size: 14px;
    padding-left: 15px;
}
.banner-container {
    text-align: center;
    margin-bottom: 20px;
}
.error-display {
    color: red; /* Set error text color to red */
    font-size: 16px; /* Set a readable font size */
    text-align: center; /* Center align the text */
    margin-top: 5px; /* Add some spacing from the input field */
     /* Make the text bold */
}

/* .banner-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
} */
.banner-image picture img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  #serloadover {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 1000; /* Ensure it's above everything */
    justify-content: center;
    align-items: center;
}

#serload img {
    width: 100px; /* Adjust size if needed */
}

.product-detail.possible-hain .fulltabs .bb-tabs .nav-tabs.tabstyles {
    padding-left: 0 !important;
}

@media screen and (max-width:1180px) {
    
    .sections.banner .container-fluid{
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        display: block;
      
    }  
    .form-wrapper {
        max-width: none;
    }
    
}
@media screen and (max-width:1023px) { 
    .tab-banner {
        display: block;
    }
    .desktop-banner, .mobile-banner {
        display: none;
    }
}


@media screen and (max-width:991px) {
    .grid-container {       
        grid-template-columns: repeat(2, 1fr); /* 3 columns per row */
       
    }
    #loanleadForm .form-control {
        height:32px
    }
}

@media screen and (max-width:650px) {
    .grid-container {       
        grid-template-columns: repeat(1, 1fr); /* 3 columns per row */
       
    }
  .mobile-banner {
        display: block;
    }
    .desktop-banner,   .tab-banner {
        display: none;
    }
}

