:root {
  --unnamed-font-family-inter: 'Inter', sans-serif;
  --unnamed-font-style-normal: normal;
  --unnamed-font-weight-600: 600;
  --unnamed-font-size-64: 64px;
  --unnamed-line-spacing-64: 64px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}

body{
    background: #3B1991;
}


html, body {
  overflow-x: hidden;
}


* a{
    text-decoration: none;
    color: #fff;
    
}

/****************************** Header Secton ***********************************/

.custom-header {
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    
}

.header-container {
    min-height: 80px;
    padding: 40px 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 999;
    padding: 0;
    justify-content: flex-end;
    margin-left: -8px;
}

/* .logo img {
    height: 62px;     
    width: auto;
    display: block;
    
} */
.amplify-text-header{
    font-family: 'europa', sans-serif;
    font-size: 3.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -2.5px;
}
.logo-d-letter-header{
    font-family: 'europa', sans-serif;
    color: #d1a1c8;


}

.menu-toggle {
    width: 80px;
    height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1px;
    position: relative;
    z-index: 1100;
}


.menu-toggle span {
    width: 100%;
    height: 7.2px;
    background: #ffffff;
    border-radius: 20px;
    transition: 
        transform 0.35s ease,
        opacity 0.25s ease;
    transform-origin: center;
} 

.menu-toggle .middle-bar {
    width: 70%;                  
    align-self: left;
}

.last-bar {
    width: 90% !important;                 
    align-self: left;
}


.menu-toggle.active span:nth-child(1) {
    width: 90%;
    transform: translateY(17px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    width: 90%;
    transform: translateY(-17px) rotate(-45deg);
}


.menu-panel {
    position: fixed;
    top: 0px;                  
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #34167a;
    transform: translateY(-110%);
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}


.menu-panel.active {
    transform: translateY(0);
    height: 100vh;
}


.menu-list {
    list-style: none;
    text-align: center;
    background-color: #34167a;
}

.menu-list li {
    margin: 18px 0;
    background-color: #34167a;
}

.menu-list a {
    color: #ffffff;
    font-size: 42px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s ease;
    background-color: #34167a;
}

.menu-list a:hover {
    opacity: 0.7;
}


.no-scroll {
    overflow: hidden;
}






/******************************** Footer Secton ********************************/


.footer {
    background: #3B1991;
    width: 100%;
    height: 340px;
    display: flex;              
    align-items: center;        
    justify-content: center; 
    border-top: 1px solid #B344FF;
    
}

.footer-container {
    max-width: 1320px;
    width: 100%;
    padding: 0 65px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}


.footer-left {
    max-width: 820px;
    margin-left: -40px;
    
}

.footer-logo {
    width: 213px;
    height: 70px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Arial, sans-serif;
}


.footer-nav {
    display: flex;
    gap: 36px;
    margin-right: -110px;
    margin-top: 70px;
}

.footer-nav a {
    font-size: 20px;
    font-weight: 400;
    color: #B344FF;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Arial, sans-serif;
}

.footer-nav a:hover {
    color: #ffffff;
}




/*************** Repeat image waves ***********************/

.image-section {
    background-image: url('/frontend/images/background-waves.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 830px;
    margin-top: -130px;
}




/**************Back To Top Button ***************************/
#backToTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5af9, #8b5cf6);
  border: none;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 15px 35px rgba(106, 90, 249, 0.45);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}


#backToTop.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}


#backToTop .arrow {
  animation: floatArrow 1.6s infinite ease-in-out;
}

@keyframes floatArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}


#backToTop::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #6366f1);
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
}

#backToTop:hover::before {
  opacity: 1;
}


#backToTop:hover {
  transform: scale(1.1);
}


#backToTop::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  opacity: 0;
}

#backToTop:active::after {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}









/******************* Hero Secton *******************/

.hero-section {
    color: #ffffff;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: 100%;
    height: auto;
    z-index: -999;
    flex-direction: column;
    display: flex;
    gap: 2.2rem;
    padding: 11rem 0 11rem 0;
    }


.hero-section .roi-text h1{
    font-family: 'Inter', sans-serif;
    font-size: 3.9rem;
    font-weight: 400 !important;
    line-height: 64px;
}

.amplify-text{
    font-family: 'europa', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -3.5px;
}

