/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Onest", sans-serif;
    background-color: white;
    color: #111827;
}

@font-face {
    font-family: 'Satoshi Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Satoshi Medium'), url('../fonts/Satoshi-Medium.woff') format('woff');
}

/* Navbar */
.bg-headerBanner {
    background-color: #130F35;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-bottom: 106px;
}
.navbar {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0px;
    flex-wrap: wrap;
}

.navRightDesktop {
    display: flex;
    gap: 22px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 151px;
    height: 32px;
}

.logo img {
    width: 100%
}

.nav-left a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    line-height: 24px;
    color: #FDFFFF;
}

.services {
    font-weight: 400;
}

.case-study {
    font-weight: 400;
}

.dropdown {
    position: relative;
    color: #000;
    text-align: center;
}

.dropdown button {
    padding: 5px 10px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
 color: #FDFFFF;
}

.chevron i {
    font-size: 11px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #111827;
}

.dropdown-menu a,
.nav-left a,
.footer ul li a,
.dropdown button {
    position: relative;
    display: inline-block;
}

.dropdown-menu a::after,
.nav-left a::after,
.footer ul li a::after,
.dropdown button::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.dropdown-menu a:hover::after,
.nav-left a:hover::after,
.footer ul li a:hover::after,
.dropdown button:hover::after {
    width: 100%;
}
.footer ul li a {
    padding-bottom: 3px;
}
/* CTA Button */


.cta-button {
    background-color: #FFCC11;
    color: #290029;
    padding: 4px 16px;
    border: none;
    font-size: 14px;
    line-height: 24px;
    border-radius: 4px;
    font-family: "Onest", sans-serif;
    font-weight: 500;
    cursor: pointer;
	box-shadow: inset 0 10px 24px -9px #FFFFFF66, 0 1px 2px 0 #20002405;
  
}
.cta-button:hover {
   box-shadow: 0 1px 2px 0 #20002405;
   
}


/* Hamburger Icon */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Slide-in Menu */
.mobile-slider {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 999;
    align-items: center;
}

.mobile-slider a {
    text-decoration: none;
    color: #130F35;
}

.mobile-slider.open {
    right: 0;
}


.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 24px;
    cursor: pointer;
    color: #000;
    z-index: 1001;
}


/* Hero Section */
.hero {
    text-align: center;
    margin-top: 100px;
}

.hero-meta {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: #FFFFFF33;
}

.hero-meta h6 {
    display: inline-flex;
    margin: 0px;
    align-items: center;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}


