html,
body {
  margin: 0;
  padding: 0;
  font-family: "onest", sans-serif;
}

.gcc-header {
  height: 60px;
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
}

.gcc-header__container {
  /* max-width: 1200px; */
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gcc-header__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.gcc-header__logo {
  height: 48px;
  width: auto;
  display: block;
}

.gcc-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
}

.gcc-header__nav-link {
  color: #1c1c1e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
}

.gcc-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid #d7dce5;
  border-radius: 999px;
  color: #1c1c1e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.gcc-header__phone-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gcc-header__phone-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  display: block;
}

.container{
  max-width: 1440px;
}



.hero-section {
  background: #ffffff;
  padding: 48px 0 48px 24px;
  overflow: hidden;
}

.hero-container {
  /* max-width: 1200px; */
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.hero-content {
  flex: 1;
  max-width: 750px;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  color: #020617;
  margin-bottom: 8px;
}

.hero-content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1C1C1E;
  margin-bottom: 32px;
  
}

.hero-stats {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.stat {
  padding: 0 24px;
  position: relative;
}

.stat:first-child {
  padding-left: 0;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 1px;
  height: 52px;
  background: #e2e8f0;
}

.stat h3 {
  font-size: 32px;
  font-weight: 600;
  color: #020617;
  margin-bottom: 6px;
}

.stat span {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #475569;
}

.hero-buttons {
  display: flex;
  gap: 24px;
}

.btn-outline,
.btn-primary {
  padding: 16px 46px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  
}

.btn-outline {
  border: 1px solid #E22F28;
  color: #ef4444;
  background: #fff;
}

.btn-primary {
  background: #E22F28;
  color: #fff;
}


.hero-image {
  flex: 0 0 413px;
  margin-right: -24px; /* push image to right edge */
}

.hero-image img {
  display: block;
  width: 413px;
  height: 400px;
  /* object-fit: cover; */

  /* border-radius: 76.92px 0 0 0;

  border-top: 36px solid transparent;
  border-left: 36px solid transparent;
  border-bottom: 36px solid transparent; */
  /* background: linear-gradient(105.18deg, #DF8B8B -2.04%, #2A5298 107.42%); */
}

@media (max-width: 768px) {
  .gcc-header {
    height: auto;
  }

  .gcc-header__container {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .gcc-header__logo {
    height: 40px;
  }

  .gcc-header__nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    display: none !important;
  }

  .gcc-header__nav-link {
    flex: 0 0 auto;
  }

  .gcc-header__phone {
    margin-left: auto;
    font-size: 13px;
    padding: 0 12px;
  }

  .hero-container {
    flex-direction: column;
  }

  .hero-section{
    padding: 32px 16px 48px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 36px;
    margin: 0;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    justify-content: space-between;
  }

  .stat {
    padding: 0;
  }

  .stat::after {
    display: none;
  }

  .stat h3 {
    font-size: 24px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary {
    text-align: center;
    padding: 16px;
    order: 1;
  }

  .btn-outline{
    text-align: center;
    padding: 16px ;
    white-space: nowrap;
    order: 2;
  }

  .hero-image {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-container {
    justify-content: center;
  }
}
.gcc-markets{
  background-color: #E6E9FF;
  padding: 24px 16px;
  gap: 12px;
}

.stats-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding:  24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 1px;
  height: 94px;
  background: #CBD5E1;
}

.stat-item h3 {
  margin: 0;
  color: #020617;
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
}

.stat-item p {
 margin: 0;
  color: #475569;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}



@media (max-width: 767px) {
  .market-stats {
    padding: 20px 16px;
  }

  .market-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

 .stats-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-item {
    min-width: auto;
    flex: unset;
    padding: 20px 12px;
  }

  /* Position items */
  .stat-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .stat-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .stat-item:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .stat-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  /* Remove old divider */
  .stat-item::after {
    display: none;
  }

  /* Vertical divider */
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-right: 1px solid #cfd5e5;
  }

  /* Horizontal divider */
  .stat-item:nth-child(1),
  .stat-item:nth-child(3) {
    /* border-bottom: 1px solid #cfd5e5; */
  }

  .stat-item h3 {
    font-size: 32px;
  }

  .stat-item p {
    font-size: 14px;
    line-height: 1.4;
  }
}



.gcc-benefits {
  padding:  24px;
  background: #F8FAFC;
  margin: 48px 0;
}



.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  color: #020617;
  margin-bottom: 12px;
  margin: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--Stroke-Coloe, #CBD5E1);
  border-radius: 28px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  
  
}



.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.benefit-content h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #111827;
  margin: 0;
}