.logo-d-letter{
    font-family: 'europa', sans-serif;
    color: #d1a1c8;
}

.paragraph-text {
    display: flex;
    justify-content: center;

}

.paragraph-text p{
    font-family: 'Inter', sans-serif;
    font-size: 2.625rem;
    font-weight: 400;
    line-height: 48px;
    width: 80%;
}


.paragraph-text-sub{
    display: flex;
    justify-content: center;
    margin-top: -4rem;
}

.paragraph-text-sub p{
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 29px;
    width: 100%;
}


.button-container{
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding: 0;
    margin-top: -112px;

}

.button-container .btn-primary{
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    border: 1px solid #000000;
    width: 257px;
    text-decoration: none;
    background-color: black;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button-container .btn-primary:hover{
    background-color: #00000000;
    color: #ffffff;
    border: 1px solid #fafafa;
}



.button-container .btn-secondary{
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    border: 1px solid rgb(255, 255, 255);
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 257px;
}


.button-container .btn-secondary:hover{
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
}











/******************* How it Works *******************/

.how-it-works-section{
    color: #ffffff;
    padding-top: 3rem;
    background-color: #3B1991;
    border-radius: 8px;
    width: 100%;
    height: auto;
    z-index: 999;
    flex-direction: column;
    display: flex;
    gap: 1rem;
    z-index: 999;
    margin-bottom: 5rem;


}

.how-it-works-title h2{
    font-family: 'europa', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    text-align: center;
}


.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 17rem;
  max-width: 1335px;
  margin: 0 auto;
  padding-top: 2.6rem;
  
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.process-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2rem;
  
}

.process-item p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 14px;
  opacity: 0.9;
  font-weight: 400;
  width: 75%;
  
}

.process-item ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
  
}

.process-item ul li {
  margin-bottom: 8px;
  font-size: 20px;
  
}

.process-item .note {
  font-size: 20px;
  opacity: 0.8;
}

















/******************** Who For Secton *******************/

.who-for-section {
    background-color: #3B1991;
    padding: 30px 0 30px 0;
    color: #ffffff;
     
}

.who-for-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 24px;
}


.who-for-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 17rem;
}

.who-for-header h2 {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 14px;
}

.who-for-header h3 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 25px;
}


.who-for-header p {
    font-size: 24px;
    line-height: 28px;
    color: rgba(255,255,255,0.85);
    width: 98%;

}

.amplify-text-wait{
    font-family: 'europa', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-d-letter-wait{
    font-family: 'europa', sans-serif;
    color: #d1a1c8;
    font-size: 24px;
}

.who-for-columns {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 70px;
    padding-top: 4ren;
    margin-left: 1rem;
}

.who-for-col h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.who-for-col h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 18px;
}

.who-for-col ul {
    list-style: disc;
    padding: 0;
    margin-left: 22px;
}

.who-for-col li {
    font-size: 20px;
    line-height: 2;
    color: rgba(255,255,255,0.85);
    margin-bottom: 17px;
    
    position: relative;
}

.who-for-col-right{
    margin-left: 5rem;

}

.who-for-col-right h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.who-for-col-right h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 18px;
}

.who-for-col-right ul {
    list-style: disc;
    padding: 0;
    margin-left: 23px;
}

.who-for-col-right li {
    font-size: 20px;
    line-height: 2;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    letter-spacing: -15;
    position: relative;
}


.who-divider {
    width: 2px;
    background: #B344FF;
    height: 100%;
}


.who-for-footer {
    text-align: center;
    width: 100%;
    padding-top: 3rem;
}

.who-for-footer h3 {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: -15;
}














/******************* Client Side *******************/


.client-logos {
  background: #3B1991;
  padding: 0 0;
}

.client-logos-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px 90px !important;
  text-align: center;
  /* height: 1200px; */
  
}

.client-logos-title {
  color: #ffffff;
  font-size: 64px;
  font-weight: 400;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.client-logos-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 42px;
  margin-top: 8px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.client-logos-desc {
  color: #ffffff;
  font-size: 24px;
  max-width: 83%;
  margin: 50px auto 0;
  line-height: 28px;
}
.client-logos-desc-two{
    color: #ffffff;
    font-size: 24px;
    max-width: 60%;
    margin: 60px auto 0;
    line-height: 28px;
}

.client-logos-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  background: #3B1991;
  padding: 0px 0 50px 0;
}