.hero h1 {
    font-size: 60px;
    line-height: 84px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 20px auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1213px;
    flex-wrap: wrap;
}
.hero p {
    max-width: 1000px;
    margin: 0 auto 36px auto;
    font-size: 23px;
    color: #FFFFFF;
    line-height: 30px;
}
.highlight {
    background-color: #00FFC2;
    padding: 0 10px;
}
.highlight-purple{
    background: linear-gradient(90deg, #D6CDFF -130%, #4400FF 82%);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text;
  color: transparent;
}
.highlight-red{
    background: linear-gradient(90deg, #FFE27A -130%, #A20979 82%);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text;
  color: transparent;
}
.request-quote {
    padding: 7px 20.5px;
    border: 1px solid transparent;
    width: fit-content;
}
.request-quote:hover {
    padding: 7px 20.5px;
}
.ratings{
	display: flex;
	flex-direction: column;
    align-items: center;
}
.ratings span {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.5;
	font-weight: 500;
    margin: 10px 0px 75px;
    display: inline-block;
}


.stars {
    color: green;
}

/* Tags */
.tag-wrapper,  .tag-wrapper1{
    overflow: hidden;
    white-space: nowrap;
    max-width: 1350px;
    box-sizing: border-box;
    margin: auto;
    position: relative;
  mask-image: linear-gradient(to right, transparent 0%, #130F35 10%, #130F35 90%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}



.tags {
    display: inline-flex;
    gap: 20px;
    animation: scrollTags 20s linear infinite;
}
.tags1 {
    display: inline-flex;
    gap: 20px;
    animation: scrollTags 20s linear infinite reverse;
    margin-top: 20px;
}

.tags span,  .tags1 span{
    padding: 8px 12px;
    border: 1px solid #8C88B0;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
color:#8C88B0;
}


.tags span img, .tags1 span img {
    margin-right: 6px;
    width: 20px;
    /* adjust as needed */
    height: 20px;
}

@keyframes scrollTags {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-40%);
    }
}



/* Skills Carousel section*/



.trusted-companies {
    max-width: 1400px;
    overflow: hidden;
    display: flex;
    gap: 20px;
    margin: 100px auto 100px auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trusted-companies h6 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #262626;
    margin: 0px 0px 40px 0px;
}

.TR1 {
    display: flex;
    width: max-content;
    ;
    gap: 20px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.TR1 {
    animation: scroll-right 20s linear infinite;
}


.TR-img {
    width: 120px;
    height: 40px;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid #E7E9EF;
    background-color: #F9FAFB;
    box-sizing: unset;
}

.TR-img img {
    width: 100%;
    height: 100%;
}

/* Make-call and cards design */

.get-design {
    max-width: 1160px;
    margin: 44px auto 78px auto;
}

.section-title {
    text-align: center;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 48px;
    color: #130F35;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
}

.card {
    background: #fafafa;
    flex: 1;
    width: 365px;
    box-shadow: 0 2.41px 12.07px -1.88px #00000020;
}

.card img {
    width: 100%;
    margin-bottom: 20px;
    
}

.card-content {
    padding: 14px 16px;
}

.card h4 {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: #71717A;
    line-height: 12px;
}

.card h3 {
    font-size: 20px;
    line-height: 22px;
    margin: 12px 0;
    font-weight: 700;
}

.card p {
    font-size: 12px;
    font-weight: 400;
    color: #000;
    line-height: 24px;
}



/* Stat Section */


.stats-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 100px auto;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
}

.stats-left {
    flex: 1;
    padding: 38.5px 0px;
    width: 50%;
}

.stats-left h2 {
    font-size: 52px;
    color: #130F35;
    line-height: 1.2;
    font-weight: 600;
    margin: 0px;
}

.stats-left p {
    font-size: 18px;
    color: #666666;
    margin: 16px 0px 40px 0px;
    line-height: 1.5;
    font-weight: 500;
}

.stats-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-box {
    background-color: #F9FAFB;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #E7E9EF;
    text-align: center;
    width: calc(50% - 15px);
    box-sizing: border-box;
}

.stat-box h3 {
    font-size: 42px;
    color: #130F35;
    line-height: 1.2;
    font-weight: 600;
    margin: 0px;
}

.stat-box span {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: #737373;
}

.stats-right {
    flex: 1;
    width: 50%;
    border-radius: 20px;
}

.stats-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

.about-us {
    display: flex;
    gap: 19px;
}
.about-us-container h5{
    font-size: 22px;
    line-height: 1.5;
    margin: 0px;
    font-weight: 700;
    color: #666666;
}
.about-us-head{
    font-size: 18px;
    color: #666666;
    margin: 0px 0px 60px 0px;
    line-height: 1.5;
    font-weight: 600;
}
.mission {
    display: flex;
    padding: 29px 13px;
    border: 1px solid #E7E9EF;
    border-radius: 20px;
    background-color: #F9FAFB;
    gap: 12px;
}

.m-icon {
    max-width: 44px;
width: 100%;
    padding: 10px;
    border-radius: 30px;
    background: #1DFECC;
    height: 44px;
}

.m-icon img {
    width: 100%;
    object-fit: contain;
}

.m-content h6 {
    margin: 0px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: #333333;
}

.m-content p {
    margin: 0px 0px 4px 0px;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
    color: #666666;
}


/* Customers Section */

.customer-container {
    max-width: 1195px;
    margin: 90px auto;
    padding: 45px 0px 0px 0px;
}

.customer-heading {
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.customer-heading h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 85%;
    color: #130F35;
    margin: 0px;
}

.customer-second-line {
    display: flex;
    align-items: flex-end;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.inline-h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 85%;
    color: #130F35;
    white-space: nowrap;
    margin: 0;
}

.customer-headindImgs {
    display: flex;
}

.customer-heading-img {
    width: 44px;
    height: 44px;
    margin-left: -10px;

}

.customer-heading-img:first-child {
    margin-left: 0px;
}

.customer-heading-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid white;
    box-sizing: border-box;
}

.customer-heading-img span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    background-color: white;
    border-radius: 50%;
    font-size: 19px;
    font-weight: 500;
    line-height: 27px;
    color: #56D956;
}

