* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: #fff;
  color: #1c1c1c;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TOP BAR */
.top-bar {
  background: #000;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
}
.top-bar a{
    color: #F1A03A;
    margin-left: 5px;
}
/* HEADER */
.header {
  background: #4f45e4;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.logo img{
    height: 20px;
}
.logo span {
  color: #ff7a00;
}
.nav a {
  margin: 0 14px;
  text-decoration: none;
  color: #ffffff;
}
.btn-login {
  background: #ff7a00;
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
}

/* HERO */
.hero {
  background: linear-gradient(#f8fbff, #fff);
  padding: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
.hero h1 {
  font-size: 48px;
}
.hero h1 span {
  color: #2563eb;
}
.hero p {
  margin: 20px 0;
  max-width: 500px;
}
.ratings {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.ratings div{
    display: flex;
    align-items: center;
    gap: 10px;
}
.ratings div span{
    font-size: 18px;
}
.ratings div span b{
    margin-top: 5px;
    display: flex;
}
.hero-right img {
  width: 100%;
}


.platformRow{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.platformColumn {
    display: flex;
    align-items: center;
    flex: 0 0 23%;
    border-radius: 8px;
    border: 1px solid var(--grey-scale-grey-80, #4D4D4D);
    background: #FFF;
    padding: 24px;
    gap: 24px;
}
.plText h3{
    margin-bottom: 0;
    font-family: Lato;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    color: #1a1a1a;
}
.plText p{
    margin-bottom: 0;
    font-size: 20px;
    color: #1A1A1A;
}

.icon img{
        border-radius: 50%;
    filter: drop-shadow(0px 1px 10px rgba(9, 30, 66, 0.10));
}



@media screen and (max-width: 768px) {
    .platformColumn{
        
        flex:0 0 45%;
        gap:5px;
        padding:10px;
    }
    .platformRow{
        gap:16px;
    }
    
    .plText h3{
        font-size:16px;
    }
    
    .plText p{
    font-size: 13px!important;
    line-height: 16px;
    }
    .icon img{
        width:40px;
    }

}


/* BUTTON */
.btn-primary {
  background: #ff7a00;
  color: #fff;
  padding: 12px 22px;
  border-radius: 24px;
  text-decoration: none;
  display: inline-block;
}

/* STATS */
.stats {
  background: #e9f3ff;
  padding: 40px 0;
}
.stats-grid h2{
    text-align: center;
    margin: 25px 0;
    font-size: 36px;
}
.stat-card {
  background: #fff;
  padding: 24px;
  text-align: center;
  border-radius: 10px;
}


.tabCont{
    position: relative;
    max-width: 530px;
    margin: auto;
}
.bgimage3{
    position: absolute;
    top: -100px;
    right: -75px;
}
.tabCont ul{
    display: flex;
    align-items: center;
    list-style: none;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 24px 6px #7872ddad, 0 1px #fff;
    flex-direction: column;
    margin: 0;
    position: relative;
    z-index: 1;
}

.tabCont ul li{
    padding: 15px;
    display: flex;
    gap: 10px;
    width: 100%;
    border: 1px solid #E6E6E6;
    font-weight: 600;
    color: #1a1a1a;
    font-family: Lato;
    min-width: 350px;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}
.section.light {
  background: #f9fbff;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.reverse {
  direction: rtl;
}
.reverse > * {
  direction: ltr;
}
.subtext {
  color: #000000 !important;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 12px;
}

.headingBox h2{
    font-size: 36px;
    margin-bottom: 10px;
}
.headingBox p{
        font-size: 18px;
    color: #545454;
    margin-bottom: 15px;
    line-height: 26px;
}
/* INFO CARD */


.agentHeading{
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.agentHeading h2{
    font-size: 36px;
}

.agentHeading img{
    width: 200px;
}

/* AGENTS */
.agents {
  background: #eef5ff;
  padding: 80px 0;
  text-align: center;
}
.agent-grid {
  display: flex;
  gap: 14px;
  margin: 30px 0;
  width: 100%;
}
.agent img{
    width: 100%;
}

/* FOOTER */
.footer {
  background: #4f45e4;
  color: #fff;
  padding: 60px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo {
  color: #ff6b35;
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 10px 0;
}
.footer h4 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 16px;
}
.footer a {
  display: block;
  color: #c7d2fe;
  text-decoration: none;
  margin: 6px 0;
}
.footer a.contact-link {
  color: #ff6b35;
}
.footer-regions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-regions h4 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 16px;
}
.footer-regions p {
  color: #c7d2fe;
  line-height: 1.6;
  margin: 0;
}
.socialLink {
  margin-top: 20px;
}
.socialLink ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.socialLink a {
  display: inline-block;
  width: 32px;
  height: 32px;
}
.socialLink svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}


.testimonialBox{
    display: flex;
    gap: 50px;
    margin-top: 30px;
}
.testiCont{
    max-width: 50%;
}
.userList{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.testibox{
    border-radius: 17.424px;
    background: var(--Grey-Scale-White, #FFF);
    box-shadow: 0px 4px 11px 0px rgba(9, 30, 66, 0.12);
    padding: 32px;
    display: none;
    transition: all 0.8s;
}
.testibox p{
   font-family: inter;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: left;
}
.showMore{
    text-align: center;
    margin-top: 44px;
}
.showMore a{
    font-family: "Lato", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px 6px 6px 6px;
    text-decoration: none !important;
    background: #FB9217;
    padding: 12px 20px;
    color: #ffffff;
    margin: auto'
}
.testibox a{
    color: #FB8317;
font-family: Lato;
font-size: 24px;
font-style: normal;
font-weight: 700;
}

.testibox::before{
    content: "";
    position: absolute;
    /*font-family: "Font Awesome 5 Free";*/
    /*font-size: 45px;*/
    top: -20px;
    width: 50px;
    height: 50px;
    /*color: #F1A03A;*/
    background-image: url('https://dwlrs858nh2or.cloudfront.net/wp-content/uploads/2024/02/01131834/fontisto_quote-a-right-2.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.userList ul{
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}
.userList ul li{
    display: flex;
    padding: 15px;
    cursor: pointer;
    width: 100%;
    gap: 20px;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: all 0.8s;
}

.listActive{
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 11px 0px rgba(9, 30, 66, 0.12);
    opacity: 1 !important;
}
.userData h6{
    margin-bottom: 0;
    font-size: 20px;
    text-align: left;
}
.userData p{
    margin-bottom: 0;
    font-size: 16px;
    text-align: left;
}
.activeTesti{
    position: relative;
   display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.navDot{
    display: none;
}
.navDot ul{
   list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}
.navDot ul li span{
        width: 15px;
    height: 15px;
    background: #ffffff;
    border-radius: 50%;
    display: block;
    cursor: pointer;
}
.userList ul li img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

li.active span{
    background: #3259e0 !important;
}


@media screen and (max-width: 480px) {
    
    .testimonialBox{
        flex-wrap:wrap;
        flex-direction:column-reverse;
        gap:16px;
    }
    
    .testiCont{
        width:100%;
        max-width: 100%;
    }
        
    .userList{
        width:100%;
        padding:0;
    }  
    
    /*.userList ul{*/
    /*    display:inline-flex;*/
    /*    overflow-y:scroll;*/
    /*}*/
    
    .testibox{
        transform: translateY(20px);
        animation: fadeIns 0.8s ease 1 forwards;
    }
    
    .userList ul li{
        min-width:100%;
        display:none;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeIns 0.8s ease 1 forwards;
    }
    .userData p {
        margin-bottom: 0;
        font-size: 14px !important;
    }
    .testibox p{
        font-size:16px !important;
    }
    
    .testibox a{
        font-size:16px;
    }
    
    .listActive{
        display:flex !important;
    }
    
    .userData h6{
    margin-bottom: 0;
    font-size: 16px;
}
.userData p{
    margin-bottom: 0;
    font-size: 14px;
}
  .navDot{
      display:block !important;
  }  
    
}