/* Banner Start */
.banner{
    overflow: hidden;
    position: relative;
}
.banner img{
    width: 100%;
    height: auto;
}
.banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 77, 118, 0.8);
}
.banner .banner-content{
    position: absolute;
    bottom: 4.2rem;
    left: 8%;
    color: #fff;
}
.banner .banner-content h1{
    font-size: calc(2.7rem + 1vw);
    font-weight: 700;
    text-transform: uppercase;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1230px) and (max-width: 1399px){
    .banner .banner-content h1{
        font-size: calc(3.1rem + 1vw);
    }
}
/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .banner .banner-content h1{
        font-size: calc(3.3rem + 1vw);
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .banner{
        overflow: hidden;
        position: relative;
    }
    .banner .banner-content{
        position: absolute;
        bottom: 0.2rem;
        left: 1rem;
    }
    .banner .banner-content h1{
        font-size: calc(1.3rem + 0.5vw);
    }
}
/* Banner End */

/* Category Start */
.category{
    padding: 3.5rem 8%;
}
.category h2{
    font-size: calc(0.7rem + 0.5vw);
    text-align: center;
    color: #525252;
}
.category-cards-row{
    margin-top: 2rem;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 1.5%;
}
.category-card{
    width: 23.8%;
    border-radius: 8px;
    padding: 0.7rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
    margin-bottom: 1rem;
    text-decoration: none;
    background-color: #eae9e7;
}
.category-card:hover{
    background-color: #dadada;
}
.category-card .card-image{
    box-shadow: rgba(99, 99, 99, 0.085) 0px 2px 8px 0px;
    border: 1px solid #f0f0f0;
    border-radius: 7px;
    overflow: hidden;
}
.category-card img{
    width: 100%;
    height: auto;
}
.category-card h3{
    font-size: calc(0.6rem + 0.5vw);
    font-weight: 700;
    margin-top: 1rem;
    color: #000;
}
.category-card p{
    font-size: calc(0.35rem + 0.5vw);
    color: #525252;
    margin: 0;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1230px) and (max-width: 1399px){
    .category h2{
        font-size: calc(0.75rem + 0.5vw);
    }
    .category-cards-row{
        margin-top: 2.5rem;
    }
    .category-card{
        padding: 0.8rem;
        margin-bottom: 1.15rem;
    }
    .category-card h3{
        font-size: calc(0.7rem + 0.5vw);
        margin-top: 1.2rem;
    }
    .category-card p{
        font-size: calc(0.4rem + 0.5vw);
    }
}
/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .category{
        padding: 4rem 8%;
    }
    .category h2{
        font-size: calc(0.8rem + 0.5vw);
    }
    .category-cards-row{
        margin-top: 2.7rem;
    }
    .category-card{
        padding: 0.9rem;
        margin-bottom: 1.23rem;
    }
    .category-card h3{
        font-size: calc(0.77rem + 0.5vw);
        margin-top: 1.4rem;
    }
    .category-card p{
        font-size: calc(0.43rem + 0.5vw);
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .category{
        padding: 1.5rem 1rem;
    }
    .category h2{
        font-size: calc(0.8rem + 0.5vw);
    }
    .category-cards-row{
        margin-top: 1.5rem;
        justify-content: space-between;
        gap: 0;
    }
    .category-card{
        width: 48%;
        padding: 0.4rem;
        margin-bottom: 0.8rem;
        border-radius: 5px;
    }
    .category-card h3{
        font-size: calc(0.72rem + 0.5vw);
        margin-top: 1rem;
    }
    .category-card p{
        font-size: calc(0.57rem + 0.5vw);
    }
}
/* Category End */

