/**
 * Theme Name:     Biswas Insurance
 * Author:         Matrix MediaTeam
 * Template:       hello-elementor
 * Text Domain:	   biswas-insurance
 * Description:    Biswas Insurance is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 * Theme URI:      #
 * Author URI:     https://www.matrixnmedia.com/
 * Version:        1.0
 */


/*header css start*/
.fixedheader {
    width: 100%;
    position: fixed;
    top: 0;
    background: var(--e-global-color-6bbba05);
}

/*header css end*/

/*news css start*/
.datetag {
    position: relative !important;
    margin-top: -40px;
    width: fit-content;
}

.datetag::before {
    content: '';
    position: absolute;
    height: 52px;
    width: 52px;
    background: url('https://yourcloudnetwork.net/projects/biswas-insurance/wp-content/uploads/2025/10/OverlayShadow.png') no-repeat;
    left: -32px;
    top: -2px;
}

.datetag::after {
    content: '';
    position: absolute;
    height: 52px;
    width: 52px;
    background: url('https://yourcloudnetwork.net/projects/biswas-insurance/wp-content/uploads/2025/10/OverlayRightShadow.png') no-repeat;
    left: auto;
    right: -51px;
    top: -2px;
}

/*news css end*/

/*testimonial css start*/

.testimonial-slider {
    max-width: 100%;
    margin: auto;
}

.testimonial {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin: 10px;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.testimonial-upwrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    height: 60px;
    padding-bottom: 20px;
}

.user-details {
    text-align: left;
    color: #000;
}

.testimonial-img {
    width: 20%;
}

.user-img {
    width: 60px;
    height: 60px !important;
    border-radius: 100px !important;
    object-fit: cover;

}

.stars {
    color: #f5a623;
    font-size: 20px;
}

.user-talk {
    text-align: left;
    font-size: 16px;
}

.testimonial-dwnwrapper {
    border-top: 1px solid #F3F5FC;
    padding-top: 24px;
}

/*testimonial css end*/

/*getquote css start*/

.getquote-wrapper {
    position: relative;
}

.getquote-wrapper label {
    font-size: 20px;
    color: var(--e-global-color-primary);
    font-weight: 500;
    line-height: 120%;
    width: 100%;
}

.getquote-input {
    height: 50px;
    border-radius: 5px !important;
    border: 1px solid #fff !important;
    margin-top: 14px;
     margin-bottom: 5px;
      font-size: 16px; font-weight:400; color: #75759d;
}

.getquote-input::placeholder {
    font-size: 14px;
    color: #75759d;
}

