* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: #fff;
  color: #1c1c1c;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TOP BAR */
.top-bar {
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.top-bar a{
    color: #F1A03A;
    margin-left: 5px;
}
/* HEADER */
.header {
  background: #4164DD;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.logo img{
    height: 26px;
}
.logo span {
  color: #ff7a00;
}
.nav {
  display: flex;
  align-items: center;
}
.nav a {
  margin: 0 14px;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}
.btn-login {
  background: #ff7a00;
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

/* HERO */
.hero {
  background: linear-gradient(#f8fbff, #fff);
  padding: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.hero-left {
  padding: 20px 0;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.2;
}
.hero h1 span {
  color: #4164DD;
}
.hero p {
  margin: 20px 0;
  max-width: 500px;
  font-size: 18px;
  line-height: 1.6;
}
.ratings {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ratings div{
    display: flex;
    align-items: center;
    gap: 10px;
}
.ratings div img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.ratings div span{
    font-size: 18px;
    line-height: 1.4;
}
.ratings div span b{
    margin-top: 5px;
    display: flex;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-right img {
  width: 100%;
  max-width: 100%;
  height: auto;
}


.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));
}



/* RESPONSIVE STYLES */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .two-col {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .reverse {
    direction: ltr;
  }
  
  .agent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    display: flex;
    flex-wrap: wrap;
  }
  
  .footer-regions {
      display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .testimonialBox {
    flex-direction: column;
  }
  
  .testiCont {
    max-width: 100%;
  }
  
  .userList {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .top-bar {
    font-size: 12px;
    padding: 8px 15px;
  }
  
  .header-inner {
    flex-wrap: wrap;
  }
  
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #4164DD;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav a {
    margin: 10px 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    text-align: left;
  }
  
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
    margin-right: 10px;
  }
  
  .btn-login {
    margin-left: 0;
  }
  
  .header-inner {
    gap: 10px;
  }
  
  .hero {
    padding: 30px 0;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .ratings {
    gap: 15px;
  }
  
  .ratings div span {
    font-size: 14px;
  }
  
  .ratings div img {
    width: 30px;
    height: 30px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .headingBox h2 {
    font-size: 28px;
  }
  
  .headingBox p {
    font-size: 16px;
  }
  
  .stats-grid h2 {
    font-size: 28px;
  }
  
  .agentHeading h2 {
    font-size: 28px;
  }
  
  .agentHeading img {
    width: 150px;
  }
  
  .agent-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .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;
  }
  
  .tabCont {
    max-width: 100%;
  }
  
  .tabCont ul li {
    min-width: auto;
    font-size: 14px;
    padding: 12px;
  }
  
  .footer-grid {
    display: flex;
    flex-wrap: wrap;
  }
  
  .testimonialBox {
    flex-direction: column;
    gap: 30px;
  }
  
  .testiCont {
    max-width: 100%;
  }
  
  .userList {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .top-bar {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .top-bar span {
    display: block;
    margin-bottom: 5px;
  }
  
  .logo img {
    height: 22px;
  }
  
  .hero h1 {
    font-size: 24px;
  }
  
  .hero p {
    font-size: 14px;
    margin: 15px 0;
  }
  
  .ratings div {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .ratings div span {
    font-size: 12px;
  }
  
  .btn-primary {
    padding: 10px 18px;
    font-size: 14px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .headingBox h2 {
    font-size: 24px;
  }
  
  .headingBox p {
    font-size: 14px;
    line-height: 22px;
  }
  
  .stats-grid h2 {
    font-size: 22px;
    margin: 15px 0;
  }
  
  .stats {
    padding: 30px 0;
  }
  
  .platformColumn {
    flex: 0 0 100%;
    padding: 15px;
  }
  
  .platformRow {
    gap: 12px;
  }
  
  .agentHeading h2 {
    font-size: 22px;
  }
  
  .agentHeading img {
    width: 120px;
  }
  
  .agents {
    padding: 40px 0;
  }
  
  .footer {
    padding: 40px 0;
  }
  
  .footer-grid {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  
  .footer-logo {
    font-size: 24px;
  }
  
  .footer h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .footer a {
    font-size: 14px;
    margin: 5px 0;
  }
  
  .footer-regions {
    padding-top: 30px;
    gap: 25px;
  }
  
  .footer-regions h4 {
    font-size: 14px;
  }
  
  .footer-regions p {
    font-size: 13px;
  }
  
  .testimonialBox{
    flex-wrap:wrap;
    flex-direction:column-reverse;
    gap:16px;
  }
  
  .testiCont{
    width:100%;
    max-width: 100%;
  }
    
  .userList{
    width:100%;
    padding:0;
  }  
  
  .testibox{
    transform: translateY(20px);
    animation: fadeIns 0.8s ease 1 forwards;
    padding: 20px;
  }
  
  .userList ul li{
    min-width:100%;
    display:none;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIns 0.8s ease 1 forwards;
    padding: 12px;
  }
  
  .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;
  }
  
  .tabCont ul li {
    font-size: 13px;
    padding: 10px;
  }
  
  .tabCont ul li img {
    width: 20px;
    height: 20px;
  }
}


/* 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;
}
.tabCont ul li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}
.section.light {
  background: #f9fbff;
}
.two-col {
  display: flex;
  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;
    line-height: 1.3;
}
.headingBox p{
        font-size: 18px;
    color: #545454;
    margin-bottom: 15px;
    line-height: 26px;
}
.info-card {
  width: 100%;
}
/* 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 {
  width: 100%;
}
.agent img{
    width: 100%;
    height: auto;
    display: block;
}

/* FOOTER */
.footer {
  background: #4164DD;
  color: #fff;
  padding: 60px 0;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  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: #ffffff;
  text-decoration: none;
  margin: 6px 0;
}
.footer a.contact-link {
  color: #ffffff;
}
.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;
}

@keyframes fadeIns {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@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;
  }  
    
}