.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 90px;
  gap: 110px 70px;
  width: 100%;
}


.client-logos-col {
  display: flex;
  align-items: center;    
  justify-content: center; 
  width: 250px;
  height: 250px;
  overflow: hidden;
  padding: 30px 0;
}


.client-logos-col img {
  height: 60%;
  width: 100%;
  object-fit: contain;
  opacity: 0.95;
}














/******************* Acquisition Secton *******************/


.acq-section{
  background:#3B1991;
  width:100%;
  min-height: 100vh;
  display:block;
  justify-content:center;   
  align-items:center; 
  padding: 0;
}



.acq-wrap{
  width:1000px;
  max-width:100%;
  margin:0 auto;           
  text-align:center;
  position:relative;
  gap: 60px;
  
}


.acq-title{
  color:#fff;
  font-size:64px;
  font-weight:400;
  margin-bottom:420px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-align: center;
}


.acq-mid{
    position:relative;
  height:412px;
  margin:0 auto; 
}


.acq-circle{
  position:absolute;
  width:735px;
  height:1018px;
  border-radius:50%;
  border:1px solid #ffff;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}


.acq-left{
  position:absolute;
  top:50%;
  left:-30px;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:37px;
  z-index:2;
}


.acq-card{
  width:521px;
  height:99px;
  background:#000;
  border-radius:6px;
  padding:6px 8px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.acq-card-title{
  font-size:22px;
  font-weight:500;
  color:#fff;
  margin-bottom:3px;
}

.acq-card-sub{
  font-size:20px;
  color:rgba(255,255,255,.85);
  line-height:22px;
}


.acq-right{
  position:absolute;
  top:52%;
  right:-50px;
  transform:translateY(-50%);
  text-align:left;
  max-width:448px;
  z-index:999;
  text-align: center;
  background-color: #3B1991;
  box-shadow: 50px 0px 50px 50px rgba(59, 25, 145, 100%);
  padding: 1rem 0;
}

.acq-right-title{
  font-size:42px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#fff;
  font-weight:500;
  line-height:1.05;
  margin-bottom:10px;
  text-shadow: 80px 80px 30px #3a198c;


}
.acq-right-sub{
  font-size:20px;
  color:rgba(255,255,255,.8);
  line-height:1.55;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}



.acq-bottom{
  margin-top:500px;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.acq-bottom-title{
  font-size:64px;
  font-weight:500;
  color:#fff;
  line-height:1.18;
  margin-bottom:20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}


.acq-btn{
  font-size:16px;
  width: 257px;
  height: 48px;
  padding:12px 16px 16px 16px;
  border-radius:8px;
  border:1px solid #000000;
  color:#fff;
  text-decoration:none;
  display:inline-block;
  transition:all .15s ease;
  margin-top: 40px;
}

.acq-btn:hover{
  background:#000;
  border-color: #000;
}





/******************* Case Studies Carousal Secton *******************/

.case-studies-section {
    background: #3B1991;
    padding: 10px 0 280px 0;
    color: #fff;
    overflow: hidden;
}

.case-studies-title {
    text-align: center;
    font-size: 64px;
    margin-bottom: 80px;
    font-weight: 400;
}


.case-carousel-wrapper {
    width: 100%;
    overflow: visible;
}


.case-carousel-track {
    display: flex;
    gap: 60px;
    will-change: transform;
    transition: transform 0.7s cubic-bezier(.4,0,.2,1);
     cursor: grab;
}
.case-carousel-track:active {
    cursor: grabbing;
}

.case-slide {
    flex: 0 0 980px;
}

.case-card {
    background: #3B1991;
    border-radius: 28px;
    padding: 3.5rem;
    border: 1px solid #ffffff;
    width: 1350px;
    height: 1280px;

}

.case-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    width: 100%;
}

.case-img,
.case-divider-col {
    flex: 1;
    width: 30%;
}

.case-img {
    display: flex;
    align-items: center;
}

.case-logo {
    height: 86px;
    width: 260px;
    object-fit: contain;
}

.case-divider-col {
    display: flex;
    align-items: center;
    width: 70%;
}

.case-divider {
    display: block;
    width: 100%;
    max-width: 674px;
    height: 1px;
    background: #ffffff;
    margin-left: -70px;
    
}

.case-body {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 1fr;
    gap: 30px;
    
}

.case-col-center{
    padding-left: 4.5rem;
    padding-right: 3rem;
}

.case-col h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
    padding-top: 2rem;
}

.case-col p,
.case-col li {
    font-size: 20px;
    opacity: 0.9;
    line-height: 28px;
    font-weight: 400;
    padding-bottom: 20px;

}

.case-col ul {
    padding-left: 18px;
    
}

.case-col ul li {
    margin-left: 10px;
}

.case-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 2rem;
}