.getquote-textarea {
    border-radius: 5px !important;
    border: 1px solid #fff !important;
    margin-top: 14px;
    resize: none;
     margin-bottom: 5px;
      font-size: 16px; font-weight:400; color: #75759d;
}
.getquote-wrapper select {
     margin-top: 14px;
     border: 0;
     
}
.getquote-wrapper .quote-select{ height: 50px; font-size: 16px; font-weight:400; color: #75759d;}
.getquote-wrapper select option{ font-size: 16px; font-weight:400; color: #75759d;}
.getquote-submit {
    cursor: pointer;
    background-color: var(--e-global-color-cd0f6a1);
    font-family: "Poppins", Sans-serif;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 16px;
    color: var(--e-global-color-primary);
    border-radius: 999px 0px 999px 0px;
    padding: 21px 60px 21px 40px !important;
    /* Arrow using background image */
    background-image: url('https://yourcloudnetwork.net/projects/biswas-insurance/wp-content/uploads/2025/10/button-arrow.svg');
    background-repeat: no-repeat;
    background-position: right 25px center;
    /* Adjust position as needed */
    padding-right: 40px;
    /* Add space for the arrow */
    border: 1px solid var(--e-global-color-cd0f6a1) !important;
}

.getquote-submit:hover {
    border: 1px solid var(--e-global-color-primary) !important;
}

/*getquote css end*/

/*our service css start*/
.service-wrapper {
    background: #F6F6F6;
    width: 100%;
}

/* Container / slider wrapper */
.service-slider {
    width: 100%;
    margin: 0px auto;
    /* margin-left: -10px;
    margin-right: -10px; */
}

/* Each slide */
.service-slide {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    background: #fff;
    padding: 10px;
    margin: 0 10px;
    box-sizing: border-box;
    padding-bottom: 135px;
}

/* Slide image wrapper */
.slide-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image */
.slide-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

/* Zoom effect on hover */
.service-slide:hover .slide-image img {
    transform: scale(1.05);
}

/* Yellow overlay inside image only */
.slide-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(244, 149, 33, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Show overlay only on hover */
.service-slide:hover .slide-image::before {
    opacity: 1;
}

/* Slide content always visible */
.slide-content {
    position: absolute;
    bottom: 0px;
    left: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 135px;
    margin: 0px 10px;
    background: #fff;
}

/* Title always visible */
.slide-title {
    color: #000;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.slide-title-text {
    width: 80%;
}

/* Arrow (hidden by default, shown on hover) */
.arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    width: 60px;
    height: 60px;
    background: var(--e-global-color-cd0f6a1);
    color: #000000;
    border-radius: 50%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show arrow on hover */
.service-slide:hover .arrow {
    opacity: 1;
}

/* Slick dots customization to look like progress bars */
.slick-dots {
    display: flex !important;
    justify-content: center;
    margin: 0px auto !important;
    margin-top: 20px !important;
    width: 80% !important;
}

.slick-dots li {
    width: 25% !important;
    height: 2px !important;
    background-color: #ddd;
    margin: 0px;
    border-radius: 2px;
    transition: background-color 0.3s;
    list-style-type: none !important;
}

.slick-dots li.slick-active {
    background-color: var(--e-global-color-cd0f6a1);
    height: 6px !important;
    margin-top: -2px !important;
}

.slick-dots button {
    display: none;
}


.get-a-quote-slide .slide-image {
    position: relative;
}

.quote-overlay-text {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    width: 100%;
    height: fit-content;
    text-align: center;
    padding: 0px 10%;
}

.get-a-quote-slide .slide-image:hover .quote-overlay-text {
    opacity: 1;
}

/* Popup Modal Styles */
.modal-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: var(--e-global-color-e0b0e48);
    margin: 10% auto;
    padding: 60px 40px;
    border-radius: 100px 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/*our service css end*/


/*banner css start*/

.hero-section.bannerpart {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.bannerpart .swiper {
    height: 100%;
}

.bannerpart .swiper-slide {
    position: relative;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
    overflow: hidden;
}

.bannerpart .swiper-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(102, 102, 102, 0));
}

.bannerpart .content-box {
    background: #fff;
    padding: 40px 90px 40px 390px;
    border-radius: 999px 0px 999px 0px;
    width: auto;
    height: 448px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-left: -350px;
    display: flex;
    align-items: center;
    position: relative;
}

.bannerpart .content-box-wrapper {
    max-width: 483px;
}

.bannerpart .btn-learn {
    display: inline-block;
    background: var(--e-global-color-cd0f6a1);
    color: #000;
    text-decoration: none;
    padding: 21px 40px;
    border-radius: 999px 0px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.bannerpart .btn-learn:hover {
    background: #000;
    color: #fff;
}

/* Swiper pagination */
.bannerpart .swiper-pagination {
    bottom: 50px !important;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin: 0px 10%;
}

.bannerpart .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    background-color: #BCC3C8;
    border: 1px solid #ffffff;
    border-radius: 100%;
    opacity: 1;
    transition: 0.3s;
}

.bannerpart .swiper-pagination-bullet-active {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 2px solid #ffffff;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transform: scale(1.05);
}


/* Scroll Text */
.bannerpart .scroll-text {
    position: absolute;
    bottom: 75px;
    right: 10%;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 2;
}

/*banner css end*/

/*mobmenu css start*/
#mobmenu-wrapper .elementor-nav-menu--main .elementor-nav-menu ul {
    position: relative;
    margin: 0px !important;
}

#mobmenu-wrapper .elementor-nav-menu--main .elementor-nav-menu ul li a {
    padding: 10px 0px;
}

/*mobmenu css end*/


/*team css start*/

