@font-face {
  font-family: 'AvenirLight';
  src: url('fonts/Avenir-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


body {
  background-color: #24357d;
  font-family: 'AvenirLight', sans-serif !important;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.navbar-toggler {
  background-color: #24357d;
  border-radius: 30px 30px 30px 30px;
}

.hero-title {
  font-size: 5.0rem;
  font-weight: 900;
  color: #25377A;
}

.btn-outline-custom:hover {
  color: #25377A;
  border-color: #25377A;
  background-color: #FBFBFB;
}

.btn-outline-custom {
  background-color: #25377A;
  color: #fff;
}

.navbar-nav .nav-link {
  margin-right: 1.5rem;
  /* font-weight: bold; */
}

.img-fluid {
  margin-top: 50px;
}

.testimonial-section {
  height: 630px;
}

@media (max-width: 768px) {

  .hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
  }
  .container {
    font-size: 1rem;

    text-align: center;
  }

}

/* MOBILE FULL SCREEN MENU */
@media (max-width: 991px) {

  #navMenu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #FFC107;
    z-index: 9999;
    transition: top 0.5s ease;
    padding-top: 80px;
  }

  /* when menu opens */
  #navMenu.show {
    top: 0;
  }

  /* center menu items */
  #navMenu .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  #navMenu .nav-link {
    font-size: 18px;
    color: #24357d;
    font-weight: 600;
  }

  /* buttons styling */
  #navMenu .btn-outline-custom {
    background-color: #24357d;
    color: #fff;
    border-radius: 25px;
  }

  /* toggle button above menu */
  /* Button reset */
  .custom-toggler {
    padding: 0;
  }

  /* Blue circular button */
  .custom-toggler .navbar-toggler-icon {
    width: 52px;
    border: 2px solid #fff;
    height: 52px;
    background-color: #1f3c88;
    border-radius: 50%;
    position: relative;
  }

  /* Common line style */
  .custom-toggler .navbar-toggler-icon::before,
  .custom-toggler .navbar-toggler-icon::after,
  .custom-toggler .navbar-toggler-icon span {
    content: "";
    position: absolute;
    left: 13px;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: 0.3s ease;
  }

  /* Hamburger lines */
  .custom-toggler .navbar-toggler-icon::before {
    top: 18px;
  }

  .custom-toggler .navbar-toggler-icon span {
    top: 24px;
  }

  .custom-toggler .navbar-toggler-icon::after {
    top: 30px;
  }

  /* ===== OPEN STATE (CLOSE ICON) ===== */
  .custom-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 24px;
  }

  .custom-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 24px;
  }

  .custom-toggler[aria-expanded="true"] .navbar-toggler-icon span {
    opacity: 0;
  }
}

/* MOBILE MENU PANEL */
@media (max-width: 991px) {

  .mobile-menu {
    background: #FFC107;
    /* yellow */
    min-height: 100vh;
    position: relative;
    padding-top: 60px;
  }

  /* CLOSE BUTTON */
  .menu-close-btn {
    position: absolute;
    top: 20px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #1f3c88;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
  }
}


.modal {
  z-index: 99999 !important;
}

.modal-backdrop {
  z-index: 9998 !important;
}

/* Right-side fixed modal */
.modal-dialog.modal-right {
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  height: 100%;
  max-width: 420px;
  /* form width */
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.modal.fade .modal-dialog.modal-right {
  transform: translateX(100%);
}

.modal.fade.show .modal-dialog.modal-right {
  transform: translateX(0);
}

.modal-content {
  height: 100%;
  border-radius: 0;
  display: flex;
  flex-direction: column;
}

.modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding-top: 20px;
}


.custom-input {
  width: 100%;
  height: 48px;
  padding: 10px 16px;
  border-radius: 24%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: transparent;
  color: #fff;
}

.custom-input:hover {
  width: 100%;
  height: 48px;
  padding: 10px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: black;
  color: #fff;
}

