a,
a:hover,
a:visited {
  color: #0f1f44;
}

a.footer-contact {
  color: #ccc;
}

p.footer-contact {
  color: #ccc;
  font-size: 0.9em
}
  
:root {
  --radius: 30px;
  --card-radius: 12px;
  --header-bg: #f5f7fa;
  font-family: 'Roboto', system-ui, "-apple-system", "BlinkMacSystemFont", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  font-family: 'Roboto', sans-serif;
}

.headerlogo {
  width: 180px;
}

/* Header pill container */
.nav-pill {
  background: white;
  border-radius: 100px;
  padding: 8px 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0px 8px 30px rgba(0,0,50,0.08);
  position: relative;
  z-index: 10;
}

.nav-pill .navbar-nav .nav-link {
  padding: 0 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  color: #1f2d3a;
}

.nav-pill .navbar-nav .nav-link:hover {
  color: #000;
}

.navbar-expand-lg .navbar-nav{
  gap:20px;
}

.navbar-nav  span{
  color:#ccc;
}

.navbar-nav{
  align-items: center;
}

.btn-login {
  background: #878fa8;
  color: white;
  border-radius: 50px;
  padding: 0.5rem 1.7rem;
  /* font-weight: 600; */
  font-size: 1rem;
  border: none;
}

.btn-login:hover {
  filter: brightness(1.05);
  color:#000;
  border:1px solid #000;
}

/* Banner */
.banner {
  position: relative;
  background: url('../images/banner.png') center/cover no-repeat;
  color: white;
  padding: 1rem 1rem 8rem;
  overflow: hidden;
}

.banner-about {
  background: url('../images/banner-about-us.jpg') center/cover no-repeat;
  max-height: 475px;
}

.banner-blog {
  background: url('../images/banner-blog.jpg') center/cover no-repeat;
  max-height: 475px;
}

.banner-docs {
  background: url('../images/docs-banner.jpg') center/cover no-repeat;
  max-height: 475px;
}

.banner-contact {
  background: url('../images/banner-contact.jpg') center/cover no-repeat;
  max-height: 475px;
}

.banner-pricing {
  background: url('../images/banner-pricing.jpg') center/cover no-repeat;
  max-height: 475px;
}

/* Limit the banner height on interior pages for consistency */
.banner-header {
  max-height: 475px;
}

.banner-overlay {
  /* max-width: 1170px; */
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 80px 20px;
}