.team-slider {
    margin: 0 auto;
}

.team-card {
    background: #fff;
    border-radius: 25px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.team-card img {
    width: 100%;
    height: auto !important;
    max-height: 480px;
    object-fit: cover;
    border-radius: 25px !important;
}

.team-card h5 {
    margin: 5px 0;
    font-weight: 400 !important;
}

.team-slider .slick-slide {
    padding: 0px;
    margin: 0px 17px;
    border: 1px solid #DCDCDC;
}

.team-details {
    padding: 40px 20px;
    text-align: left;
}

/*team css end*/


/*faq css start*/
.faqaccordian .e-n-accordion-item {
    border: 1px solid #B2B2B2;
    border-radius: 15px;
    padding: 40px;
}

.faqaccordian.elementor-widget-n-accordion .e-n-accordion-item-title {
    justify-content: space-between !important;
}


.accordion {
    margin: auto;
}

.accordion-item {
    border: 1px solid #B2B2B2;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 40px;
}

.accordion-header {
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-body {
    display: none;
    color: #555;
    font-size: 16px;
}

.accordion-header h4 {
    font-size: 24px !important;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active .icon {
    transform: rotate(180deg);
}

.icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/*faq css end*/

/*contact page css start*/
.contacttab.elementor-widget-n-tabs .e-n-tab-title-text {
    font-size: 36px;
}

.contacttab .e-n-tabs>.e-n-tabs-heading .e-n-tab-title[aria-selected=true] {
    background-color: transparent !important;
    border-bottom: 2px solid var(--n-tabs-title-color-active);
    padding: 5px;
}

.contacttab .e-n-tabs-heading .e-n-tab-title[aria-selected=false]:hover {
    background-color: transparent !important;
    border-bottom: 2px solid transparent;
    padding: 5px;
}

.contacttab.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false] {
    background-color: initial !important;
}


.contactmap.elementor-widget-google_maps iframe {
    height: 100vh;
}

/*contact page css end*/


/*service details css start*/
.service-details-wrapper {
    position: relative;
}

.service-details {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}

.service-details:nth-child(2n) {
    flex-direction: row-reverse;
}

.servicepart {
    max-width: 50%;
    padding: 20px;
}

.servicepart img {
    border-radius: 15px !important;
}

.servicepart h5 {
    font-family: var(--e-global-typography-secondary-font-family), Sans-serif !important;
    font-weight: var(--e-global-typography-secondary-font-weight) !important;
}

.servicedtls-btn {
    margin-top: 20px;
}

.servicedtls-btn .elementor-button-content-wrapper {
    flex-direction: row-reverse;
    gap: 15px;
}

.servicedtls-btn:hover {
    border: 1px solid #000;
}

/*service details css end*/

/*.............26-11-2025 form starts...............*/
.quoterow{ display: flex; gap:20px; justify-content: space-between; flex-wrap: wrap; margin: 0 0 10px 0;}
.quotecol50{ width: 48%;}
.quotecol100{ width: 100%; position: relative;}
.fileupload_quote{ opacity: 0; position: absolute; left:0; top:0;}
.fileupload_quotebtn{ background-color: #1c493b !important; color:#fff !important; width:200px !important; height:60px !important; line-height: 60px !important; font-size: 20px !important; font-weight: 400 !important; border-radius:25px !important; padding: 0 !important; border:0 !important;}
.quotecol100 .wpcf7-list-item.first.last{ padding-left: 0 !important;}
.cf7-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; bottom:0; right:0;
  margin: auto;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.cf7-modal-content {
  background: #fff;
  padding: 25px;
  width:36% ;
  border-radius: 8px;
  position: relative;
}
.cf7-modal-content h3 { color: #000 !important; font-family: "Alike", Sans-serif; font-size: 30px;}
.cf7-modal-content p { color: #000 !important;}
.cf7-close {
  position: absolute;
  right:10px;
  top:10px;
  cursor: pointer;
  font-size: 22px;
}
.menutop_header .sub-menu{border-radius: 40px 0px 40px 0px; padding: 15px 0 !important ; width: 320px !important;}
/* .menutop_header .sub-menu:hover{border-radius: 100px 0px 100px 0px; } */
.menutop_header .sub-menu li a{ padding: 8px 15px !important; white-space: normal;}
.innerbanner_prd{ background-repeat: no-repeat !important; background-size: cover !important;}
.careerpopuptxt li, .careerpopuptxt p, #popupContentArea .elementor-icon-list-text{ color: #828284 !important;}
 #popupContentArea .elementor-icon-list-text{ color: #828284 !important; position: relative; padding-left: 20px;}
  #popupContentArea .elementor-icon-list-text:before{ background-color: #828284; width: 8px; height: 8px; border-radius: 100%; position: absolute; left:0; top:11px; content:"" ;}
 #popupContentArea .elementor-icon-list-items{ padding-bottom: 20px !important;}
/*..................26-11-2025 form ends..................*/


/*............................/ responsive css start /............................*/

@media (max-width: 1440px) {
    .bannerpart .content-box {
        height: auto;
        padding: 40px 90px 40px 200px;
        border-radius: 900px 0px 900px 0px;
        margin-left: -220px;
    }

    .bannerpart .swiper-pagination-bullet-active {
        height: 80px;
        width: 80px;
    }


    .modal-content {
        margin: 2% auto;
        padding: 40px;
    }

    .getquote-wrapper label {
        font-size: 14px;
    }

    .getquote-input,
    .getquote-textarea {
        font-size: 14px !important;
       
    }

    .team-slider .slick-slide {
        padding: 0px;
        margin: 0px 10px;
    }

    .faqaccordian .e-n-accordion-item {
        padding: 20px;
    }

    .contacttab.elementor-widget-n-tabs .e-n-tab-title-text {
        font-size: 20px;
    }

/*..................26-11-2025 form starts..................*/
    .quoterow{  gap:15px; 
    }
    .fileupload_quotebtn{ height:45px !important; line-height: 45px !important; font-size: 16px !important; }
    /*..................26-11-2025 form ends..................*/
}

@media (max-width: 1024px) {
    .team-details {
        padding: 20px 10px;
    }
    .cf7-modal-content {
  
  width:50% ;
    }
    .quoterow{  gap:10px; 
    }
}

@media (max-width: 991px) {
    .bannerpart .nav ul {
        display: none;
    }

    .bannerpart .content-box {
        padding: 40px 100px;
        max-width: 90%;
        border-radius: 200px 0px;
        margin-left: 0px;
    }

    .hero-section.bannerpart {
        height: 80vh;
    }

    .service-details {
        flex-direction: column;
        padding-bottom: 0px;
    }

    .servicepart {
        max-width: 100%;
    }

    .service-details:nth-child(2n) {
        flex-direction: column;
    }
}

@media(max-width: 768px) {
    .bannerpart .content-box {
        padding: 20px 40px;
        border-radius: 20px;
    }

    .bannerpart .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }

    .bannerpart .swiper-pagination-bullet-active {
        width: 50px;
        height: 50px;
    }

    .bannerpart .scroll-text {
        bottom: 20px;
    }

    .bannerpart .btn-learn {
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 400;
    }

    /*..................26-11-2025 form starts..................*/
.quotecol50{ width: 100%;}
.fileupload_quotebtn{  width:200px !important; height:40px !important; line-height: 40px !important; font-size: 14px !important; }
.cf7-modal-content {
  
  width:95% ;
}
.cf7-modal-content h3 { color: #000; font-family: "Alike", Sans-serif; font-size: 25px;}
    /*..................26-11-2025 form ends..................*/
}

@media(max-width: 600px) {
    .bannerpart .swiper-slide {
        align-items: end;
        padding-bottom: 30%;
    }

    .bannerpart .content-box {
        padding: 10px 20px;
    }

    .bannerpart .swiper-pagination {
        justify-content: center;
        margin: 0%;
    }

    .footermenu .elementor-nav-menu a,
    .footermenu .elementor-nav-menu li {
        text-align: center;
        justify-content: center;
    }
    .serviceloopcont .elementor-loop-container{  grid-row-gap: var(--grid-row-gap, 0px) !important;}
}

/*............................/ responsive css end /................................*/