.custom-input:focus {
  background-color: transparent;
  color: #fff;
  border-color: #ffc107;
  box-shadow: none;
}

textarea.custom-input {
  height: auto;
  min-height: 120px;
  border-radius: 16px;
  resize: none;
}


.form-label {
  height: 38px;
  display: flex;
  align-items: flex-end;
  font-size: 14px;
}


@media (max-width: 778px) {
  .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.btn:hover{
  color: #25377A;
  background-color: #fff;
  border: 1px solid #25377A;


}



.delivery-wrapper {
  background: #ffffff;
  padding: 90px 60px;
  max-width: 1200px;
  position: relative;
  box-shadow: 2px 2px 2px 2px #FBFBFB;
  z-index: 10;
  margin-top: -90px;
}

.hero-content {
  opacity: 0;
  transform: translateX(120px);
  animation: slideFromRight 1s ease-out forwards;
  animation-delay: 0.9s;
}

/* Animation */
@keyframes slideFromRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.delivery-title {
  font-size: 42px;
  font-weight: 900;
  color: #0B2B5E;
  line-height: 1.25;
}


.delivery-title span {
  color: #F5A400;
}

.delivery-desc {
  color: #000;
  font-size: 16px;
  max-width: 760px;
  margin: 25px auto 0;
  line-height: 1.7;
}

.delivery-item img {
  height: 130px;
}

.delivery-item h6 {
  font-size: 26px;
  margin-top: 20px;
  font-weight: 700;
  color: #000;
}

@media (max-width: 768px) {
  .delivery-wrapper {
    padding: 60px 25px;
  }

  .delivery-title {
    font-size: 32px;
  }
}

.curve-section {
  height: 260px;
  background-image: url("images/background.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}


.content-section {
  background-color: #ffffff;
  padding: 80px 0;
  margin-top: -120px;
  position: relative;
  z-index: 5;
}

.mt-5 a {
  background-color: #1f2f6c;
  color: #fff;
  border: none;
  opacity: 0;
  transform: translateX(150px);
  animation: slideFromRight 1s ease-out forwards;
  animation-delay: 1.9s;

}

@keyframes slideFromRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mt-5 a:hover {
  background-color: #fff;
  border: 1px solid #1f2f6c;
  color: #1f2f6c;

}

.title {
  font-size: 42px;
  font-weight: 900;
  color: #1F2F6C;
  line-height: 1.3;
}

.title span {
  color: #F5A400;
}

.feature-icon {
  height: 90px;
  margin-bottom: 20px;
}

.delivery-wrapper {
  opacity: 0;
  transform: translateY(100px);
  animation: slideUp 1s ease-out forwards;
  animation-delay: 1.3s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-title {
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 17px;
  color: #4B5563;
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}


.connect-btn {
  background-color: #243A7A;
  border: none;
  margin-left: 200px;
}

.connect-btn:hover {
  background-color: #1c2f66;
}

@media (max-width: 768px) {
  .title {
    font-size: 30px;
  }

  .content-area {
    padding: 80px 0 100px;
    margin-top: -90px;
  }
}

@media (max-width: 768px) {
  .curve-section {
    height: 180px;
  }

  .content-section {
    margin-top: -80px;
    padding: 60px 0;
  }

  .title {
    font-size: 30px;
  }
}

.partners-section {
  padding: 120px 0;
  background-color: #ffffff;
}

.partners-title {
  font-size: 52px;
  font-weight: 700;
  color: #1F2F6C;
  line-height: 1.3;
}

.partners-title span {
  color: #F5A400;
}


.logo-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  height: 80px;
  padding: 20px;
  
  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

  .logo-card img {
  height: 30px;
  display: block;
  margin: auto;
}




.more-text {
  font-size: 14px;
  color: #1F2F6C;
  font-weight: 500;
  text-align: center;
}


.btn.partner-btn {
  background-color: #243A7A;
  color: #fff;
  border: none;
  animation: btnFromRight 1s ease-out forwards;

}

@keyframes btnFromRight {
  from {
    transform: translateX(120px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.btn.partner-btn:hover {
  background-color: #fff;
  border: 1px solid #1f2f6c;
  color: #1f2f6c;
}


.partner-img {
  max-width: 90%;
  animation: slideFromRight ease-out forwards;
  animation-duration: 2.2s;
}

@keyframes slideFromRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}


@media (max-width: 768px) {
  .partners-title {
    font-size: 30px;
  }

  .partners-section {
    padding: 80px 0;
  }

  #partner-btn {
    margin-left: 0; 
  }
}

.testimonial-section {
  background-color: #263b7a;
  position: relative;
}

.testimonial-card {
  background: #fff;
  border-radius: 80px;
  padding: 70px 60px 90px;
  max-width: 900px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  max-width: 700px;
  margin: 0 auto 30px;
}

.testimonial-name {
  color: #f4a100;
  font-weight: 600;
}

#testimonialCarousel1 {
  animation: carouselFromRight ease-out forwards;
  animation-duration: 2.5s;
}

@keyframes carouselFromRight {
  from {
    transform: translateX(150px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}


.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
}

.carousel-indicators .active {
  opacity: 1;
}


.testimonial-box-img {
  position: absolute;
  right: 90px;
  bottom: -40px;
  width: 120px;
}

.testimonial-card {
  background: #fff;
  border-radius: 80px;
  padding: 70px 60px 110px;
  max-width: 900px;
  position: relative;
}


.carousel-indicators {
  position: absolute;
  bottom: 30px;
  margin-bottom: 0;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #fff;
  margin: 0 6px;
  opacity: 1;
}

.carousel-indicators .active {
  opacity: 1;
}


.logo-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  padding: 24px;
  text-align: center;
}

.logo-card img {
  max-height: 40px;
  width: auto;
}

.integration-section {
  background-color: #ffffff;
  background-image: url("images/background.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  padding-top: 180px;
  padding-bottom: 80px;
}


.heading {
  font-size: 36px;
  font-weight: 700;
  color: #1f2b5a;
}

.heading span {
  color: #f5a400;
}


.divider {
  width: 2px;
  height: 260px;
  background-color: #f5a400;
  margin: auto;
}


.logo-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.logo-card img {
  max-width: 120px;
}



.integration-section {
  background: #fff;
  padding: 80px 60px;
}

.integration-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}


.integration-left {
  flex: 1;
  border-right: 3px solid #F9B500;
}

.integration-left h2 {
  font-weight: 800;
  font-size: 36px;
  color: #1d2b64;
  margin-bottom: 30px;
}

.integration-left h2 span {
  color: #f9a825;
}

.integration-left img {
  width: 100%;
  max-width: 300px;
  margin: 30px 0;
}

.connect-btn {
  background: #233a7d;
  color: #fff;
  border: none;
  padding: 14px 34px;
  border-radius: 30px;
  font-size: 16px;
  animation: btnFromRight 3s ease-out forwards;
}

@keyframes btnFromRight {
  from {
    transform: translateX(120px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}


.connect-btn:hover {
  background: #fff;
  color: #233a7d;
  border: 2px solid #233a7d;
}

/* RIGHT LOGOS */
.integration-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.logo-box {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  max-width: 120px;
  width: 100%;
}



@media (max-width: 991px) {

  .integration-section {
    padding: 60px 30px;
  }

  .integration-container {
    flex-direction: column;
    gap: 40px;
  }

  .integration-left {
    border-right: none;
    text-align: center;
  }

  .integration-left img {
    margin: 20px auto;
  }

  .connect-btn {
    display: block;
    margin: 20px auto 0;
  }

  .integration-right {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .integration-section {
    padding: 40px 20px;
  }

  .integration-left h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .integration-left img {
    max-width: 260px;
  }

  .integration-right {
    gap: 15px;
  }

  .logo-box img {
    max-width: 100px;
  }
}

.integration-right {
  background-color: #ffff;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 160px);
  gap: 24px;
  justify-content: center;
}

.logo-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.py-5 {
  background-color: #fff;

}

.logo-box img {
  max-width: 120px;
  max-height: 40px;
}

.section-title {
  font-size: 45PX;
  font-weight: 800;
  color: #1d2b7a;
}

.section-title span {
  color: #f5b400;
}

.feature-card img {
  height: 140px;
}

.feature-card h5 {
  font-size: 25px;
  font-weight: 700;
  margin-top: 20px;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  max-width: 260px;
  margin: 0 auto;
}

.cta-btn {
  background: #1d2b7a;
  color: #fff;
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 200px;
  animation: btnFromRight 3s ease-out forwards;
}

@keyframes btnFromRight {
  from {
    transform: translateX(150px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.cta-btn:hover {
  color: #1d2b7a;
  background: #fff;
  border: 1px solid #1d2b7a;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}


.aa {
  margin-top: 90px;
}


.aa h2 {
  color: #061952;
  font-weight: 800;
  font-size: 50px;
  text-align: center;
  margin-bottom: 100px;
}


.bb {
  background-color: #24357d;
  margin-bottom: -190px;
  border-radius: 10px;
  min-height: 300px;
  margin-left: 80px;
  position: relative;
  padding: 40px 50px 40px 520px;
  max-width: 950px;
}

.bb h3 {
  font-size: 25px;
  color: #fff;
  font-weight: 900;
}

.bb p {
  font-size: 20px;
  color: #fff;
  margin-top: 25px;
  line-height: 1.5;
}

/* Images */
.cc img {
  position: absolute;
  left: 110px;
  z-index: 99999;
  top: 5275px;
  bottom: -20px;
  /* height: 450px; */
  border-radius: 10px;
}

.dd {
  position: absolute !important;
  z-index: 99999;
  left: 40px !important;
  width: 250px !important;
  height: 50px !important;
  margin-top: 80px !important;
}

.ee {
  position: absolute !important;
  width: 150px !important;
  margin-top: 250px !important;
  z-index: 99999;
  margin-left: 284px !important;
  height: 40px !important;
 
}

.cc img,
.dd img,
.ee img {
  opacity: 0;
  animation: imgFromRight 1s ease-out forwards;
}

/* delays */
.cc img {
  animation-delay: 0s;
}

.dd img {
  animation-delay: 0.3s;
}

.ee img {
  animation-delay: 0.6s;
}

@keyframes imgFromRight {
  from {
    transform: translateX(150px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */
@media (max-width: 992px) {
  .bb {
    padding: 40px 30px 40px 420px;
    text-align: center;
  }

  /* .cc img {
    height: 420px;
  } */
}

@media (max-width: 768px) {
  .bb {
    background: none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    min-height: auto;
  }

  .cc {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .cc img {
    position: relative;
    /* height: 320px; */
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 80%;
  }

  .dd img {
    position: absolute;
    /* top: 300px; */
    left: 20px;
    width: 100px;
    top: 8390px;
    border-radius: 40%;
    transform: none;
    border-radius: 34px;
    ;
  }

  .ee img {
    position: absolute;
    bottom: 40px;
    right: -70px;
    width: 160px;
    top: 8510px;
    border-radius: 34px;
  }

  .bb h3 {
    color: #24357d;
    font-size: 23px;
  }

  .bb p {
    color: #000;
    margin-top: 20px;
    font-size: 20px;
  }

}

@media (max-width: 468x) {
  .aa h2 {
    font-size: 36px;
    color: blue;
  }

  .bb h3 {
    font-size: 20px;
  }

  .bb p {
    font-size: 16px;
    color: black;
  }

  .cc img {
    height: 280px;
  }

  /* .dd img,
  .ee img {
    width: 170px;
  } */
}

/* .container1.my-5{
  margin-left: 270px;
  margin-top: 150px;
} */
#col {
  margin-left: 270px;
  margin-top: 350px;

}

.delivery-card {
  background: #F9B500;
  height: 410px;
  margin-right: 100px;
  border-radius: 10px;
  /* margin: 300px 100px; */
  position: relative;
  overflow: visible;
}

/* TEXT AREA */
.delivery-card h2 {
  color: #061975;
  font-weight: 700;
  font-size: 26px;
}

.delivery-card p {
  color: #061975;
  font-size: 16px;
  line-height: 1.6;
}

/* BUTTON */
.contact-btn {
  border: 2px solid #061975;
  color: #061975;
  padding: 12px 36px;
  border-radius: 30px;
  background: transparent;
}

.contact-btn:hover {
  background: #fff;
}

/* IMAGE AREA */
.image-wrapper {
  position: relative;
  transform: translateY(-60px);
  /* right: -40px; */
  /* left: 550px; */
  z-index: 999;
  /* top:450px; */
}

.image-wrapper.img {
  width: 70%;
  height: 550px;
  margin-right: 100px;
  border-radius: 20%;
  opacity: 0;
  animation: slideFromRight 1s ease-out forwards;
  animation-delay: 0s;
}

/* Bubble positions */
.chat-1 img {
  /* top: 20%; */
  left: 10%;
  z-index: 99999;
  position: absolute;
  bottom: 70%;
  border-radius: 15px;
  animation-delay: 0.4s;
}

.chat-2 img {
  /* top: 50%; */
  bottom: 35%;
  border-radius: 15px;
  z-index: 99999;
  height: 60px;
  position: absolute;
  right: 6%;
  animation-delay: 0.7s;

}

.chat-3 img {
  /* bottom: 12%; */
  left: -5%;
  bottom: 20%;
  border-radius: 15px;
  z-index: 99999;
  position: absolute;
  animation-delay: 1s;
}

@keyframes slideFromRight {
  from {
    transform: translateX(160px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 991px) {

  /* REMOVE YELLOW BACKGROUND */
  .delivery-card {
    background: none;
    height: auto;
    margin: 40px 0;
    padding: 0;
    border-radius: 0;
  }

  /* REMOVE EXTRA LEFT OFFSET */
  /* #col {
    margin-left: 0;
    margin-top: 0;
  } */

  /* TEXT ALIGN
  .delivery-card h2 {
    font-size: 22px;
  }

  .delivery-card p {
    font-size: 15px;
  }

  /* IMAGE RESET */
  /* .image-wrapper {
    transform: none;
    right: 0;
    top: 0;
    margin-top: 25px;
  } */

  /* .image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    
  } */
}



/* RESPONSIVE */


.dashboard-section {
  background-color: #25377A;
  width: 100%;
  border-radius: 3%;
  margin-top: 150px;
  /* padding-bottom: 100px; */
}
.dashboard-img {
  width: 100%;
  opacity: 0;
  animation: dashboardFromRight 1s ease-out forwards;
}

@keyframes dashboardFromRight {
  from {
    transform: translateX(150px);
    opacity: 0;
  }

  to {
    transform: translateX(0);

    opacity: 1;
  }
}

.dashboard-content h2 {
  font-weight: 800;
  color: #fff;
  padding-top: 30px;
  

}

.dashboard-content p {

  color: #fff;
  padding-top: 25px;
  
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .dashboard-img{
    margin-bottom: -50px;
  }
  .dashboard-section {
    background-color: transparent;
  }

  .dashboard-img {
    border-radius: 20px 20px 0 0;
  }
  .dashboard-content h2 {
    color: #25377A
  }

  .dashboard-content p {
    color: #25377A
  }

  .dashboard-content {
    border-radius: 0 0 20px 20px;
    /* padding: 40px; */
    /* font-family: sans-serif; */

    color: #070707;
  }
}



/* SECTION TITLE */
.sec1 h1 {
  font-size: 74px;
  color: #252232;
  font-weight: 800;
}

.sec1 {
  margin-top: 150px;
}

/* LOGOS */
.a1 img {
  max-height: 60px;
  object-fit: contain;
}

/* ARTICLE CARD */
.a3 {
  background: #ffffff;
  border-radius: 20px;
  padding: 15px;
  height: 100%;
}

.a3 img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
}

.a3 h3 {
  margin-top: 25px;
  font-size: 20px;
  color: #252232;
  line-height: 1.4;
  font-weight: 600;
}

/* BUTTON */
.btt {
  height: 48px;
  width: 180px;
  border-radius: 30px;
  margin-top: 20px;
  background-color: #597898;
  border: none;
}

.btt a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .sec1 h1 {
    font-size: 44px;
  }
}

@media (max-width: 576px) {
  .sec1 h1 {
    font-size: 34px;
  }

  .btt {
    width: 100%;
  }
}

.onboarding {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 100px;
  text-align: center;
}

.onboarding h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1e2a78;
  margin-bottom: 8px;
}

.onboarding .subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  margin-bottom: 70px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 140px;
  align-items: flex-start;
}

.step img {
  height: 190px;
  margin-bottom: 28px;
}

.step h3 {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step p {
  padding-top: 20px;
  font-size: 14.5px;
  font-weight: 900;
  /* line-height: 2.3; */
  color: #222;
  max-width: 300px;
  margin: 0 auto;
  word-spacing: 5px;
}

.btt1 {
  margin-top: 50px;
  background-color: #233a7d;
  height: 50px;
  width: 200px;
  border-radius: 22px;
  animation: btnFromRight 3s ease-out forwards;
}
@keyframes btnFromRight {
  from {
    transform: translateX(120px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.onboard-btn {
  background-color: #25377A;
  color: #fff;
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 22px;
  border: 1px solid #25377A;
  transition: all 0.3s ease;
}

/* Hover effect */
.onboard-btn:hover {
  background-color: #fff;
  color: #25377A;
  margin-top: 50px;   /* tumhara original effect */
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .onboarding h1 {
    font-size: 32px;
  }

  .onboard-btn{
    margin-left: 10px;
  }
}

.footer {
  background-color: #233a7d;
  padding: 60px 0 30px;
}

/* Logo */
.pin-logo img {
  max-width: 200px;
}

/* Paragraph */
.para p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  max-width: 900px;
  margin: auto;
}

/* Footer links */
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Icons */
.icon a {
  color: #ffffff;
  font-size: 22px;
  margin: 0 10px;
}

.icon a:hover {
  color: #25d366;
}

/* Address */
.address a {
  color: #e6e6e6;
  font-size: 14px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .para p {
    font-size: 15px;
  }
}

/* OFFCANVAS FIX */
.offcanvas {
  background-color: #1f2f6b;
  width: 420px;
  z-index: 1055 !important;
}

.offcanvas-backdrop {
  z-index: 1050 !important;
}

/* INPUT STYLE */
.custom-input {
  background: transparent;
  border: 1.5px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
}

.custom-input:focus {
  background: transparent;
  color: #ffffff;
  border-color: #ffb703;
  box-shadow: none;
}

.mob {
  display: none;
}

.dash {
  display: block;
}

@media (max-width: 768px) {
  .mob {
    display: block;
  }

  .dash {
    display: none;

  }

  #col {
    margin-left: 0;
    margin-top: 100px;
  }

  /* .delivery-card{
    padding-left: 170px;
  } */
  .image-wrapper img {
    width: 100%;
    height: auto;
    /* margin-left:20px; */
    border-radius: 16px;

  }

  .chat-1 img {
    height: 40px;
    width: 240px;
    left: 5px;
  }

  .chat-2 img {
    height: 40px;
    width: 200px;
    left: 15
    
    
    0px;
  }

  .chat-3 img {
    height: 40px;
    width: 200px;
    right: 100px;
  }

  .testimonial-section {
    height: 730px;
  }
}

.btn.btn-warning:hover {
  background-color: #fff;
  border: 2px solid #F9B500;

}
