.custommersHomepage{
    overflow-x: hidden;
}

.crmTeamAdvantageSection{
    background-color: var(--white-smoke);
    padding: 80px;
}
.crmTeamHeroSection{
    margin: 0;
    position: relative;
    background: white;
    height: auto;
}
.crmTeamHeroSection .heroContainer{
    padding-top: 30px;
    padding-bottom: 30px;
}
.crmTeamHeroSection .heroSubContainer{
    padding-bottom: 0;
}
.crmTeamHeroSection .heroImageSubBox{
    height: fit-content;
}
.crmTeamHeroSection::before{
    content: '';
    width: 20%;
    height: 40%;
    border-radius: 50%;
    position: absolute;
    bottom: -90px;
    left: -80px;
    background-color: var(--color-primary);
    filter: blur(140px);
}
.crmTeamHeroSection::after{
    content: '';
    width: 20%;
    height: 40%;
    border-radius: 50%;
    position: absolute;
    top: -35px;
    right: 0px;
    background-color: var(--color-secondary);
    filter: blur(140px);
}
.crmHeroTitle{
    color: var(--text-primary);
}
.crmHeroDescription{
    color: var(--text-secondary);
}
.ctaButtons .crmPrimaryBtn{
    background-color: var(--color-primary);
    color: white;
}
.ctaButtons .crmGhostBtn{
    border-color: var(--text-secondary);
    color: var(--text-secondary);
}
.ctaButtons .crmGhostBtn:hover{
    border-color: white;
}

.btGrid{
    display: grid;
    grid-gap: 10px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
}
.btGridBox{
    display: flex;
    flex-direction: column;
    padding: 20px;
    min-height: 100px;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--color-primary-300), var(--color-secondary-300));
    /* background-color: rgba(255, 255, 255, 0.174) !important; */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 1); */
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform var(--transDuration) cubic-bezier(0.25, 0.1, 0.25, 1);
}
.homeBentoProblem .btGridBox:hover,.whatProblemsSection .btGridBox:hover{
    transform: scale(1.02);
    box-shadow: 0 0 20px #0860e287;
}
.crmTeamAdvantageSection {
    row-gap: 0;
}
.crmTeamAdvantageSection .ftTitle h3{
    font-size: 30px;
    font-weight: 600;
}
.crmTeamAdvantageSection .ftTitle::after{
    display: none;
}
.crmTeamAdvantageSection .solPointBox span{
    font-size: 20px;
}
.sectionTitle::after{
    display: none;
}
.sectionTitle h2{
    font-size: 48px;
    font-weight: 600;
}
.whatProblemsSection h2{
    color: #fff;
}
.whatProblemsSection{
    background: linear-gradient(45deg, #170018, #0051cf);
}
.btContentBox{
    display: flex;
    flex-direction: column;
    gap: var(--12px);
    flex: 1;
    justify-content: center;
}
.btTitle{
    font-size: var(--26px);
    color: #fff;
    font-weight: 600;
}
.btDesc{
    font-size: var(--16px);
    color: #fff;
    font-weight: 300;
}
.btGridBox .btImageBox{
    width: 100%;
    height: 60%;
    display: none;
}
.numBox{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    left: 20px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--16px);
    border-radius: 50%;
    color: #fff;
}

.btGrid1 .btImageBox , .btGrid7 .btImageBox {
    width: 45%;
    height: 100%;
}
.btGridBox img{
    width: 100%;
    height: -webkit-fill-available;
}
.btGrid1 img ,.btGrid7 img{
    width: auto;
    height: 100%;
}
.btGrid1, .btGrid7{
    flex-direction: row;
}
.btGrid5, .btGrid6{
    background: linear-gradient(45deg, #00000036, #25003752);
}
.landingHome .btContentBox{
    align-items: center;
}






/* Large screens: Bento-style layout */
@media (max-width: 990px){
    .first-nav-menu{
        background-color: #fff !important;
        box-shadow: 0 4px 2px -2px rgb(0 0 0 / 10%) !important;
        padding: 0 var(--20px) !important;
        height: unset;
        min-height: 70px;
    }
    .first-nav-menu .navbar-collapse.show{
        display: flex;
        flex-direction: column;
    }
    .first-nav-menu .navbar-collapse ul:nth-child(2){
        margin: 0 !important;
    }
    .first-nav-menu.nav-menu ul{
        row-gap: var(--20px);
        width: 100%;
        padding: 20px 0;
    }
    .first-nav-menu  .dropdown-toggle{
        position: relative;
    }
    .first-nav-menu  .dropdown-menu{
        position: absolute;
    }
}
@media (min-width: 768px) {
    .btGrid {
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(3, 300px);
    }
    .landingHome .btGrid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(1, 280px);
    }
  
    /* Custom sizes for grid items to create the bento effect */
    .btGrid1 {
      grid-column: span 8;
      grid-row: span 1;
    }
    
    .btGrid2{
      grid-column: span 4;
      grid-row: span 1;
    }
    
    .landingHome .btGrid1, .landingHome .btGrid2{
        grid-column: span 1;
        grid-row: span 1;
    }
    .btGrid3 {
      grid-column: span 4;
      grid-row: span 1;
    }
  
    .btGrid4 {
      grid-column: span 4;
      grid-row: span 1;
    }
  
    .btGrid5 {
      grid-column: span 4;
      grid-row: span 1;
    }
  
    .btGrid6 {
      grid-column: span 4;
      grid-row: span 1;
    }
    .btGrid7 {
      grid-column: span 8;
      grid-row: span 1;
    }
  }
  
  /* Mobile screens: Simplified layout */
  @media (max-width: 767px) {
    .btGrid {
      grid-template-columns: repeat(2, 1fr);
    }
    .landingHome .btGrid{
        grid-template-columns: repeat(1, 1fr);
    }
    .btGridBox {
      grid-column: span 1;
      grid-row: auto;
      height: 400px;
    }
    .landingHome .btGridBox{
      height: 200px;
    }
  }
  /* Mobile screens: Simplified layout */
  @media (max-width: 430px) {
    .crmTeamAdvantageSection .ftTitle h3 {
        font-size: var(--20px);
        font-weight: 500;
    }
    .landingHome .heroSubContainer{
        padding-top: var(--30px);
    }
    .solutionsUse .ftImgBox img {
        padding-top: 60px;
    }
    .featuresSection .ftDetailsCotainer{
        row-gap: var(--12px);
    }
    .landingHome .homeBentoProblem .sectionTitle p{
        font-size: var(--12px);
        font-weight: 300 !important;
    }
    .landingHome .homeBentoProblem {
        row-gap: var(--24px);
    }
    .btTitle{
        font-size: var(--20px);
    }
    .btDesc{
        font-size: var(--14px);
    }
    .landingHome .ftDetailsCotainer{
        padding: 0;
    }
    .landingHome .heroImageSubBox {
        left: 0;
    }
    .btGrid {
        grid-template-columns: repeat(1, 1fr);
      }
    .btGridBox {
        height: 240px;
    }
  }