.customer-heading p {
    margin: 37px 0px 48px 0px;
    font-size: 19px;
    font-weight: 300;
    line-height: 125%;
    color: #666666;
}

.customer-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.customer-card {
    display: flex;
    flex-direction: row;
    border-radius: 16px;
    padding: 32px 43px 0px;
}
.customer-active{
    display: flex;
    gap: 32px;
}
.customer-hover {
    display: none;
}
.customer-card:hover .customer-hover {
    display: flex;
    gap: 32px;
}
.customer-card:hover .customer-active {
    display: none;
}


.customer-img {
    width: 537px;
    border-radius: 10px 10px 0px 0px;
    position: relative;
    height: 419px;
    
}

.customer-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0px 0px;
    border: 1px solid #CEEEFB;
    display: block;
}

.customer-highlights {
    background: #FFFFFF;
    display: flex;
    gap: 45px;
    margin: -20px 0px 0px 0px;
    position: absolute;
    bottom: 0px;
    left: 1px;
    z-index: 100;
    padding: 43px 25px 29px 31px;
    width: calc(100% - 2px)
}

.customer-AContent{
    max-width: 540px;
}
.hd-wp-container{
    width: 100%;
    background-color: #130F35;
    padding: 4px 0px;
    position: absolute;
    top: 0px;
    border-radius: 10px 10px 0px 0px;
    height: 24px;
}