.metric-box {
    background-color: #B344FF;
    border-radius: 16px;
    padding: 18px;
}

.metric-box h5 {
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 400;
    padding-bottom: 8px;
}


.case-card.muted {
    opacity: 0.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-dots {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 32px;
}

.case-dots .dot {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.9;
    position: relative;
    cursor: pointer;
}

.case-dots .dot.active {
    background: #ffffff;
}

.case-dots .dot.active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}


/************Amplifyd contact*****************/

.contact-section {
  background: #3B1991;
  padding: 60px 170px 290px 170px;
  font-family: 'Inter', sans-serif;
  width: 100%;
}

.contact-wrapper {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  
}


.contact-left h1 {
  font-size: 64px;
  font-weight: 400;
  color: #ffffff;
  line-height: 64px;
}

.contact-left p {
  color: #ffffff;
  font-size: 42px;
  margin-top: 20px;
  font-weight: 400;
  line-height: 52px;
}

.contact-info {
  margin-top: 120px;
}

.contact-info p {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 1px;
  line-height: 25px;
  font-weight: 400;
}


.contact-right form {
  display: flex;
  flex-direction: column;
  max-width: 90%;
  margin-left: 50px;
  gap: 5px;
}

.contact-right input,
.contact-right textarea {
  background: transparent;
  border: 1px solid #ffff;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 16px;
}

.contact-right textarea {
  min-height: 240px;
  resize: none;
  margin-top: 10px;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
  color: #ffffff
}

.contact-right button {
  margin-top: 12px;
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 10px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
}

.contact-right button:hover {
  opacity: 0.85;
}


.error {
  color: #ffbcbc;
  font-size: 12px;
  margin-bottom: 8px;
}


.success-box {
  grid-column: 1 / -1;
  background: #1e7f5c;
  padding: 16px 24px;
  border-radius: 6px;
  margin-bottom: 40px;
}

.success-box p {
  color: #ffffff;
  font-size: 14px;
}














/******************* Media Quarries *************************/



@media (min-width: 1025px) and (max-width: 1440px) {
  .header-container {
    padding: 80px 80px;
  }

  .logo img {
    height: 58px;
  }

  .menu-list a {
    font-size: 40px;
  }



  /*****footer*****/

   .footer-left {
    margin-left: 0;
  }

  .footer-nav {
    margin-right: 0;
    margin-top: 50px;
  }


  /***** Hero Secton *****/

  .hero-section .roi-text h1 {
    font-size: 3.6rem;
  }

  .amplify-text {
    font-size: 3.8rem;
  }

  .paragraph-text p {
    width: 80%;
  }


   .process-grid {
    gap: 4.5rem 10rem;
  }

  .process-item p {
    width: 90%;
  }



  .who-for-header {
    padding: 0 10rem;
  }

  .who-for-col-right {
    margin-left: 3rem;
  }

  .who-for-footer h3 {
    font-size: 3.8rem;
  }


  .client-logos {
    margin-bottom: -180px;
  }

  .client-logos-desc {
    max-width: 85%;
  }

  .client-logos-desc-two {
    max-width: 65%;
  }

  .client-logos-grid {
    gap: 100px 70px;
  }


   .acq-wrap {
    width: 960px;
  }

  .acq-circle {
    width: 650px;
    height: 900px;
  }

  .acq-left {
    left: -15px;
  }

  .acq-card {
    width: 460px;
  }

  .acq-right {
    right: -30px;
  }

  .acq-bottom {
    margin-top: 22rem;
  }

  .acq-bottom-title {
    font-size: 4rem;
  }



  .case-slide {
    flex: 0 0 900px;
  }


   .case-divider-col{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50%;
  }

  
  .case-header {
      flex-direction: row; 
      gap: 32px;
  }

  .case-logo {
      width: 240px;
      height: auto;
  }

  .case-divider {
      max-width: 100%;
      margin-left: -100px;
  }

  .case-img{
    flex: 1;
    width: 100%;
  }



  .case-card {
    width: 1150px;
    height: auto;
  }

  .case-body {
    grid-template-columns: 1.2fr 1.2fr 1fr;
  }

  .case-studies-title {
    font-size: 3.8rem;
  }



   .contact-section {
    padding: 60px 120px 240px 120px;
  }

  .contact-left h1 {
    font-size: 3.8rem;
  }

  .contact-left p {
    font-size: 2.2rem;
  }

  .contact-info {
    margin-top: 100px;
  }

}