.banner .display-heading {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.banner .subtext {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  max-width: 420px;
}

.btn-primary-custom {
  background: #f5b318;
  border: none;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
  filter: brightness(0.95);
  border: 1px solid #fff
}

/* Cards section */
.integration-cards {
  position: relative;
  margin-top: -3rem; /* overlapping effect */
  padding-bottom: 4rem;
  z-index: 5;
}

.integration-cards .row {
  margin: 0;
  position: relative;
}

.integration-cards .col-12,
.integration-cards .col-md-6,
.integration-cards .col-lg-4 {
  padding: 0; /* remove gutter padding */
}

.card-custom {
  border-radius: 8px;
  box-shadow: 0px 20px 60px rgba(0,0,80,0.08);
  border: 1px solid rgba(12,32,63,0.3);
  position: relative;
  overflow: visible;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 1rem 1rem 1.25rem;
  transition: transform .3s;
}

.card-custom .card-logo {
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 8px 0;
}

.card-sub {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.btn-get {
  border-radius: 50px;
  font-weight: 400;
  text-transform: uppercase;
  color:#fff;
  font-size: 14px;
  padding: 0.55rem 1.25rem;
}

/* Highlight center card */
.highlight-wrapper {
  position: relative;
  z-index: 10; /* bring forward */
  display: flex;
  justify-content: center;
}
.highlight-card {
  max-width: 350px;
  margin: 0;
  background: white;
  border: 1px solid rgba(12,32,63,0.3);
  border-radius: 8px;
  box-shadow: 0px 30px 80px rgba(0,0,80,0.12);
  transform: translateY(-2px) scale(1.29);
  position: relative;
}

.highlight-inner {
  transform: scale(0.9); /* reciprocal of 1.05 to neutralize text scaling */
  transform-origin: top center;
}

/* Side cards behind */
.side-card-wrapper {
  position: relative;
  z-index: 5;
}
.side-card-wrapper .card-custom {
  max-width: 400px;
}

.leftcard {
  margin-right:-50px
}

.rightcard {
  margin-left:-50px
}

/* responsive adjustments */
@media (max-width: 991px) {
  .nav-pill {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .banner {
    padding: 3rem 1rem 6rem;
  }
  .integration-cards {
    margin-top: 0;
    padding-top: 2rem;
  }
  .highlight-card {
    transform: none;
    margin: 0 auto;
  }
  .highlight-wrapper {
    /* margin-bottom: 1rem; */
  }
  .row.integration-row {
    flex-direction: column;
    gap: 10px;
    flex-flow: wrap;
  }
}

/* New Section 1 */
.section-hero-2 {
  position: relative;
  padding: 2rem 1rem 2rem;
  background: url('../images/section2.png') center/cover no-repeat;
  overflow: visible;
}

.section-hero-2 .title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-hero-2 .desc {
  font-size: 20px;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  text-align: center;
  line-height: 1.3;
}

.section-hero-2 .btn-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.video-card {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  z-index: 5;
}

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

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-circle i {
  font-size: 28px;
  color: #fff;
  margin-left: 4px;
}

/* New Section 2 */
.section-optimized {
  position: relative;
  padding: 0px;
  background: #f5f7fa;
  overflow: hidden;
  margin-top: -100px;
}

.section-3{
  padding: 100px 0px 50px 0px;
}

.section-optimized .inner {
  /* max-width: 1170px; */
  margin: 0 auto;
  position: relative;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.visual-wrapper {
  position: relative;
  flex: 1 1 500px;
  min-width: 300px;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.content-side h2 {
  position: relative;
  /* display: inline-block;  */
  /* ensures relative positioning works */
}

.h2-absolute-img {
  position: absolute;
  top: 0;
  width: 180px;
  /* left: 20px; */
  height: 40px;
  object-fit: contain;
}

.accent-shape {
  position: absolute;
  left: 0;
  top: 10%;
  width: 100%;
  height: 100%;
  max-width: 500px;
  background: var(--dark);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  border-radius: 16px;
  z-index: 1;
}

.visual-inner {
  position: relative;
  width: 100%;
  max-width: 560px;
  /* border-radius: 16px; */
  overflow: hidden;
  /* background: white; */
  box-shadow: var(--shadow);
  z-index: 2;
}

.visual-inner img {
  width: 100%;
  height: auto;
  display: block;
}
  
.content-side {
  flex: 1 1 420px;
  min-width: 280px;
  padding: 1rem 1.5rem;
}
.content-side h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f1f44;
}

.content-side img{
  width:160px;
}
.content-side p {
  font-size: 20px;
  margin-top:20px;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #1f2d3a;
}
.content-side .btn-learn {
  background: #f5b318;
  border: none;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.content-side .btn-learn:hover {
  filter: brightness(0.95);
  color:#000;
}

.card-content{
  margin-top:20px
}

.section-hero-3 {
  position: relative;
  padding: 2rem 1rem 0;
  overflow: visible;
  text-align: center;
}
.section-hero-3 .title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}
.section-hero-3 .desc {
  font-size: 20px;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  text-align: center;
  line-height: 1.3;
}

  @media (max-width: 992px) {
    .section-hero-2 {
      padding: 3rem 0;
    }
    .section-hero-3 {
      padding: 3rem 0 0;
    }
    .video-card {
      width: 100%;
    }
    .section-optimized .inner {
      /* flex-direction: column-reverse; */
      padding: 0;
    }
    .visual-wrapper {
      margin-top: 1rem;
    }
    .accent-shape {
      top: 5%;
    }
  }

  .features-section {
  background: white;
  font-family: 'Roboto', sans-serif;
  padding: 6rem 1rem !important;
}
.feature-card {
  background: #fff;
  border: 2px solid #c5cbd7;
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 20px 60px rgba(0,0,80,0.04);
}
.icon-circle {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 76px;
  background: #0f1f44;
  border-radius: 50%;
  border: 3px solid #f5b318;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.icon-circle .inner-circle i {
  color: white;
  font-size: 28px;
}
.feature-card .title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #0f1f44;
}
.feature-card .description {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #1f2d3a;
  margin: 0 auto;
  max-width: 100%;
}
.feature-card .underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #f5b318;
  border-radius: 4px;
  margin-bottom: -2px;
}
@media (max-width: 991px) {
  .feature-card {
    padding-top: 2.5rem;
  }
  .icon-circle {
    top: -26px;
    width: 68px;
    height: 68px;
  }
  .feature-card .title {
    font-size: 1.25rem;
  }
  .feature-card .description {
    font-size: 0.9rem;
  }
}



.testimonial-slider {
text-align: center;
padding: 4rem 1rem;
position: relative;
background: url('../images/testimoniial.png') center/cover no-repeat;
}

.testimonial-slider .title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
  }

.testimonial-wrapper {
display: flex;
justify-content: center;
align-items: center;
position: relative;
max-width: 1200px;
margin: 0 auto;
padding-top: 4rem;
}

.testimonial-wrapper {
position: relative;
display: flex;
justify-content: center;
align-items: center;
gap: 20px; /* spacing between cards */
overflow: visible; /* allow cards to overlap outside */
}

.testimonial-card,
.blurred-card {
position: absolute;
width: 60%; /* center card width */
transition: all 0.5s ease;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-radius: 10px;
background: #fff;
z-index: 1;
}

.active-card {
position: relative;
width: 55%;
z-index: 3;
transform: scale(1.05);
}

.left-blur {
left: -0%;

z-index: 2;
}

.right-blur {
  right: -0%;
  z-index: 2;
}

.blurred-card {
  width: 600px;
  min-height: 350px;
  padding: 1rem 2rem;
  background: #fff;
  border-radius: 16px;
  filter: blur(2px) brightness(0.95);
  border: 1px solid rgba(11, 32, 65, 0.8);
  border-radius: 10px;
}

.active-card {
  height: 330px;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(11, 32, 65, 0.8);
  border-bottom: 5px solid;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  transition: all 0.5s ease;
}

.quote-icon {
  font-size: 3rem;
  color: #003366;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.testimonial-name {
  margin-top: 1.5rem;
  font-weight: bold;
  font-size: 1.1rem;
}

.testimonial-role {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-nav {
  margin-top: 2rem;
}

.testimonial-nav button {
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border: none;
  border-radius: 50%;
  background: #4a4a4a;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

#prevBtn{
  background: #fff;
  color:#000;
  box-shadow: 0px 30px 80px rgb(0 0 0 / 36%);
}

.testimonial-nav button:hover {
  background: #005599;
}

.slide-out-left {
  animation: slideOutLeft 0.3s forwards;
}
.slide-out-right {
  animation: slideOutRight 0.3s forwards;
}
.slide-in-left {
  animation: slideInLeft 0.3s forwards;
}
.slide-in-right {
  animation: slideInRight 0.3s forwards;
}

@keyframes slideOutLeft {
to { transform: translateX(-100%); opacity: 0; }
}
@keyframes slideOutRight {
to { transform: translateX(100%); opacity: 0; }
}
@keyframes slideInLeft {
from { transform: translateX(-100%); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
@keyframes slideInRight {
from { transform: translateX(100%); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}

.pt-10{
padding-top: 50px;
}

.pricing-section {
padding: 60px 1rem;
background: url('../images/pricing.png') top/cover no-repeat;
margin-bottom: 60px;
}

.pricing-section .container {
max-width: 1200px;
margin: auto;
text-align: center;
}

h2 {
font-size: 40px;
font-weight: 700;
color: #2c2f51;
margin-bottom: 10px;
}

.pricing-underline {
width: 100px;
height: 4px;
background: #192244;
border-radius: 5px;
margin: 10px auto 40px;
position: relative;
}

.pricing-underline-highlight {
width: 40px;
height: 4px;
background: #ffc107;
position: absolute;
left: 50%;
top: 0;
transform: translateX(-50%) scaleX(1.6);
}

.pricing-cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 8px;
}

.pricing-card {
width: 210px;
background: #fff;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid rgba(12,32,63,0.46);
border-radius: 5px;
}

.pricing-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
padding: 20px 20px 40px 20px;
color: #fff;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 80%, 0 60%);
}

.pricing-header.startup { background: #6b6c7e; }
.pricing-header.bronze { background: #9A8564; }
.pricing-header.silver { background: #aaa9ad; }
.pricing-header.gold { background: #F4C002; }
.pricing-header.platinum { background: #CCCBC9; color: #888}

.pricing-header h3 {
margin: 0;
font-weight: 600;
font-size: 18px;
}

.pricing-header p {
font-size: 24px;
font-weight: 700;

}

.pricing-header label {
font-size: 40px;
font-weight: 700;

}

.pricing-header span {
font-size: 16px;
font-weight: 400;
}

.pricing-body {
padding: 0px 20px 20px 20px;
background: #fff;
border: 1px solid #eee;
border-top: none;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}

.pricing-body .title {
font-weight: 600;
color: #2c2f51;
}

.pricing-body p {
color: #888;
}

.pricing-body a {
display: inline-block;
margin-top: 15px;
padding: 10px 15px;
background: #ffc107;
color: #fff;
font-weight: 600;
border-radius: 20px;
font-size: 14px;
text-decoration: none;
}

@media (max-width: 992px) {
/* .pricing-cards {
  flex-direction: column;
  align-items: center;
} */
/* .pricing-card {
  width: 90% !important;
} */
}

.cta-section {
  background: linear-gradient(to right, #f2f5fb, #e9edf6);
  padding: 20px 20px 0;
  border-radius: 20px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto -95px;
  z-index: 10;
  position: relative;
}

.cta-content {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 40px;
}

.cta-left {
flex: 1 1 45%;
text-align: center;
}

.cta-img {
max-width: 100%;
border-radius: 12px;
}

.cta-right {
flex: 1 1 45%;
}

.cta-right h2 {
font-size: 32px;
color: #0d1c4c;
margin-bottom: 10px;
line-height: 1.4;
}

.cta-right .underline {
width: 80px;
height: 4px;
background: #0d1c4c;
margin: 10px 0 20px;
border-radius: 2px;
}

.cta-right p {
font-size: 16px;
color: #5b5e6d;
font-weight: 500;
margin-bottom: 25px;
max-width: 450px;
}

.cta-btn {
display: inline-block;
background-color: #ffc107;
color: #fff;
padding: 14px 28px;
border-radius: 30px;
text-decoration: none;
font-weight: bold;
font-size: 16px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: background 0.3s ease;
}

.cta-btn span {
margin-left: 8px;
}

.cta-btn:hover {
background-color: #e0a800;
}

@media (max-width: 768px) {
.cta-content {
  flex-direction: column;
  text-align: center;
}

.cta-right h2 {
  font-size: 24px;
}

.cta-right p {
  font-size: 15px;
}

.codeimg{
width: 100% !important;
}

.cta-section{
padding: 20px;
}
.active-card{
height: 422px;
}
.content-side{
flex: 1;
}
.integration-cards{
padding-bottom: 1rem;
}
}

@media (max-width: 600px) {
.justify-content-center{
gap:80px;
}
.blurred-card{
display: none;
}
.active-card{
height: 100%;
}
.highlight-card{
max-width: 350px;
}
.headerlogo{
width: 150px;
}
.integration-cards{
padding-bottom: 1rem;
}
.section-optimized{
padding: 6rem 1rem 4rem;
}
.footer{
padding: 10rem 2rem 2rem !important;
}
}
.footer {
background-color: #0b1d3a;
color: #fff;
padding: 5rem 1rem 2rem;
font-family: 'Segoe UI', sans-serif;
}

.footer-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
max-width: 1200px;
margin: auto;
gap: 30px;
}

.footer-col {
flex: 1 1 200px;
    padding: 80px 0px 80px 0px;
    border-left: 1px solid #ffffff33;
min-width: 200px;
}

.logo-col{
  border: none;
}

.footer-col h4 {
font-weight: bold;
margin-bottom: 20px;
color: #fff;
border-left: 3px solid #5d5f78;
padding-left: 15px;
}

.footer-col ul {
list-style: none;
padding: 0;
padding-left: 20px;
}

.footer-col ul li {
margin-bottom: 10px;
}

.footer-col ul li a {
color: #ccc;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-col ul li a:hover {
color: #fff;
}

.logo-col p {
color: #ccc;
margin-top: 5px;
line-height: 1.6;
}

.footer-logo {
margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  padding-left: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #233a5f;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #feb721;
  color: #FFF;
}

.social-icon a {
  color: #FFFFFF;
}

.social-icon a:visited {
  color: #FFFFFF;
}

.social-icon:visited {
  color: #FFFFFF;
}

.footer-bottom {
  text-align: center;
  color: #888;
  border-top: 1px solid #2a3b55;
  padding-top: 20px;
  font-size: 14px;
}
.codeimg {
  width: 70%;
}

/* Hamburger icon */
.hamburger {
  cursor: pointer;
  color: #1f2d3a;
  display: none;
}

/* Mobile menu default state */
.mobile-menu {
  display: none;
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 50, 0.08);
  border-radius: 10px;
  margin-top: 1rem;
  padding: 1rem;
}

.mobile-menu .nav-link {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.5rem 0;
  color: #1f2d3a;
}

.mobile-menu .nav-link:hover {
  color: #000;
}

/* Show hamburger on smaller screens */
@media (max-width: 991px) {
.hamburger {
  display: block;
}

.nav-pill {
  justify-content: space-between;
}

.mobile-menu.show {
  display: block;
}

.btn-login {
  width: 100%;
  margin-top: 10px;
}
}

.imgicon {
  width: 120px;
}

.pricing-cards.slider .pricing-card {
margin: 0 2.5px; /* 2.5px left + 2.5px right = 5px total */
}

/* Base card styling */




/* Button styling */

.pricing-card a:hover {
background-color: #ffaa00;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: rgb(255, 193, 7);
}

.slick-dots li button:before{
  font-size: 13px;
}

.slick-dots{
  display:none
}

/* Mobile tweaks */
@media (max-width: 576px) {
.pricing-card {
  max-width: 90%;
  margin: 0 auto;
}
}

/* responsive adjustments */
@media (max-width: 768px) {

  .banner {
    position: relative;
    background: url('../images/bannermob.png') center/cover no-repeat;
    color: white;
    padding: 1rem 1rem 16rem;
    overflow: hidden;
  }

  .banner-about {
    background: url('../images/banner-about-us-mobile.jpg') center/cover no-repeat;
  }

  .banner-blog {
    background: url('../images/banner-blog-mobile.jpg') center/cover no-repeat;
  }

  .banner-docs {
    background: url('../images/docs-bannermob.jpg') center/cover no-repeat;
  }

  .banner-contact {
    background: url('../images/banner-contact-mobile.jpg') center/cover no-repeat;
  }

  .banner-pricing {
    background: url('../images/banner-pricing-mobile.jpg') center/cover no-repeat;
  }

  .banner-overlay {
    text-align: center
  }

  .banner .display-heading {
    font-size: 50px;
  }

  .integration-cards {
    margin-top: -100px;
  }

  .integration-cards img {
    width: 150px;
  }

  .section-hero-2 .title {
    font-size: 35px;
    padding:0px 20px;
    line-height: 40px;
  }

  .section-hero-2 .desc {
    padding:0px 20px;
  }

  .section-hero-2 {
    background: url(../images/section2.png) center / contain no-repeat;
  }

  .section-optimized {
    padding: 5rem 0rem 0rem;
  }

  .visual-wrapper {
      margin-top: 0px;
  }

  .testimonial-wrapper {
    padding-top: 2rem;
  }

  .pricing-section {
    padding:60px 0px
  }

  .cta-content {
    flex-direction: column-reverse;
  }
  .cta-section {
    width: 90%;
    padding: 20px 10px 0px 10px;
  }
             
  .cta-right h2 {
    font-size: 30px;
  }

  .footer-col {
    flex: 0 0 40%;
    max-width: 50%;
    padding: 10px 20px 30px 20px;
    border-left: none;
    min-width: auto;
    box-sizing: border-box;
  }

  .footer-container {
    gap: 10px;
  }

  .logo-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .last-col {
      flex: 0 0 100%;
    max-width: 100%;
  }

  .testimonial-slider {
    background: url('../images/Group 101.png') center/cover no-repeat;
  }

  .content-side {
    padding: 5rem 1.5rem;
  }

  .pricing-section {
    background: url('../images/pricingmobile.png') top/cover no-repeat;
  }

  .pricing-body {
    padding: 0px 10px 20px
  }

  .active-card {
    position: relative;
    width: 90%;
  }

  .side-card-wrapper .card-custom {
    max-width: 350px;
  }

  .leftcard {
    margin-right: 0px;
  }

  .rightcard {
    margin-left: 0px;
  }

  .features-section h2 {
    font-size: 1.75rem;
  }

  .section-hero-2 h2 {
    font-size: 1.75rem;
  }

  .row {
    gap: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cta-right h2 {
    font-size: 20px;  
  }

  .cta-btn {
    font-size: 12px;
    padding: 10px 15px;
  }

  .cta-right p {
    font-size: 12px;
  }
}