.hd-WP{
     font-size: 12px;
    font-weight: 700;
    line-height: 1;
    width: fit-content;
    transform: translate(175%, 0px);
    margin: 0px;
    background-image: linear-gradient(90deg, #DA9DFA, #84E6FF); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
	border-bottom: 1px dotted transparent; 
  	border-image: linear-gradient(90deg, #DA9DFA, #84E6FF) 1;
}
.tooltip-wrapper2 {
  position: relative;
  display: inline-block; 
}


.tooltip2 {
  position: absolute;
  transform: translateX(110%);
 width: 200px;
  background: #130F35;
  color: #A4A2B5;
  padding: 12px 10px;
  border-radius: 12px;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 10;
  position: relative;
  top: 17px;

}

.tooltip2::before {
  content: "";
  position: absolute;
  top: -19px;
left: 13%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #130F35 transparent;
}

.tooltip2 a {
  color: #FFFFFF;
  font-weight: 400;
  text-decoration: none;
}

/* Show on hover */
.hd-WP:hover + .tooltip-wrapper2 .tooltip2 {
  opacity: 1;
  visibility: visible;
}
.customer-hover-head {
    color: #5A5A5A;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0px 0px 35px 0px;
}


.customer-highlights h6 {
    background-color: #1DFECC;
    color: #130F35;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .9px;
    line-height: 1.35;
    padding: 4px 24px;
    margin: 0px;
    border-radius: 30px;
    position: absolute;
    top: -12px;
    left: calc(50% - 74px);
}

.customer-highlights h3 {
    margin: 0px;
    font-size: 20px;
    font-weight: 600;
    color: #130F35;
    line-height: .80;
    border-left: 2px solid #EE1C25;
    padding-left:5px;
    margin-bottom: 4px;
}

.img-text {
    width: 40%;
}
.text-width{
width: 62%;
}

.customer-highlights span {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    color: #4F5C5C;
    line-height: 1.25;
    letter-spacing: 0px;
}

.customer-card-content {
    flex: 1;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.customer-logo-industry {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.customer-logo-industry h3 {
    margin: 0;
    font-size: 18px;
}

.customer-info {
    margin: 30px 0px 25px 0px;
    font-size: 21px;
    font-weight: 300;
    line-height: 1.5;
    padding-bottom: 24px;
    border-bottom: 1px solid #787491;
    color: #5A5A5A;
}
.customer-details{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0px 0px 15px 0px;
    color: #5A5A5A;
}
.customer-badges {
    display: flex;
    gap: 12px;
}

.customer-badge1 {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #C7DFE8;
}

.customer-badge1 p {
    width: 114px;
    font-size: 12px;
    font-weight: 400;
    color: #4F5C5C;
    line-height: 1.25;
    letter-spacing: 1px;
    margin: 0px 0px 8px 0px;
}

.customer-badge1 span {
    font-size: 16px;
    font-weight: 400;
    color: #130F35;
    line-height: 1.35;
}
.addpercent::after{
     content: "%+";
  font-size: inherit;
  font-weight: inherit;
  margin-left: 2px;
}
.plus::after{
     content: "+";
  font-size: inherit;
  font-weight: inherit;
  margin-left: 2px;
}
.xadd::after{
     content: "x";
  font-size: inherit;
  font-weight: inherit;
  margin-left: 2px;
}

.customer-author {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}
.author-space{
    justify-content: space-between;
}

.customer-author-img {
   max-width: 129px;
}

.customer-author h5 {
    font-size: 14px;
    font-weight: 600;
    color: #130F35;
    line-height: 20px;
    margin: 0px;
}

.customer-author span {
    font-size: 14px;
    font-weight: 400;
    color: #4F5C5C;
    line-height: 20px;
}
.yellow-border{
    border: 1px solid #EBE9E3 !important;
}


.customer-card[data-color="red"] {
    background: #F5FCFF;
}


.customer-card[data-color="blue"] {
    background: #FEFCF4;
}



.customer-card[data-color="grey"] {
    background: #EFFBFA;
}







/* section-impressive-projects */

.project-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 0px;
}

.project-container h1, .achievements-container h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 600;
    color: #130F35;
    line-height: 1.2;
    margin: 0px;
}

.project-subhead, .achievements-container p, .comparison-section p {
    text-align: center;
    font-size: 18px;
    color: #666666;
    font-weight: 500;
    line-height: 1.5;
    margin: 16px auto 60px auto;
}

.project-columns {
    display: flex;
    gap: 20px;
}

/* Custom grid layout */
.project-right,
.project-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 590px;
}


.project-card {
    background: #F9FAFB;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid #E7E9EF;

}
.collaboration-card{
padding: 10px 0px 0px 10px;
}

.project-card h3 {
    margin: 0;
    color: #130F35;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
}

.project-card p {
    color: #666666;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    margin: 8px 0px 0px 0px;
}

.project-chat-box {
    padding: 24px;

}

.chat-card {
    border-radius: 16px;
    width: 100%;
    border: 1px solid #E7E9EF;
    line-height: 0;
}

.chat-card img {
    width: 100%;
    border-radius: 16px;
}

.expertises {
    display: flex;
    flex-direction: column;
    padding: 17px 0px;
    border-radius: 16px;
    gap: 24px;
    overflow: hidden;
    position: relative;
    width: 100%;
    border: 1px solid #E7E9EF;
    background-color: #fff;
}

.expertise-row1,
.expertise-row2 {
    display: flex;
    gap: 24px;
    width: max-content;
    flex-shrink: 0
}

.expertise-row1,
.revison-row1 {
    animation: scrollLeftToRight 20s linear infinite;
}

.expertise-row2,
.revison-row2 {
    animation: scrollRightToLeft 20s linear infinite;
}

@keyframes scrollLeftToRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

    100% {
        transform: translateX(0);
    }
}

.expertise-img {
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    padding: 20px;
    background-color: #F3F4F7;
    border-radius: 50%;
}

.expertise-img img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.collaboration {
    padding-left: 18px;
    box-sizing: border-box;
    width: 579px;
    height: 205px;
    background-color: #fff;
	border-radius: 0px 0px 20px 0px;
}

.collaboration img {
    width: 100%;
    height: 100%;
    border-radius: 0px 0px 20px 0px;
}