.benefit-content p {
  font-size: 14px;
  line-height: 21px;
  color: #475569;
  font-weight: 400;
  margin: 0;
}



/* Mobile */
@media (max-width: 767px) {
  .gcc-benefits {
    padding: 16px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 280px); 
    grid-template-rows: repeat(2, auto);      
    gap: 16px;

    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .benefits-grid::-webkit-scrollbar {
    display: none;
  }
}

.gcc-platform-section{
    padding: 0;
}

.gcc-platform-title{
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    color: #020617;
    margin: 0 0 12px 0;
}

.gcc-platform-layout{
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 16px;
    align-items: stretch;
}

.gcc-platform-right{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gcc-platform-stats{
    background: #E9F3EC;
    border: 1px solid #E9F3EC;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gcc-platform-stat{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #E2E8F0;
}

.gcc-platform-stat:last-child{
    border-bottom: none;
}



.gcc-platform-stats{
    background: #E9F3EC;
    border: 1px solid #E9F3EC;
    border-radius: 28px;
    overflow: hidden;
    
}

.gcc-platform-stat{
    padding: 16px;
    text-align: center;
    border: 1px solid var(--Surface-Dividers, #E2E8F0);
}

.gcc-platform-stat:last-child{
    border-bottom: none;
}

.gcc-platform-stat h3{
    font-size:32px;
    line-height: 48px;
    font-weight: 600;
    color: #020617;
    margin-bottom: 4px;
    margin: 0;
}

.gcc-platform-stat p{
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: #475569;
    margin: 0;
}


.gcc-platform-card{
    background: #fff;
    border: 1px solid var(--Surface-Strokes, #CBD5E1);
    backdrop-filter: blur(50px);
    border-radius: 28px;
    overflow: hidden;
    margin: 0 16px;
}

.gcc-platform-item{
    padding: 16px;
    border-bottom: 1px solid var(--Surface-Dividers, #E2E8F0);
}

.gcc-platform-item:last-child{
    border-bottom: none;
}

.gcc-platform-item h4{
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #020617;
    margin-bottom: 4px;
    margin: 0 0 4px 0;
}

.gcc-platform-item p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #475569;
    margin: 0;
}



.gcc-platform-cta{
    background: #FFF0C9;
    box-shadow: 0px 1px 3px 1px #00000026;

box-shadow: 0px 1px 2px 0px #0000004D;

    border: 1px solid #E7D8A8;
    border-radius: 28px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gcc-platform-cta-left{
    display: flex;
    align-items: center;
    gap: 12px;
}

.gcc-platform-avatars{
    display: flex;
}

.gcc-platform-avatars img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 0 solid #FDF0C8;
    margin-left: -10px;
}

.gcc-platform-avatars img:first-child{
    margin-left: 0;
}

.gcc-platform-cta-content h4{
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #020617;
    margin-bottom: 4px;
    margin: 0 0 4px 0;
}

.gcc-platform-cta-content p{
    font-size: 14px;
    line-height: 21px;
    color: #1C1C1E;
    font-weight: 400;
    margin: 0;
}

.gcc-platform-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1.5px solid #111827;
    border-radius: 999px;
    background: transparent;
    color: #1E293B;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}





@media (max-width: 768px){

    
    .gcc-platform-title{
        font-size: 22px;
        line-height: 28px;
        
    }

    @media (max-width: 768px) {

  .gcc-platform-stats {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0;
    overflow: hidden;
    position: relative;
  }

  /* Single vertical divider */
  .gcc-platform-stats::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #E2E8F0;
    transform: translateX(-50%);
  }

  .gcc-platform-stat {
    flex: unset;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border: none !important; /* removes all horizontal lines */
  }

  .gcc-platform-stat:nth-child(1){ order: 2; }
  .gcc-platform-stat:nth-child(2){ order: 4; }
  .gcc-platform-stat:nth-child(3){ order: 1; }
  .gcc-platform-stat:nth-child(4){ order: 3; }

}
    
    

   .gcc-platform-layout{
    display: flex;
    flex-direction: column;
    gap: 16px;
}



  
.gcc-platform-right{
    display: contents;
}

/* Order the three blocks */
.gcc-platform-card{
    order: 1;
}

.gcc-platform-stats{
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0;
    overflow: hidden;
}

.gcc-platform-stat {
    border: none !important;
  }

  
  .gcc-platform-stat:nth-child(1),
  .gcc-platform-stat:nth-child(3) {
    border-right: 1px solid #E2E8F0 !important;
  }

.gcc-platform-cta{
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin: 0;
}

.gcc-platform-cta-left{
    width: 100%;
}



    
    .gcc-platform-card{
        order: 1;
    }

  
    .gcc-platform-stats{
        order: 2;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border-radius: 0;
    }

   
    .gcc-platform-cta{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin: 0 16px;
    }

    
    .gcc-platform-cta-left{
        order: 1;
        width: 100%;
    }

    
    .gcc-platform-btn{
        order: 2;
        margin: 0 auto;
        justify-content: center;
    }

    
}



.how-it-works{
    padding:48px 24px;
}

.container{
    max-width:1128px;
    margin:0 auto;
    
}

.section-title{
    text-align:center;
    font-size:32px;
    font-weight:600;
    line-height:48px;
    color:#020617;
    margin-bottom:12px;
}

.how-card{
    display:flex;
    border: 1px solid #CBD5E1;
    border-radius:28px;
    overflow:hidden;
    background:#fff;
}

.work-item{
    flex:1;
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding: 16px;
    position:relative;
}

.work-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:78%;
    background:#E2E8F0;
}

.icon{
    width:56px;
    min-width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon img{
    width:48px;
    height:48px;
    object-fit:contain;
}

.contentt h3{
    font-size:16px;
    font-weight:600;
    line-height:24px;
    color:#020617;
    /* margin-bottom:8px; */
    margin: 0 0 4px 0;
}

.contentt p{
    font-size:14px;
    font-weight:400;
    line-height:21px;
    color:#475569;
    margin: 0;
}

@media (max-width:991px){
    .how-card{
        flex-direction:column;
    }

    .work-item:not(:last-child)::after{
        width:100%;
        height:1px;
        left:50%;
        right:auto;
        top:auto;
        bottom:0;
        transform:translateX(-50%);
    }

    .section-title{
        font-size:40px;
    }
}

@media (max-width:576px){
    .how-it-works{
        padding: 48px 16px 48px 16px;
        
    }

    

    .content h3{
        font-size:18px;
    }

    .content p{
        font-size:15px;
        line-height:26px;
    }
  }


.why-section{
    max-width:700px;
    margin:auto;
    margin-bottom: 64px !important;
}

.section-title{
    text-align:center;
    font-size:32px;
    font-weight:600;
    line-height:48px;
    color:#020617;
    margin-bottom:12px;
    
}

.why-card{
    border: 1px solid var(--Surface-Strokes, #CBD5E1);
    backdrop-filter: blur(50px);
    border-radius:28px;
    overflow:hidden;
    background:#fff;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:16px 24px;
    border-bottom:1px solid #e8edf3;
}

.why-item:last-of-type{
    border-bottom: 1px solid var(--Surface-Dividers, #E2E8F0);
}

.icon-box{
    width:48px;
    height:48px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.content h3{
    font-size:16px;
    font-weight:600;
    color:#020617;
    margin: 0  0 4px 0;
}

.content p{
    font-size:14px;
    line-height:21px;
    font-weight: 400;
    color:#475569;
    margin: 0;
}

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.statt {
    text-align: center;
    padding: 20px 10px;
    position: relative;
    font-family: "Onest", sans-serif;
    flex: 1;
}

/* Vertical divider */
.statt:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2px;
    height: 50px; /* Adjust height as needed */
    background: #E2E8F0;
}
.statt h2{
    font-size:32px;
    font-weight:600;
    color:#020617;
    line-height:48px;
    margin: 0;
    /* margin-bottom:10px; */
}

.statt p{
    color:#475569;
    font-size:14px;
    line-height: 21px;
    font-weight: 400;
    margin: 0;
}

@media(max-width:768px){

    .section-title{
        font-size:34px;
        line-height:42px;
    }

    .why-section{
      padding: 0 16px 0 16px;
    }

    .why-item{
        padding:16px;
    }

    /* .stats{
        grid-template-columns:1fr;
    } */

    .statt h2{
      font-size: 24px;
      line-height: 36px;
      font-weight: 600;
    }

    

    .statt{
        padding:  16px 0;
    }

   
  }

/* ==========================
   GCC Hub Section
========================== */

.gcc-hubs-section {
  padding: 48px 24px;
  background: #fff;
}

.gcc-hubs-section .container {
  max-width: 1440px;
  margin: 0 auto;
}

.gcc-title {
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: #020617;
  margin-bottom: 12px;
  margin: 0 0 12px 0;
}

.gcc-hubs-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.gcc-hub-card {
  width: 160px;
  padding: 8px;
  gap: 8px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 28px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gcc-hub-card:hover {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  transform: translateY(-2px);
}



.hub-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
}

.hub-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Typography */
.gcc-hub-card h3 {
  margin: 0 0 8px;
  color: #020617;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.gcc-hub-card p {
  margin-bottom: 8px;
  color: #475569;
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin:  4px 0 0 0;
}

.gcc-more-cities {
  
  text-align: center;
  color: #020617;
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-top: 12px;
}

.gcc-more-cities strong {
  font-weight: 600;
}

/* ==========================
   Mobile
========================== */

@media (max-width: 768px) {
  .gcc-hubs-section {
    padding: 40px 16px;
  }

  .gcc-title {
    font-size: 24px;
    line-height: 36px;
   
  }

  .gcc-hubs-wrapper {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .gcc-hubs-wrapper::-webkit-scrollbar {
    display: none;
  }

  .gcc-hub-card {
    flex: 0 0 145px;
    min-width: 145px;
  }

  .gcc-hub-card:hover {
    background: inherit;
    border: 1px solid transparent; /* or your default border */
    transform: none;
  }

  .hub-image {
    width: 72px;
    height: 72px;
  }

  .gcc-hub-card h3 {
    font-size: 15px;
  }

  .gcc-hub-card p {
    font-size: 13px;
    line-height: 19px;
  }

  .gcc-more-cities {
    
    font-size: 14px;
    line-height: 21px;
  }
}

/* ==========================
   Enterprise Leaders Review
========================== */

.review-section {
  padding: 0 0 48px 0;
  background: #fff;
}

.review-section .container {
  max-width: 1128px;
  margin: 0 auto;
  margin-bottom: 48px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  color: #020617;
  margin-bottom: 12px;
}

.review-wrapper {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-card {
  flex: 1;
  /* min-width: 320px; */
  max-width: 365px;
  /* background: #fff; */
  border: 1px solid var(--Surface-Strokes, #CBD5E1);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-content {
  padding: 16px;
}

.review-content p {
  margin: 0;
  color: #020617;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}

.review-footer {
  border-top: 1px solid var(--Surface-Strokes, #CBD5E1);
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-user h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #020617;
}

.review-user span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #475569;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-stars img {
  width: 16px;
  height: 16px;
  display: block;
}

/* ==========================
   Responsive
========================== */

@media (max-width: 768px) {

  .section-title{
    font-size: 24px;
    line-height: 36px;
  }
  .review-section{
    padding: 0 16px ;
  }
  .review-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start; /* instead of center */
    overflow-x: auto;
    gap: 16px;
    padding: 0 16px 10px 0; /* add a little right padding */
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
  }

  .review-wrapper::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 85%;
    min-width: 85%;
    max-width: 85%;
    scroll-snap-align: start;
  }
}


.gcc-hero {
  max-width: 1128px;
  margin: 0 auto 48px auto;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(105.18deg, #DF8B8B -2.04%, #2A5298 107.42%);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
}

/* Left */
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-left h1 {
  font-size: 32px;
  line-height: 48px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-features {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #ffffff;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.hero-features li::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("https://ik.imagekit.io/qdesq/qdesq/ba65e47a1bdea0493d27e3170804aab9_uAbdNt48o.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-stats {
  margin-top: auto;
  /* display: flex; */
}

.stats-heading {
  margin: 0 0 20px;
  color: #F1F5F9;
  font-family: 'Onest', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-top: 80px;
  margin-bottom: 8px;
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat p{
  color: #fff;
  margin: 0;
  text-align: center;
}

.stat h2 {
  margin: 0;
  font-size: 40px;
  line-height: 60px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .stat h2 {
    font-size: 24px;
    line-height: 36px;
  }

  .stats-row{
    justify-content: center;
    text-align: center;
  }

 
  .divider {
    display: block;
    width: 1px;
    min-width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
  }
}

.stat p {
  margin: 0;
  color: #F1F5F9;
  align-items: center;
  text-align: center;
}

.divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}



@import '~bootstrap/dist/css/bootstrap.css';


.expert-form-container {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #CBD5E1;
  padding: 24px;
  border-radius: 28px;
  text-align: center;
  gap: 12px;
}

.form-header{
  justify-content: space-between;
  background: none;
  border: none;
}

.expert-form-container h2 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: #020617;
  margin: 0 0 12px  0;
}

.expert-form label {
  display: block;
  font-weight: 600;
  text-align: left;
  color: #020617;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 2px;
}
.expert-form input::placeholder {
  color:#475569;
}
.expert-form input {
  width: 380px;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 2px solid var(--Outline-outline, #EEF1F6);
  border-radius: 8px;
  font-size: 14px;
}



.expert-form button {
  width: 100%;
  padding: 10px 16px;
  background-color: #E22F28;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  cursor: pointer;
}


.expert-profiles {
  margin-top: 12px;
}

p{
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #020617;
  margin-bottom: 8px;
}

.profiles {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.profile h4{
    
font-weight: 600;
font-size: 14px;
line-height: 21px;
letter-spacing: 0px;
text-align: center;
color: #020617;
margin: 0;
}

.profile p {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  margin: 10px 0 0;
  color: #020617;
}

.profile span {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #475569;
}

.divider{
   border: 1px solid #CBD5E1;
   margin: 12px 0;
}

.clients p{
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.clients .logos {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}

.clients .logos img {
  height: 32px;
  object-fit: contain;
}

.logo-slider {
  overflow: hidden;
  width: 100%;
}

.logos {
  display: flex;
  gap: 80px;
  width: max-content;
  /* animation: scroll 10s linear infinite; */
}

.logos img {
  height: 60px;
  white-space: nowrap;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.s-btn {
  font-weight: 600;
  font-size: 16px !important;
  margin-bottom: 0 !important;
  padding: 6px 10px;
  box-shadow: none !important;
  border: solid 0.5px #df3744 !important;
  color: #df3744;
  width: 100%;
}
.s-btn:hover {
  color: #fff !important;
  background-color: #df3744 !important;
}
::placeholder {
  letter-spacing: 0px;
  color: #D6D6D6;
  font-style: normal;
  font-size: 14px;
  float: top;
  opacity: 1;
}

@media (max-width: 911px){
  .mt-4{
    margin-top: 1rem !important;
  }
  .headertext{
    padding: 15px 20px 15px;
    margin: 0px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    color:#3c3c47;
    border-bottom: 1px solid #d6d6d6;
  }
   .expert-form-container {
    border: none !important;
    border-radius: 24px !important;
  }
   
  .Filterinput {
    height: 45px;
    width: 100%;
    font-size: 14px;
    padding: 16px;
  }
  .expert-form input {
    height: 45px;
    width: 100%;
    font-size: 14px;
    padding: 8px 10px;
  }
  .toplabel {
    position: absolute;
    top: -10px;
    left: 10px;
    padding: 0px 5px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #3c3c47;
  }
}
@media (min-width: 912px){
  .headertext{
    padding: 15px 20px 15px;
    margin: 0px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.35;
    text-align: left;
    color:#3c3c47;
    border-bottom: 1px solid #d6d6d6;
  }
  .Filterinput {
    height: 50px;
    width: 100%;
    font-size: 16px;
    padding: 8px 10px;
    color: #475569;
  }
   .expert-form input {
    height: 50px;
    width: 100%;
    font-size: 16px;
    padding: 8px 10px;
  }
  .inPageRenderContainer {
     /* display: flex; */
    flex-wrap: wrap;
  }
  .inPageRender {
    width: 31% !important;
    display: inline-flex;
    margin-right: 16px;
  }
  .inPageRenderButton {
    max-width: 157px !important;
    width: 31%;
    display: inline-flex;
  }
  .toplabel {
    position: absolute;
    top: -10px;
    left: 15px;
    padding: 0px 5px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #3c3c47;
  }
  
}

.mobile-close {
  display: none !important;
}

@media (max-width: 911px){
  .mobile-close {
    display: block !important;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 12px;
  }
  .form-header{
  
  align-items: center;
  justify-content: space-between;
}
}

@media (max-width: 911px) {
  .gcc-hero {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px;
    border-radius: 0;
  }

  
  .hero-left {
    display: contents;
  }

  .hero-features {
    display: none;
  }

  .hero-left h1 {
    order: 1;
    font-size: 24px;
    line-height: 36px;
    margin: 0;
    text-align: center;
  }

  .stats-heading{
    text-align: center;
    margin-top: 0;
  }

  .expert-form-container {
    order: 2;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }

  .heroo-stats {
    order: 3;
    margin-top: 0;
  }
}

.faq-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-title {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #0D0D0D;
  font-family: 'Noto Sans', sans-serif;
  line-height: 60px;
}

.faq-container {
  max-width: 1128px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid #CBD5E1;
  border-radius: 16px;
  background-color: #fff;
  overflow: hidden;
}

.faq-item {
  /* width: 100%; */
  max-width: 1128px;
  border-bottom: 1px solid #CBD5E1;
  background-color: #ffffff;
  padding: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item:hover,
.faq-item.active {
  background-color: #F8FAFC;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  color: #0D0D0D;
  font-family: 'Noto Sans', sans-serif;
  line-height: 24px;
}

.faq-question .arrow-icon {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.faq-question .arrow-icon.rotate {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease;
  line-height: 24px;
  padding-left: 36px;
}

.faq-answer.show {
  max-height: 500px;
  padding-top: 12px;
}

.faq-answer p {
  font-family: 'Onest', sans-serif;
  font-weight: 400; 
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #1C1C1E; 
  margin: 0;
  padding: 0 16px;
}

.faq-answer ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.faq-answer li {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1C1C1E;
  margin-bottom: 8px;
}

.faq-answer li:last-child {
  margin-bottom: 0;
}

/* Tablet */
@media (max-width: 768px) {
  .faq-title {
    font-size: 24px;
    line-height: 36px;
    padding: 0;
  }
}

@media (max-width: 768px) {
    .faq-section {
    .faq-title {
      font-size: 24px;
      line-height: 36px;
      padding: 0;
       /* margin: 64px 0 24px 0 !important; */
    }

    .faq-container {
       /* padding: 0 16px; */
    }
  }
}

@media (max-width:750px){
    .faq-section {
      padding: 0 16px;
      margin-bottom: 48px;
    .faq-title {
      font-size: 24px;
      line-height: 36px;
       /* margin: 64px 0 24px 0 !important; */
      
    }

    .faq-container {
       /* padding: 0 16px; */
    }
  }
}

.office-solutions {
  padding: 48px 24px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  font-family: Inter, sans-serif;
}

.office-solutions h2 {
  font-size: 32px;
  font-weight: 600;
  color: #020617;
  margin: 0 0 12px 0;
}

.cards-wrapper {
  overflow: hidden;
}

.cards {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px;
  gap: 24px;
}

.cards::-webkit-scrollbar {
  display: none;
}

.card-link {
  display: flex;
  flex: 0 0 326px;
  text-decoration: none;
  color: inherit;
}

.card-link .card {
  width: 100%;
  cursor: pointer;
}

.card {
  flex: 0 0 326px;
  scroll-snap-align: center;
  background: #ffffff;
  border-radius: 28px;
  padding: 16px;
  border: 1px solid #CBD5E1;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin: 0;
  color: #020617;
}

.card p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #1C1C1E;
  margin: 8px 0 16px;
}

.btn {
  width: 160px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 24px;
  border: 1px solid #1E293B;
  background: transparent;
  color: #1E293B;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn img {
  width: 18px;
  height: 18px;
  margin: 0;
}

@media (max-width:900px){
    .office-solutions{
    padding:0 16px 16px 16px ;
    max-width: 100%;
    margin: 0;
    overflow-x: visible;
  }

  .office-solutions h2 {
    font-size: 24px;
    line-height: 36px;
  }

  .seo-section {
    padding: 25px 26px !important
  }

  .seo_content {
    margin-top: 40px !important;
  }

  .seo_content h3 {
    font-size: 20px;
    font-weight: 500;
    color: #1E293B;
  }
  .seo_content p {
    font-size: 14px;
    font-weight: 400;
    color: #020617;
    line-height: 21px;
      margin-top: 20px !important;
  }
  .seo_content a {
    font-size: 14px;
    font-weight: 400;
    color: #4881FF;
    text-decoration: underline;
  }

}
@media (min-width:900px){

  .seo_content {
    margin-top: 40px !important;
  }

  .seo-section {
    padding: 25px 37px !important
  }

  .seo_content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
  }
  
  .seo_content p {
    font-size: 14px;
    font-weight: 400;
    color: #020617;
    line-height: 21px;
    margin-top: 20px !important;
  }
  .seo_content a {
    font-size: 14px;
    font-weight: 400;
    color: #4881FF;
    text-decoration: underline;
  }
    .office-solutions{
    padding:0 16px 16px 16px ;
    max-width: 100%;
    margin: 0;
    overflow-x: visible;
  }

  .office-solutions h2 {
    font-size: 24px;
    line-height: 36px;
  }

}