/* FAQ Start */
.faq{
    padding: 0 8% 4rem 8%;
}
.faq h4{
    font-size: calc(1.9rem + 0.5vw);
    font-weight: 700;
    color: #386d94;
    text-transform: uppercase;
    text-align: center;
}
.faq p{
    font-size: calc(0.55rem + 0.5vw);
    font-weight: 500;
    color: #000;
    margin: 0.8rem auto;
    text-align: center;
}
.faq #faqAccordion{
    margin-top: 2rem;
    border: 1px solid #e3e9ee;
    border-radius: 7px;
}
.faq .accordion-button {
  background-color: transparent !important;
  box-shadow: none !important;
  font-weight: 700;
  color: #000;
  font-size: calc(0.7rem + 0.5vw);
  padding: 1.3rem 2rem 1.3rem 1.5rem;
}
.faq .accordion-button:not(.collapsed) {
  background-color: transparent !important;
}
.faq .accordion-button:focus {
  box-shadow: none !important;
}
.faq .accordion-body {
  font-size: calc(0.5rem + 0.5vw);
  font-weight: 500;
  color: #707070;
  padding: 0 4rem 1.5rem 1.5rem;
  border-bottom: 1px solid #e3e9ee;
}

/* For small screens */
@media screen and (max-width: 767px) {
    .faq{
        padding: 0.5rem 1rem 2rem 1rem;
    }
    .faq h4{
        font-size: calc(1.2rem + 0.5vw);
    }
    .faq p{
        font-size: calc(0.75rem + 0.5vw);
        width: 90%;
        margin: 0.5rem auto;
    }
    .faq #faqAccordion{
        margin-top: 1.2rem;
    }
    .faq .accordion-button {
        font-size: calc(0.75rem + 0.5vw);
        padding: 0.8rem 0.5rem 0.8rem 0.8rem;
    }
    .faq .accordion-button::after{
        scale: 0.7;
    }
    .faq .accordion-body {
        font-size: calc(0.65rem + 0.5vw);
        padding: 0 2rem 0.8rem 0.8rem;
    }
    .niznal-accordion .accordion-button{
        display: block;
    }
}
/* FAQ End */

/* Products Read More Start */
.read-more-section {
    padding: 3rem 8%;
    background-color: #eae9e7;
}
.read-more-title {
    font-size: calc(1.7rem + 0.5vw);
    font-weight: 700;
    color: #1c455f;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.read-more-content p {
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #555;
}
.extra-content {
    max-height: 0;
    overflow: hidden;
    margin-top: 0.8rem;
    transition: max-height 0.3s ease;
}
.extra-content.show {
    max-height: 100vh;
}
.read-more-btn {
    margin-top: 1rem;
    padding: 0.4rem 1.2rem;
    background-color: #1c455f;
    color: #fff;
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 600;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.read-more-btn:hover {
    background-color: #103044;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1230px) and (max-width: 1399px){
    .read-more-section {
        padding: 3.5rem 8%;
    }
    .read-more-title {
        font-size: calc(1.8rem + 0.5vw);
        margin-bottom: 1.3rem;
    }
    .read-more-content p {
        font-size: calc(0.6rem + 0.5vw);
        margin-bottom: 0.9rem;
    }
    .extra-content {
        margin-top: 0.9rem;
    }
    .read-more-btn {
        margin-top: 1.1rem;
        padding: 0.45rem 1.2rem;
        font-size: calc(0.6rem + 0.5vw);
    }
}
/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .read-more-section {
        padding: 4rem 8%;
    }
    .read-more-title {
        font-size: calc(1.9rem + 0.5vw);
        margin-bottom: 1.35rem;
    }
    .read-more-content p {
        font-size: calc(0.65rem + 0.5vw);
        margin-bottom: 0.95rem;
    }
    .extra-content {
        margin-top: 0.95rem;
    }
    .read-more-btn {
        margin-top: 1.2rem;
        padding: 0.45rem 1.2rem;
        font-size: calc(0.65rem + 0.5vw);
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .read-more-section {
        padding: 1rem 1rem;
    }
    .read-more-title {
        font-size: calc(1rem + 0.5vw);
        margin-bottom: 0.7rem;
    }
    .read-more-content p {
        font-size: calc(0.7rem + 0.5vw);
        margin-bottom: 0.8rem;
    }
    .extra-content.show {
        max-height: 200vh;
    }
    .read-more-btn {
        margin-top: 0.7rem;
        padding: 0.3rem 1.2rem;
        font-size: calc(0.65rem + 0.5vw);
    }
}
/* Products Read More End */