.project-revisions {
    border-radius: 16px;
    background-color: #fff;
    padding: 24px 0px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 6px 0px #B7B7B71A;
}

.revison-row2,
.revison-row1 {
    display: flex;
    width: max-content;
    gap: 16px;
}

.revison-row2 {
    margin-top: 16px;
}

.revision {
    display: flex;
    justify-content: center;
    padding: 10px 14px 10px 10px;
    background-color: #F9FAFB;
    border: 1px solid #E1E4EB;
    border-radius: 22px;
    box-sizing: border-box;
    width: max-content;
    white-space: nowrap;
    flex-shrink: 0
}

.revision span {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #4D4D4D;
}

.revision img {
    width: 100%;
    margin-right: 4px;
}

.project-folders {
    padding: 44px 31px 19px 31px;
    background-color: #FFF;
    border-radius: 16px;
    border: 1px solid #E7E9EF;
    display: flex;
    gap: 12px;
}

.project-folders h6 {
    margin: 6px 0px 0px 0px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5;
}





/* Comparison Section */



.comparison-section {
    padding: 40px 0;
    max-width: 1040px;
    margin: auto;
}

.comparison-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    flex-direction: row-reverse;
	align-items: center;
}

.comparision-column {
    flex: 1;
    border-radius: 20px;
    background-color: #FCFCFD;
    border: 1px solid #E7E9EF;
	height: fit-content;
}

.other-header {
    background-color: #F6F7F9;
    padding: 24px 0px;
    text-align: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom: 1px solid #E7E9EF;
}



.agency-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #E7E9EF;
    padding: 28px 24px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: linear-gradient(to right, #1DFECC, #A3FCE8, #1DFECC);
	  align-items: center;
}
.cta-comparision{
width: 100%;
padding: 11px 0px;
}
.cta-comparision:hover{
	padding: 11px 0px;
}

.agency-header img {
    height: 32px;
}
.agency-header span, .other-header span{
     font-size: 28px;
    font-weight: 200;
    line-height: 1.4;
    color: #4D4D4D;
	    text-transform: uppercase;
}

.comparision-column ul {
    list-style: none;
    margin: 0px;
    padding: 24px 24px 18px 24px;
}

.comparision-column li {
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: #808080;
    padding: 10px 12px;
    border-radius: 23px;
    border: 1px solid #E7E9EF;
    display: flex;

}

.right-col ul li i {
    font-size: 10px;
    color: #fff;
    padding: 6px 4px 4px;
    border-radius: 11px;
    background-color: #07C51A;
    margin-right: 12px;
    max-width: 20px;
    width: 100%;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
}

.left-col ul li i {
    font-size: 10px;
    color: #666666;
    padding: 6px 4px 4px;
    border-radius: 11px;
    background-color: #F3F4F7;
    border: 1px solid #E7E9EF;
    margin-right: 12px;
    max-width: 20px;
    width: 100%;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
}

.cta-center {
    text-align: center;
    margin-top: 64px;
}





/* Company reviewer section */
.brand-reviews {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 90px;
    padding: 75px 0px;
}

.brand {
    text-align: center;
    width: 200px;
}

.brand img {
    width: 190px;
    height: auto;
}

.brand p {
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 16.5px;
    font-weight: 400;
    color: #130F35;
    margin: 24px 0px 0px 0px;
    text-transform: Uppercase;
}

/* Contact Section */

.contact-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1210px;
    margin: auto;
    background-image: url('../images/contact-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 61px 0px;
    flex-wrap: wrap;
    border-radius: 8px;
}

.contact-content {
    max-width: 600px;
}

.contact-section .title {
    font-size: 27px;
    font-weight: 600;
    line-height: 50px;
    margin: 0px;
}

.contact-section .desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.25;
    margin: 0px;
}

.contact-btn {
    background: #FFCC11;
    border: none;
    padding: 7px 40px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 4px;
    cursor: pointer;
    color: #130F35;
    margin-right: 50px;
    box-shadow: inset 0 10px 24px -9px #FFFFFF66, 0 1px 2px 0 #20002405;
}
.contact-btn:hover {
  box-shadow: 0 1px 2px 0 #20002405;
    
}
/* FAQ Section*/
.faq-section {
    text-align: center;
    padding: 60px 0px;
    max-width: 970px;
    margin: auto;
}