@media (min-width: 769px) and (max-width: 1180px) {
  .header-container {
    padding: 60px 60px;
  }

  .logo img {
    height: 54px;
  }

  .menu-toggle {
    width: 70px;
    height: 40px;
  }

  .menu-list a {
    font-size: 36px;
  }
  

/*****footer*****/

   .footer {
    
    padding: 64px 0;
    position: relative;
    z-index: 10;
    display: block;
    margin-top: 120px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 36px;
  }

  .footer-left {
    margin-left: 0;
    max-width: 540px;
  }

  .footer-logo {
    width: 180px;
  }

  .footer-tagline {
    font-size: 17px;
  }

  .footer-nav {
    margin: 0;
    gap: 24px;
  }

  .footer-nav a {
    font-size: 17px;
  }


  /***** Hero Secton *****/

  .hero-section {
    height: auto;
    padding: 10rem 2rem 8rem 2rem;
    gap: 0;
    
  }

  .hero-section .roi-text h1 {
    font-size: 3.2rem;
    line-height: 60px;
  }

  .amplify-text {
    font-size: 3.4rem;
  }

  .paragraph-text p {
    font-size: 1.9rem;
    width: 85%;
  }

  .button-container {
    margin-top: -2rem;
    justify-content: center;
    align-items: center;
  }


 .how-it-works-section {
    height: auto;
    margin-bottom: 0;
    
  }

  .how-it-works-title h2 {
    font-size: 3.4rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 6rem;
    padding: 2.6rem 3rem 0;
  }

  .process-item p {
    width: 100%;
    font-size: 1.15rem;
  }



  .who-for-header {
    padding: 0 4rem;
  }

  .who-for-header h2 {
    font-size: 3.4rem;
  }

  .who-for-header h3 {
    font-size: 2.6rem;
  }

  .who-for-header p {
    font-size: 1.25rem;
  }

  .who-for-columns {
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
  }

  .who-for-col-right {
    margin-left: 2rem;
  }

  .who-for-footer h3 {
    font-size: 3.4rem;
  }

  

.client-logos { 
    height: auto !important;
    padding: 3rem 0;
  }

  .client-logos-container{
    height: auto;
    padding-bottom: 7rem;
    margin-bottom: -4rem;
  }

  .client-logos-title {
    font-size: 3.4rem;
  }

  .client-logos-col{
    width: 100%;
  }



  .client-logos-subtitle {
    font-size: 2.6rem;
  }

  .client-logos-desc {
    font-size: 1.25rem;
    max-width: 90%;
  }

  .client-logos-desc-two {
    font-size: 1.25rem;
    max-width: 80%;
  }

  .client-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 20px;
  }

  .client-logos-col img {
    width: 80%;
  }


  .acq-section{
    padding: 3rem 3rem 2rem 3rem;
  }

   .acq-title {
    font-size: 3.6rem;
    margin-bottom: 18rem;
  }

  .acq-wrap {
    width: 900px;
  }

  .acq-circle {
    width: 560px;
    height: 780px;
    padding-top: 4rem;
  }

  .acq-card-title{
    font-size: 16px;
  }

  .acq-card-sub{
    font-size: 16px;
  }

  .acq-left {
    left: -10px;
    gap: 28px;
  }

  .acq-card {
    width: 320px;
    height: auto;
  }

  .acq-right {
    right: -48px;
    max-width: 360px;
  }

  .acq-right-title {
    font-size: 2rem;
  }

  .acq-bottom {
    margin-top: 18rem;
  }

  .acq-bottom-title {
    font-size: 3.6rem;
  }

  .acq-right-sub{
    font-size: 1rem;
    width: 100%;
  }



  .case-studies-section{
    padding: 77px 0 77px 0;
  }
  

  .case-studies-title {
    font-size: 3.4rem;
  }

  .case-slide {
    flex: 0 0 90%;
  }

  .case-divider-col{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .case-divider{
      max-width: 100%;

  }

  .case-header {
      flex-direction: row;
      gap: 20px;
  }

  .case-logo {
      width: 220px;
      height: auto;
  }


  .case-card {
    width: 100%;
    height: auto;
    padding: 3rem;
  }

  .case-body {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .case-col-center {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .case-metrics {
    grid-column: span 2;
    flex-direction: row;
  }

  .metric-box {
    flex: 1;
  }



  .contact-section {
    padding: 60px 40px 10px 40px;
  }

  .contact-wrapper {
    gap: 60px;
  }

  .contact-left h1 {
    font-size: 3.3rem;
  }

  .contact-left p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .contact-info {
    margin-top: 80px;
  }

  .contact-right form {
    margin-left: 0;
    max-width: 100%;
  }


  .image-section{
    height: 450px !important;
    margin-top: 0 !important;
  }



}




@media (max-width: 768px) {

  /*****header*****/

  .header-container {
    padding: 56px 20px;
    height: 64px;
  }

  /* .logo img {
    height: 42px;
  } */

.amplify-text-header{
    font-family: 'europa', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -2px;
}
.logo-d-letter-header{
    font-family: 'europa', sans-serif;
    color: #d1a1c8;


}

  .menu-toggle {
    width: 52px;
    height: 32px;
  }

  .menu-toggle span {
    height: 5px;
  }

  .menu-toggle.active span:nth-child(1) {
    width: 90%;
    transform: translateY(11px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    width: 90%;
    transform: translateY(-17px) rotate(-45deg);
}

  .menu-panel {
    height: 100vh;
  }

  .menu-panel ul {
    padding-left: 0;
  }

  .menu-list a {
    font-size: 26px;
  }



  /*****footer*****/

  .footer {
    height: auto;
    padding: 48px 0;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    margin-bottom: 0;
  }

  .footer-left {
    margin-left: 0;
    max-width: 100%;
  }

  .footer-logo {
    width: 160px;
    height: auto;
  }

  .footer-tagline {
    font-size: 16px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 18px;
    margin: 0;
  }

  .footer-nav a {
    font-size: 16px;
  }


  
  /***** Hero Secton *****/

  .hero-section {
    padding-left: 1rem;
    padding-right: 1rem;
    height: auto;
    gap: 0;
    padding-top: 5rem;
    padding-bottom: 6rem;
    
  }

  .hero-section .roi-text h1 {
    font-size: 2rem;
    line-height: 40px;
    
  }

  .amplify-text {
    font-size: 2rem;
    letter-spacing: -1.5px;
  }

  .paragraph-text p {
    font-size: 1.2rem;
    line-height: 28px;
    width: 100%;
    padding-top: 0 !important;

  }

  .paragraph-text-sub p {
    font-size: 0.95rem;
    line-height: 22px;
    width: 100%;
    margin: 0 !important;
  }

  .button-container {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
  }

  .button-container .btn-primary,
  .button-container .btn-secondary {
    width: 100%;
    max-width: 320px;
  }



  .how-it-works-section {
    height: auto;
    margin-bottom: -1rem;
    padding: 3rem 1rem;
   
  }

  .how-it-works-title h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem 1.2rem 0;
  }

  .process-item {
    gap: 0.6rem;
  }

  .process-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .process-item p,
  .process-item ul li,
  .process-item .note {
    font-size: 1rem;
    width: 100%;
  }



.who-for-section{
  padding: 0;
  margin-bottom: -3rem;
  padding: 3rem 1rem;
}

.who-for-container{
    padding: 0 12px;

}

.who-for-header {
    padding: 0;
    margin-bottom: 40px;
  }

  .who-for-header h2 {
    font-size: 2rem;
  }

  .who-for-header h3 {
    font-size: 1.4rem;
  }

  .who-for-header p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .amplify-text-wait{
    font-family: 'europa', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-d-letter-wait{
    font-family: 'europa', sans-serif;
    color: #d1a1c8;
    font-size: 1rem;
}

  .who-for-columns {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 0px;
  }

  .who-divider {
    display: none;
  }

  .who-for-col,
  .who-for-col-right {
    margin-left: -4px;
  }

  .who-for-col h3,
  .who-for-col-right h3 {
    font-size: 1.25rem;
  }

  .who-for-col h4,
  .who-for-col-right h4 {
    font-size: 1.05rem;
  }

  .who-for-col li,
  .who-for-col-right li {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .who-for-col li{
    margin-bottom: 10px;
  }

  .who-for-footer h3 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 45px;
  }






.client-logos-container {
    padding: 0 16px 50px !important;
  }

  .client-logos-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .client-logos-subtitle {
    font-size: 24px;
    line-height: 1.3;
  }

  .client-logos-desc,
  .client-logos-desc-two {
    font-size: 18px;
    line-height: 26px;
    max-width: 100%;
    margin-top: 32px;
  }

  /* 2 x 2 layout */
  .client-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 24px;
  }

  .client-logos-col {
    width: 100%;
    height: 160px;
    padding: 20px;
  }

  .client-logos-col img {
    height: 70%;
  }





  .acq-section{
    padding: 3rem 1rem;
  }



  .acq-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .acq-wrap {
    width: 100%;
    padding: 0 1.2rem;
  }

  .acq-mid {
    height: auto;
  }

  .acq-circle {
    display: none;
  }

  .acq-left {
    position: static;
    transform: none;
    gap: 1.2rem;
    left: auto;
    right: auto;
    top: auto;
  }

  .acq-card {
    width: 100%;
    height: auto;
    padding: 14px;
  }

  .acq-card-title {
    font-size: 1.1rem;
  }

  .acq-card-sub {
    font-size: 0.95rem;
  }

  .acq-right {
    position: static;
    margin-top: 2.5rem;
    transform: none;
    box-shadow: none;
    padding: 1.2rem 0;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
  }

  .acq-right-title {
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
  }

  .acq-right-sub {
    font-size: 1rem;
  }

  .acq-bottom {
    margin-top: 4rem;
    padding: 0 1rem;
  }

  .acq-bottom-title {
    font-size: 2rem;
    line-height: 1.25;
  }



  .case-studies-section {
    padding: 3rem 0;
  }

  .case-carousel-wrapper{
    width: 85%;
  }
 

  .case-studies-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .case-slide {
    flex: 0 0 100%;
  }

  .case-card {
    width: 100%;
    height: auto;
    padding: 1.5rem;
    border-radius: 18px;
  }

  .case-header {
      flex-direction: row; 
      gap: 32px;
  }

  .case-logo {
      width: 140px;
      height: auto;
  }

  .case-divider {
      width: 100%;
      margin-left: 5px;
  }

  .case-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-col-center {
    padding: 0;
  }

  .case-col h4 {
    font-size: 1.1rem;
    padding-top: 1.2rem;
  }

  .case-col p,
  .case-col li {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .metric-box h5 {
    font-size: 1.1rem;
  }

  .case-dots .dot {
    width: 12px;
    height: 12px;
  }

  .case-dots .dot.active::before {
    width: 22px;
    height: 22px;
  }


.contact-section {
    padding: 3rem 1rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-left h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .contact-left p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .contact-info {
    margin-top: 48px;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  .contact-right form {
    max-width: 100%;
    margin-left: 0;
  }

  .contact-right textarea {
    min-height: 160px;
  }

  .image-section{
    height: 284px !important;
    margin-top: -29px !important;
  }

  .paragraph-text-sub,
  .button-container,
  .client-logos,
  .who-for-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}





}







@media (max-width: 480px) {


  .client-logos-container{
    padding-top: 3rem !important;
  }

  .client-logos-title {
    font-size: 28px;
  }

  .client-logos-subtitle {
    font-size: 20px;
  }

  .client-logos-grid {
    gap: 28px 16px;
  }

  .client-logos-col {
    height: 140px;
    padding: 16px;
  }

  .client-logos-col img {
    height: 65%;
  }
}