.faq-heading {
    margin: 60px 0px 48px 0px;
    font-size: 40px;
    font-weight: 600;
    line-height: .82;
    color: #130F35;
}

.faq-container {

    text-align: left;
}

.faq-item {
    padding: 24px;
    background: #fff;
    cursor: pointer;

}

.faq-question {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #130F35;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    font-size: 15px;
    color: #130F35;
    padding: 3px 8px;
    border-radius: 3px;
    background-color: #1DFECC;
}

.faq-answer {
    margin-top: 12px;
    color: #4F5C5C;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}

.faq-item.active {
    border: 1px solid #F2F4F4;
    border-radius: 4px;
    padding: 23px;
    box-shadow: -1px 0px 0px 0px #F2F4F4;
}

.faq-item.active .faq-answer {
    display: block;

}

.faq-item.active .toggle-icon {
    content: '−';
}

/* Subscribe */
.subscribe-section {
    background: #E8FEEF;

}

.subscription {
    max-width: 1440px;
    margin: 17px auto 0px auto;
    padding: 26px 0px;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    align-items: center;
}

.subscribe-section p {
    margin: 0px;
    font-size: 16px;
    font-weight: 500;
    color: #130F35;
    line-height: 24px;
}

.subscribe-button {
    background: #1DFECC;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 25px;
    color: #130F35;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 120px;
	box-shadow: inset 0 10px 24px -9px #FFFFFF66, 0 1px 2px 0 #20002405;
}
.subscribe-button:hover {
    box-shadow: 0 1px 2px 0 #20002405;
    
}

/* Footer */
.footer-container {

    background: #0d1023;
}

.hr-bottom {
    border-top: 1px solid #2C2566;
    padding: 0px 30px 30px;
    margin: 56px auto 0px;
}

.footer {

    color: #fff;
    padding: 43px 120px 0px 120px;
    font-size: 14px;
    max-width: 1440px;
    margin: auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}
.footer-logo span{
    line-height: 150%;
}
.footer-logo img {
    width: 148px;
    margin-bottom: 5px;
}

.footer-clients{
    display: flex;
    justify-content: space-between;
    margin: 21px 0px 23px;
}
.footer-Info{
    width: 343px;
}
.footer-Info span{
    line-height: 150%;
}
.footer-address-social{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.footer-address-container{
    border-radius: 8px;
    border: 1px solid #FFFFFF1A;
    width: 343px;
}
.footer-address{
    display: flex;
    justify-content: space-between;
}
.footer-address div{
   display: flex;
   flex-direction: column;
   gap: 12px;
}
.footer-address h6{
    font-size: 14px;
    display: flex;
    gap: 5px;
    line-height: 14px;
    font-weight: 400;
    color: #F7F7FD;
    margin: 5px 0px 0px;
}
.footer-address h6 img{
    height: 16px;
    width: 16px;
}

.footer-offices{
    padding: 12px 40px 18px 20px;
    border-bottom: 1px solid #FFFFFF1A;
}
.footer-offices span{
    font-weight: 600;
    line-height: 21px;
    color: #1DFECC;
}
.footer-bookCall{
    display: flex;
    align-items: center;
    
}
.footer-bookCall h6{
    padding: 15px 39px;
    line-height: 14px;
    font-weight: 600;
    font-size: 14px;
    margin: 0px;
    border-right: 1px solid #FFFFFF1A;
}
.footer-bookCall span{
    padding: 0px 22px;
}

.footer-cta {
    display: flex;
    margin-right: 4px;
}

.btn-primary {
    background: #00DFAE0D;
    color: #fff;
    border: none;
    padding: 24px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 54px;
}

.btn-primary span {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.footer-input{
    border: 1px solid #3E5270;
    padding: 4px;
    border-radius: 4px;
    box-shadow: 0 1px 2px 0px #2000240D;
}
.footer-input input{
    background: transparent;
    color: #5D6C83;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    border: none;
    padding-left: 16px;
    width: 200px;
}
.footer-input input::placeholder {
  color: #5D6C83;  
  opacity: 1;       
}
.footer-input input:focus {
  outline: none;   
}
.btn-secondary {
    background: #1DFECC;
    color: #130F35;
    padding: 3px 32.5px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    border: none;
    box-shadow: inset 0 10px 24px -9px #FFFFFF66, 0 1px 2px 0 #20002405;
}

.btn-secondary:hover {
    box-shadow: 0 1px 2px 0 #20002405;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 63px;
}


.footer-col2{
    margin-left: 16px;
}
.footer-col3{
    margin-right: -32px;
}
.footer-col4{
    margin-right: 5px;
}
.footer-col h4 {
    font-weight: 600;
    margin: 0px;
    color: #1DFECC;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 8px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0px;
    gap: 9px;
    display: flex;
    flex-direction: column;
}

.footer-col ul li {
    color: #F7F7FD;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;

}

.footer a {
    color: inherit;
    text-decoration: none;

}

.footer ul li a {
    padding-bottom: 3px;
}

.footer-bottom-container {
    max-width: 1216px;
    margin: auto;
}

.footer-bottom {
    margin: 23px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}


.footer-bottom-info {
    display: flex;
    gap: 17px;
}
.footer-bottom-info p:first-child{
    padding-right: 17px;
    border-right: 1px solid #4F5C5C;
}
.footer-bottom-info p span{
    color: #1DFECC;
}

.footer-bottom-info p {
    margin: 0px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: #FFF;
}
.footer-emails{
    margin-left: 3px;
}
.footer-emails a {
    padding: 0px 17px;
    border-left: 1px solid #4F5C5C;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: #1DFECC;
    text-decoration: none;
}

.footer-emails a:hover {
    color: #FFF;
}

.footer-social i:hover {
    color: #1DFECC !important;
}

.footer-social i {
    margin-left: 12px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    height: 17px;
}




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

    100% {
        transform: translateX(-100%);
    }
}





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

    100% {
        transform: translateX(-27%);
    }
}

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

    100% {
        transform: translateX(25.2%);
    }
}









/* Responsive */

@media (max-width: 768px) {

    .nav-left,
    .nav-right {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .navbar {
        padding: 18px 15px;
        ;
    }

    #mobileSlider .dropdown-menu {
        position: relative;
        width: 100%;
        border: none;
        box-shadow: none;
        margin-top: 10px;
        background: transparent;
    }

    .hero {
        margin-top: 30px;
    }

    .hero-meta {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        padding: 7px;
    }

    .hero-meta h6 {
        font-size: 10px;
        margin-right: 2px;
    }

    .hero h1 {
        font-size: 41px;
        line-height: 60px;
        padding: 0px 15px;
    }
    .hero p{
        padding : 0px 15px;
    }
    .rating-provider {
        margin-bottom: 45px;
    }

    .skill-carousel {
        margin: 50px auto 70px auto;
    }

    .trusted-companies h6 {
        margin-bottom: 20px;
    }

    .trusted-companies {
        margin-bottom: 70px;
    }

    .section-title {
        font-size: 35px;
        margin-bottom: 35px;
        padding: 0px 15px;
    }
    

    .cards {
        flex-direction: column;
		    align-items: center;
    }

    .stats-section {
        margin: 60px auto;
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-right,
    .stats-left {
        padding: 0px 15px;
        width: 100%;
        align-items: flex-start;
    }

    .stats-left h2 {
        font-size: 35px;
    }

    .stats-boxes {
        gap: 15px;
    }

    .stat-box {
        padding: 15px;
    }

    .stat-box h3,
    .creativity-left h1 {
        font-size: 35px;
    }

    .stat-box span {
        font-size: 12px;
    }

    .about-us {
        flex-direction: column;
    }
    .about-us-container{
    	padding: 0px 15px;
    }
    .customer-container {
        padding: 0px 15px;
    }
    .value{
        margin-top: 15px;
    }
    .customer-heading h1 {
        font-size: 42px;
		line-height: 1.1;
    }

    .customer-card {
        flex-direction: column;
        padding: 15px;
    }
	.customer-active, .customer-hover{
    	flex-direction: column;
        }
    .customer-img {
        width: 100%;
    }
	.customer-logo-industry {
    
    align-items: flex-start;
    flex-direction: column;
}
    .customer-highlights {
        padding: 30px 15px 20px 15px;
        gap: 25px;
    }
    .customer-img img {
    	border-radius: 16px;
    }

    .customer-highlights span {
        font-size: 10px;
    }

    .customer-logo-industry img {
        margin-bottom: 15px;
    }

    .customer-badge1 {
        padding: 16px;
    }

    .customer-badge1 p {
        width: 120px;
    }

    .img-text {
        text-align: center;
    }

    .customer-author {
        margin-top: 15px;
    }

    .achievements {
        padding: 0px 0px 20px 0px;
        flex-wrap: wrap;
        gap: 25px;
    }

    .project-container h1 {
        font-size: 40px;
        padding: 0px 14px;
    }

    .project-subhead {
        margin-bottom: 30px;
         padding: 0px 15px;
    }
    .review-subtext{
        padding: 0px 25px;
    }
    .project-columns {
        flex-direction: column;
    }

    .project-left,
    .project-right {
        width: 100%;
        padding: 15px;
    }

    .project-chat-box {
        padding: 24px 12px;
    }

    .project-folders {
        flex-wrap: wrap;
        justify-content: center;
    }

    .collaboration {
        width: 100%;
        padding: 15px;
    }

    .creativity-section,
    .creativity-left {
        padding: 0px;
    }

    .creativity-grid {
        flex-direction: column;
        padding: 15px;
    }

    .comparison-section {
        padding: 15px;
    }
    .comparison-container {
   flex-direction: column;
    
}

    .customer-review-section h2 {
        font-size: 40px;
        padding: 30px 15px 0px;
    }

    .rating-stars {
        margin-bottom: 40px;
        padding: 0px 15px;
    }

    .review-cards {
        padding: 15px;
        margin: 0px;
    }

    .review-card {
        width: 100%;
    }

    .brand-reviews {
        gap: 40px;
    }

    .brand img {
        width: 140px;
    }

    .brand {
        width: 140px;
    }

    .brand p {
        font-size: 11px;
    }

    .contact-section {
        justify-content: flex-start;
        padding: 50px 15px;
        margin: 0px 15px;
		background-size: 420px 333px;
    }

    .contact-section .title {
        line-height: 35px;
    }

    .contact-section .desc {
        margin: 20px 0px;
    }

    .faq-heading {
        margin: 40px 0px 20px 0px;
    }

    .subscription {
        flex-direction: column;
    }

    .subscribe-button {
        margin-right: 0px;
    }

    .footer {
        padding: 15px;
    }
    .footer-top {
        justify-content: center;
    }
      .btn-primary {
        margin-top: 20px;
        text-align: center;
        padding: 15px;
		gap: 15px;
    flex-direction: column;
    }

    .btn-primary span {
        font-size: 15px;
    }

    .btn-secondary {
        margin: 0px;
    }

    .footer-bottom {
        justify-content: center;
		gap: 30px;
    }

    .footer-columns,
    .footer-bottom-info {
        flex-direction: column;
        align-items: center;
    }
	.footer-columns{
        margin-top: 20px;
    }
	.footer-address-social {
    align-items: center;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}
	.hr-bottom {
    margin: 26px auto 0px;
}

    .footer-col {
        margin: 30px 0px 0px 0px;
    }

    .footer-col ul {
        align-items: center;
    }

    .footer-col h4 {
        text-align: center;
    }
	.footer-bottom-info p:first-child{
    	border: none;
        }
    .footer-emails {
        margin-bottom: 20px;
    }
    .footer-bottom-info p {
        margin: 0px;
    }
    .footer-emails a {
        border: 0px;
        padding: 7px 0px;
        display: block;
    }

    .top-ranked h6 {
        font-size: 16px;
        width: 165px;
        line-height: 25px;
    }


}