      *, body, html {
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  }
  /*header start*/ 
  /* Reset & global styles */
  *, body, html {
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  }
  /*header start*/ 
  /* Reset & global styles */
  *, body, html {
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  }
  /* Header styles */
  #navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  background: linear-gradient(180deg, #0D3665, #1A6DCB);
  position: fixed;
  color: white;
  }
  .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  }
  .navbar-brand img {
  width: 101px;
  transition: width 0.3s ease;
  }
  .navbar-toggler,
  button#mobile-menu-toggle {
  border: none;
  background: transparent;
  display: none;
  }
  button#mobile-menu-toggle {
  border-radius: 5px;
  background-color: white;
  color: #053A79;
  padding: 5px;
  }
  .navbar-toggler-icon {
  width: 30px;
  height: 3px;
  background-color: #053A79;
  position: relative;
  }
  .navbar-toggler-icon:before,
  .navbar-toggler-icon:after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background-color: #053A79;
  position: absolute;
  transition: all 0.3s ease;
  }
  .navbar-toggler-icon:before {
  top: -10px;
  }
  .navbar-toggler-icon:after {
  top: 10px;
  }
  /* Nav styles */
  .navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: all 0.3s ease; /* Added transition to navbar */
  }
  .navbar-nav .nav-item {
  position: relative;
  }
  .navbar-nav .nav-link {
  font-size: 18px;
  color: white;
  /* padding: 10px 15px; */
  padding: 0px 15px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  }
  .navbar-nav .nav-link.active {
  border-radius: 11px;
  position: relative;
  }
  .navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  top: 35px;
  bottom: -2px;
  left: 8px;
  width: 86%;
  height: 2px;
  background-color: white;
  }
  .navbar-nav .dropdown:hover > .dropdown-menu {
  display: block;
  position: absolute;      
  top: 100%;               
  left: 0;                 
  z-index: 1000;           
  }
  .navbar-nav .dropdown-menu {
  margin-top: 0;
  margin-bottom: 0;        
  padding: 0;             
  }
  .navbar-nav .dropdown-menu {
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0;
  transform: translateY(-10px);
  }
  .navbar-nav .dropdown:hover > .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  }
  .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: #43B7E9;
  color: #fff;                 
  }
  .navbar-nav .dropdown > .dropdown-menu {
  transition: none;
  }
  button.btn.btn-light.custom-login-btn:hover {
    background-color: #ffffff !important;
    color: #006bcc !important;
    border-color: #006bcc !important;
    box-shadow: none !important;
}

button.btn.btn-light.custom-login-btn:hover i {
    color: #006bcc !important;
}
button.btn.btn-light.custom-login-btn {
    transition: all 0.3s ease;
}
  /* Language dropdown */
  .language-item {
  display: flex;
  align-items: center;
  }
  .lang-flag {
  width: 20px;
  height: 14px;
  margin-right: 5px;
  border-radius: 2px;
  }
  .lang-name {
  white-space: nowrap;
  }
  .dropdown-menu {
  min-width: 142px;
  padding: 0.5rem 0;
  transform: none; /* Remove the translate3d transformation */
  }
  .dropdown-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  /* padding: 6px 15px; */
      padding: 6px 36px;
  }
  /* Contact button */
  button.btn.btn-light {
  /* color: #053A79;
  font-weight: 500;
  white-space: nowrap;
  margin: 0 5px; */
       background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    margin: 0 5px;
    padding: 2px 9px;

    /* background-color: #053A79; */
  }

  button.btn.login-hover-fix {
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #fff !important;
  transition: all 0.3s ease;
}

button.btn.login-hover-fix:hover {
  background-color: #ffffff !important;
  color: #10447f !important;
  /* border-color: #006bcc !important; */
}

button.btn.login-hover-fix:hover i {
  color: #10447f !important;
}
/* Optional: Add transition for smooth effect */
.custom-login-btn {
    transition: all 0.3s ease;
}

  #languageDropdown {
  min-width: 150px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  /* gap: 6px; */
  }
  /* Initially hide the mobile menu */
  .navbar-nav {
  /* display: block; */
  }
  /* Show the menu when the 'show' class is added */
  .navbar-nav.show {
  /* display: block; */
  }
  /* Hamburger Icon Styles */
  .navbar-toggler-icon {
  width: 30px;
  height: 20px;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  }
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: black;
  transition: all 0.3s ease;
  }
  .navbar-toggler-icon::before {
  top: 0;
  }
  .navbar-toggler-icon::after {
  bottom: 0;
  }
  .navbar-toggler-icon.active::before {
  transform: rotate(45deg);
  top: 50%;
  }
  .navbar-toggler-icon.active::after {
  transform: rotate(-45deg);
  bottom: 50%;
  }
  .navbar-nav .dropdown-menu {
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0;
  transform: translateY(-10px);
  }
  .navbar-nav .dropdown:hover > .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  }
  .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: #43B7E9;
  color: #fff;
  }
  .navbar-nav .dropdown-menu {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  }
  /* Products link underlined on active state */
  /* Adding underline to the active dropdown link */
  .navbar-nav .nav-item.dropdown .nav-link.active {
  border-bottom: 2px solid white; /* The underline when active */
  position: relative;
  z-index: 2;
  }
  /* Ensure underline appears when the dropdown is open */
  .navbar-nav .nav-item.dropdown.show .nav-link {
  border-bottom: 2px solid white; /* Underline when dropdown is open */
  }








  /* Hide menu by default on mobile */
  @media (max-width: 991px) {
  .navbar-nav {
  /* display: none; */
  flex-direction: column;
  background-color: white;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 20px;
  }
  .navbar-nav.show {
  display: flex !important;
  }
  .nav-item {
  margin-bottom: 10px;
  }
  }
  /* Responsive styles */
  @media (max-width: 991px) {
  button#mobile-menu-toggle {
  display: block !important;
  z-index: 1001;
  }
  .navbar-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background-color: #053A79;
  padding: 20px 0;
  max-height: 0;
  overflow: hidden;
  text-align: left;
  align-items: flex-start;
  transition: max-height 0.3s ease, visibility 0s 0.3s; /* Updated transition */
  }
  .navbar-nav.show {
  display: flex;
  max-height: 484px;
  visibility: visible; 
  transition: max-height 0.3s ease, visibility 0s 0s; 
  }
  .navbar-nav .nav-link{
  padding: 6px 15px;
  }
  .navbar-nav .nav-link.active::after{
  content: '';
  position: absolute;
  top: 36px;
  bottom: -2px;
  left: 11px;
  width: 78%;
  height: 2px;
  background-color: white;	
  }
  .nav-link {
  padding: 8px 20px;
  }
  .dropdown-menu {
  position: relative !important;
  width: 100%;
  background-color: white;
  z-index: 1000;
  }
  .language-item {
  margin: 10px 20px 0;
  }
  }
  @media (max-width: 768px) {
  .navbar-brand img {
  max-width: 120px;
  }
  .container {
  padding: 0 15px;
  }
  }
  /* Remove transform on mobile */
  @media (max-width: 991px) {
  .dropdown-menu {
  min-width: 142px;
  padding: 0.5rem 0;
  transform: none !important; 
  }
  }
  .dropdown-menu {
  min-width: 142px;
  padding: 0.5rem 0;
  }
  /*header end*/
  /*Streamline Your Warranty section start */
  @keyframes moveImage {
  0% {
  opacity: 0;
  transform: translateY(50px); 
  }
  100% {
  opacity: 1; 
  transform: translateY(0); 
  }
  }
  .animate-image {
  opacity: 1; 
  transform: translateY(50px); 
  animation: moveImage 0.8s ease-in-out forwards; 
  }
  @keyframes slideInFromLeft {
  0% {
  opacity: 0;
  transform: translateX(-50%);
  }
  100% {
  opacity: 1;
  transform: translateX(0);
  }
  }
  .animate-text {
  animation: slideInFromLeft 0.8s ease-in-out forwards; 
  opacity: 0;
  }
  .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 10vw 5% 5vw 5%;
  padding-bottom: 50px;
  }
  .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  }
  .section-text {
  flex: 1;
  padding-right: 50px;
  }
  .section-text h1 {
  font-weight: 400;
  font-size: 37px;
  color: #053A79;
  line-height: 57px;
  }
  .section-text p {
  font-size: 21px;
  color: #053A79;
  margin: 20px 0;
  font-size: 18px;
  }
  .section-image {
  flex: 1;
  }
  .section-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-left: 20px;
  animation: moveImage 0.8s ease-in-out forwards; 
  }
  @media (max-width: 991px) {
  .section-content {
  padding: 12vw 5% 8vw 5%;
  }
  .container {
  /* align-items: center;
  text-align: center; */
  }
  .section-text {
  padding: 0 20px;
  margin-bottom: 30px;
  }
  .section-text h1 {
  font-size: 30px;
  }
  .section-text p {
  font-size: 18px;
  margin: 15px 0;
  text-align: left;
  }
  .section-text .btn {
  padding: 15px 30px;
  }
  ul {
  padding-left: 1rem;
  }
  .section-image img {
  max-width: 80%;
  margin-top: 20px;
  }
  }
  @media (max-width: 767px) {
  .section-content {
  padding: 15vw 3% 6vw 3%;
  }
  .section-text h1 {
  margin-top: 82px;
  font-size: 29px;
  line-height: 46px;
  }
  .section-text p {
  font-size: 15px;
  margin: 12px 0;
  }
  .section-text .btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  }
  .section-image img {
  max-width: 90%;
  margin-top: 15px;
  }
  }
  /*Streamline Your Warranty section end */
  /* fectures (Why GaranSafe?) section start */
  .new-section {
  background-color: #ECEFF3;
  padding: 50px 0;
  }
  .container {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  }
  .row {
  width: 100%;
  }
  .fectures_heading {
  font-size: 32px;
  color: #053A79;
  text-align: center;
  margin: 0 auto;
  font-weight: 400;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .section-item {
  margin-top: 23px;
  display: flex;
  margin-bottom: 40px;
  width: 100%;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .icon-container {
  display: flex;
  justify-content: flex-start;
  padding-right: 34px;
  align-items: flex-start;
  }
  .icon {
  width: 50px;
  height: auto;
  }
  .features_pra, .text-center.last-line {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .features_pra.in-view, .text-center.last-line.in-view {
  opacity: 1;
  transform: translateY(0);
  }
  .d-flex.box-4 {
  margin-top: 31px;
  }
  .text-container {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  }
  .text-container h3 {
  font-size: 24px;
  color: #053A79;
  margin: 0;
  padding: 0;
  font-weight: 600;
  }
  .features_pra:first-of-type {
  font-size: 18px;
  color: #053A79;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
  }
  .features_pra {
  font-size: 18px;
  color: #053A79;
  text-align: center;
  width: 75%;
  margin: 15px auto;
  line-height: 1.7;
  }
  .text-container p {
  font-size: 15px;
  color: #053A79;
  margin: 0;
  line-height: 1.6;
  width: 69%; 
  }
  .section-item.in-view, .fectures_heading.in-view {
  opacity: 1;
  transform: translateY(0);
  }
  .section-item.in-view.second {
  margin-bottom: 0;
  }
  .last-line {
  font-size: 18px;
  color: #053A79;
  margin: 0 auto;
  line-height: 1.6;
  width: 100%;
  text-align: center;
  margin-top: 40px;
  }
  @media (max-width: 992px) {
  .text-container p {
  font-size: 14px;
  width: 80%;
  }
  }
  @media (max-width: 768px) {
  .section-item {
  flex-direction: column;
  text-align: left;
  margin-bottom: 30px;
  }
  .d-flex.box-4 {
  margin-top: 0;
  }
  .fectures_heading {
  font-size: 29px;
  }
  .icon-container {
  margin-bottom: 20px;
  text-align: left;
  }
  .icon {
  margin: 0 auto;
  }
  .text-container {
  padding-left: 0;
  text-align: left;
  }
  .text-container h3 {
  font-size: 20px;
  margin-bottom: 10px;
  }
  .text-container p {
  font-size: 14px;
  text-align: left;
  width: 100%;
  }
  .features_pra:first-of-type {
  text-align: center;
  }
  .features_pra {
  font-size: 16px;
  width: 90%;
  line-height: 1.6;
  }
  }
  @media (max-width: 767.98px) {
  .new-section .col-12 {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-bottom: 0 !important;
  }
  .new-section .section-item {
  margin-bottom: 20px; /* reduce vertical gap */
  }
  .new-section .section-item:last-child {
  margin-bottom: 0; /* no bottom margin for last item */
  }
  .new-section .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  }
  }
  @media (max-width: 576px) {
  .fectures_heading {
  font-size: 26px;
  }
  .features_pra {
  font-size: 15px;
  width: 95%;
  line-height: 1.5;
  }
  }
  /*fectures(Why GaranSafe?) section end */
  /* table-section start */ 
  .table-section {
  background: linear-gradient(180deg, #0D3665, #1A6DCB);
  padding: 50px 0;
  }
  .table_heading h2 {
  margin: 0 15px;
  color: white;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  padding-bottom: 57px;
  list-style: 48px;
  }
  /* .table-section .container {
  background-color: white;
  display: flex;
  border-radius: 8px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
  overflow-x: auto;  
  } */
  /* .styled-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin: 0 auto;
  position: relative;
  overflow-x: auto;
  } */
  /* .styled-table th,
  .styled-table td {
  border: 1px solid #053A79;
  color: #053A79;
  padding: 15px;
  text-align: center;
  width: 25%;
  height: 100px;
  } */
  /* .styled-table th {
  font-weight: bold;
  color: #053A79;
  font-size: 18px;
  } */
  /* .styled-table td {
  position: relative;
  z-index: 1;
  }
  .styled-table td:first-child {
  left: 0;
  background-color: #fff;
  z-index: 2; 
  }
  .styled-table td img {
  max-width: 30px;
  height: auto;
  display: inline-block;
  } */
  .read-more-cell {
  text-align: center;
  padding: 20px 0;
  }
  /* .read-more-btn {
  width: 59%;
  background: linear-gradient(180deg, #0D3665, #1A6DCB);
  color: #fff; */
  /* background-color: #053A79; */
  /* color: white;
  border: none;
  padding: 11px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px; */
  /* .read-more-btn:hover {
  background: #43B7E9;
  color: white;
  } */
  /* Mobile Responsiveness */
  /* @media (max-width: 768px) {
  .table-section .container {
  padding: 15px; 
  overflow-x: auto; 
  width: 96%;
  } */
  /* .styled-table {
  width: 100%; 
  display: block;
  overflow-x: auto; 
  } */
  /* 
  .table_heading h2 {
  font-size: 22px; 
  } */
  /* button.read-more-btn {
  /* width: 79px; */
  /* width: 48%;
  padding: 6px;
  font-size: 12px; */
  */
  .styled-table th,
  .styled-table td {
  width: 50%; 
  font-size: 12px; 
  padding: 8px; 
  }
  .pricing-section {
  background: linear-gradient(180deg, #0D3665, #1A6DCB);
  padding: 50px 0;
  }
  .pricing-section .table_heading h2 {
  color: white;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  padding-bottom: 40px;
  }
  .pricing-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  }
  .plan-card {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 900px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  }
  .plan-card h3 {
  font-size: 22px;
  color: #053A79;
  text-align: center;
  }
  .plan-card p.price {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #43B7E9;
  /* margin-bottom: 20px; */
  }
  /* 
  .plan-card .description {
  margin-bottom: 20px;
  } */
  .plan-card {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Scroll remove */
  max-height: none !important;
  overflow-y: visible !important;
  }
  .read-more-btn {
  background-color: #43B7E9;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  }
  .plan-card ul {
  list-style: none;
  padding: 0;
  }
  .plan-card li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  }
  .plan-card li img {
  width: 20px;
  margin-right: 10px;
  }
  .plan-card li span {
  font-size: 14px;
  color: #053A79;
  }
  .plan-card.aos-init.aos-animate::-webkit-scrollbar {
  width: 6px; 
  }
  .plan-card.aos-init.aos-animate::-webkit-scrollbar-track {
  border-radius: 20px;
  background: #BFCBCF;
  }
  .plan-card.aos-init.aos-animate::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: #43B7E9;
  }
  .plan-card.aos-init.aos-animate::-webkit-scrollbar-thumb:hover {
  background: #357ABD;
  }
  /*tabel section end*/
  /* 
  new tabel sectin design section start */
  .read-more-btn {
  background: linear-gradient(180deg, #0D3665, #1A6DCB);
  color: white;
  border: none;                 
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  }
  .read-more-btn:hover {
  background-color: #43B7E9;
  }
  /*section(How It Works As Easy As It Gets) start*/
  @keyframes slideUpFromBottom {
  0% {
  opacity: 0;
  transform: translateY(50px);
  }
  100% {
  opacity: 1;
  transform: translateY(0);
  }
  }
  .white-section {
  background-color: white;
  padding: 111px 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: slideUpFromBottom 1.2s ease-in-out forwards;
  }
  .white-section p,
  .white-section h2,
  .white-section .box {
  opacity: 0;
  animation: slideUpFromBottom 1.2s ease-in-out forwards;
  }
  .white-section p {
  /* padding: 4px 0; */
  margin-left: 174px;
  font-size: 18px;
  color: #053A79;
  max-width: 800px;
  }
  .white-section h2 {
  color: #053A79;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  }
  .white-section h3{
  margin-top: 3px;
  color: #053A79;
  font-size: 20px;
  font-weight: 600;
  } 
  /* Box Styling */
  .box {
  width: 100%;
  max-width: 450px;
  min-height: 220px;
  height: 91%; /* Ensures all boxes are the same height */
  display: flex;
  flex-direction: column;
  align-items: stretch; /* Ensures content fills the box */
  justify-content: space-between; /* Distributes space evenly */
  border-radius: 16px;
  padding: 30px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  margin-top: 20px;
  text-align: left;
  border: 2px solid #053A79;
  opacity: 0;
  animation: slideUpFromBottom 1.2s ease-in-out forwards;
  overflow: hidden;
  background: #ffffff;
  }
  /* Right Side Gradient Line */
  .box::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -5px; /* Extended more to the right */
  width: 10px; /* Made thicker */
  height: calc(104% - 16px); /* Extended more towards bottom */
  background: linear-gradient(180deg, #0D3665, #1A6DCB);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  }
  /* Box Image */
  .box-img {
  max-height: 70px;
  margin-bottom: 12px;
  align-self: flex-start;
  }
  /* Box Title */
  .box-title {
  font-size: 18px;
  font-weight: bold;
  color: #053A79;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  }
  /* Box Paragraph */
  .box p {
  font-size: 14px;
  color: #053A79;
  margin: 0;
  flex-grow: 1; /* Ensures text does not get cut */
  overflow-wrap: break-word;
  transition: color 0.3s ease;
  }
  /* Hover Effects (Gradient + White Text) */
  .box:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px); /* Slight lift effect */
  background: linear-gradient(180deg, #0D3665, #1A6DCB); /* Gradient background */
  }
  .box:hover .box-title,
  .box:hover p {
  color: white; /* White text on hover */
  }
  /* Button Styling */
  .white-section .btn {
  padding: 12px 25px;
  background: linear-gradient(180deg, #0D3665, #1A6DCB);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  font-weight: 600;
  margin-top: 20px;
  }
  @media (max-width: 768px) {
  .white-section h2 {
  font-size: 29px;
  text-align: center;
  }
  .col-md-4.aos-init.aos-animate {
  display: flex
  ;
  justify-content: center;
  }
  .white-section p {
  font-size: 16px;
  text-align: center;
  margin-left: 0;
  }
  .box {
  width: 90%;
  min-height: auto;
  padding: 25px;
  left: 0;
  }
  .box-img {
  max-width: 62px;
  max-height: 62px;
  margin-bottom: 10px;
  align-self: flex-start;
  }
  .box p {
  font-size: 14px;
  text-align: left;
  }
  }
  /*section(How It Works As Easy As It Gets) end*/
  /*Get GaranSafe App start  */
  .get-app-section {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #E7F0FA;
  padding: 50px 0;
  overflow: hidden;
  }
  .blue-overlay {
  background-color: #053A79;
  border-radius: 53px;
  padding: 20px 0 50px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 149px;
  /* max-height: 400px; */
  max-height: 458px;   
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
  }
  .blue-overlay h2 {
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  margin: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  }
  .blue-overlay p {
  font-size: 18px;
  /* margin: 20px 0; */
  color: #E7F0FA;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  }
  .qr-code {
  width: 100px;
  height: auto;
  /* padding: 16px 0; */
  /* margin: 20px 0; */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  }
  .app-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  }
  .app-store-icon {
  width: 150px;
  height: auto;
  cursor: pointer;
  }
  .overlay-image {
  position: relative;
  z-index: 99;
  text-align: center;
  }
  /* .qr-code {
  width: 100px;
  height: auto;
  margin-bottom: 16px; 
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.app-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  margin-top: 16px; 
} */
 .qr-code {
  width: 100px;
  height: auto;
  margin-bottom: 28px; /* adds space below QR code */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.app-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px; /* adds space above the app buttons */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
  .phone-image {
  max-width: 46%;
  height: auto;
  position: relative;
  margin-top: -211px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease, margin-top 1s ease;
  }
  @media (max-width: 1024px) {
  .phone-image {
  display: none;
  max-width: 50%;
  margin-top: -130px;
  .blue-overlay p{
  margin: 0;
  }
  }
  }
  @media (max-width: 768px) {
  .get-app-section {
  /* padding: 532px 0 0 0; */
  .blue-overlay p{
  margin: 0;
  }
  }
  .blue-overlay {
  margin: 0 21px; 
  }
  .blue-overlay h2 {
  font-size: 28px;
  }
  .blue-overlay p {
  font-size: 16px;
  }
  .qr-code {
  width: 80px;
  }
  .app-store-icon {
  width: 120px;
  }
  .phone-image {
  display: none;
  max-width: 60%;
  margin-top: -110px;
  }
  }
  @media (max-width: 576px) {
  .phone-image {
  display: none;
  max-width: 70%;
  margin-top: -1379px;
  /*        left: 50%;*/
  transform: translateX(-50%);
  }
  }
  @media (max-width: 400px) {
  .phone-image {
  display: none;
  max-width: 80%;
  margin-top: -1285px;
  }
  .blue-overlay{
  /* margin-bottom: 50px; */
  }
  }
  /*Get GaranSafe App end  */
  /*about us section start*/ 
  /* banner section start*/
  /* Container for banner */
  .banner-section .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 0 50px;
  }
  /* section.banner-section {
  padding: 80px 0 50px;
  } */
  /* Row setup */
  .banner-section .row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 72px;
  }
  /* Column setup */
  .banner-section .col-lg-6 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  }
  /* Image Styling */
  .banner-section img {
  max-width: 68%; /* Image width for both mobile and desktop */
  height: auto;
  margin: 0 auto;
  margin-top: 76px;
  animation: floatImageDesktop 6s ease-out forwards; /* Animation for Desktop */
  }
  /* Content Styling */
  .banner-section .content {
  padding-left: 50px;
  animation: slideUpText 1.5s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
  }
  .banner-section .content h1 {
  font-size: 37px;
  font-weight: 400;
  color: #053A79;
  line-height: 57px;
  }
  .banner-section .content h2{
  margin-top: 3px;
  color: #053A79;
  font-size: 20px;
  font-weight: 600; 
  }
  .banner-section .content p {
  font-size: 18px;
  color: #053A79;
  margin: 20px 0;
  }
  .banner-section .content span{
  margin-top: 3px;
  color: #053A79;
  font-size: 20px;
  font-weight: 600; 
  }
  /* Mobile Device Styling */
  @media (max-width: 767px) {
  .banner-section .content h1 {
  font-size: 29px;
  line-height: 38px;
  }
  .banner-section .row {
  flex-direction: column;
  }
  .banner-section .content {
  text-align: center;
  padding: 5px;
  margin-bottom: 31px;
  }
  /* Mobile-specific animation for Image */
  .banner-section img {
  animation: floatImageMobile 6s ease-out forwards; /* Apply animation for mobile */
  }
  }
  /* Image Floating Animation (Desktop) */
  @keyframes floatImageDesktop {
  0% {
  transform: translateY(0); /* Start from original position */
  }
  100% {
  transform: translateY(-50px); /* Moves from top to bottom */
  }
  }
  /* Image Floating Animation (Mobile) */
  @keyframes floatImageMobile {
  0% {
  transform: translateY(0); /* Start from original position */
  }
  50% {
  transform: translateY(-40px); /* Move up */
  }
  100% {
  transform: translateY(0); /* Return to original position  */
  }
  }
  /* Text Slide-Up Animation */
  @keyframes slideUpText {
  from {
  transform: translateY(30px);
  opacity: 0;
  }
  to {
  transform: translateY(0);
  opacity: 1;
  }
  }
  /*
  banner section end*/
  .mission-section {
  display: flex;
  align-items: stretch;
  min-height: 80vh;
  margin: 0;
  flex-direction: row;
  }
  .left-side {
  background-color: #FFFFFF;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  }
  .left-side .logo {
  max-width: 75%; /* Increased from 61% to 75% for larger desktop display */
  object-fit: contain;
  margin-left: 95px;
  }
  .right-side {
  background: #FFFFFF;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0D3665;
  padding: 62px 20px;
  text-align: left;
  }
  .right-side .content {
  max-width: 90%;
  padding: 20px;
  margin: 0;
  }
  /* Heading Sizes */
  .right-side h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  }
  .right-side h3 {
  margin-top: 3px;
  color: #053A79;
  font-size: 20px;
  font-weight: 600;
  }
  .right-side p {
  font-size: 18px;
  color: #053A79;
  margin: 15px 0;
  line-height: 1.5;
  }
  /* Responsive for Mobile */
  @media (max-width: 767px) {
  .mission-section {
  flex-direction: column; /* Stack vertically */
  min-height: auto;
  }
  .left-side {
  min-height: 26vh;
  margin: 15px 10px;
  }
  .left-side, .right-side {
  width: 100%;
  padding: 0;
  /* padding: 40px 0; */
  }
  .left-side .logo {
  /* max-width: 180px;  */
  max-width: 89%;
  margin-left: 0;
  }
  .right-side h2 {
  font-size: 28px;
  }
  .right-side h3 {
  font-size: 18px;
  }
  .right-side p {
  font-size: 16px;
  }
  .right-side .content {
  padding: 15px;
  text-align: center;
  }
  }
  /*our mission section end*/
  .vision-section {
  background: linear-gradient(180deg, #0D3665, #1A6DCB);
  /* background: #F4F7FC; */
  /* padding: 100px 0; */
  position: relative;
  padding: 80px 0 50px;
  }
  .vision-section .row {
  display: flex;
  align-items: center;
  }
  /* Image Container */
  .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  /* Image Styles */
  .image-wrapper .image1 {
  margin-left: 38px;
  background-color: white;
  object-fit: contain;
  height: 221px;
  margin-bottom: 283px;
  width: 66%;
  max-width: 300px;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateX(-5px);
  }
  .image-wrapper .image2 {
  background-color: white;
  object-fit: contain;
  height: 220px;
  /* margin-top: 109px; */
  width: 64%;
  max-width: 320px;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateX(-14px) translateY(20px);
  }
  /* Right Section Content */
  .content-container {
  padding-left:3px;
  /* padding-left: 60px; */
  position: relative;
  z-index: 2;
  }
  .content-container h2 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  }
  .content-container h3{ 
  margin-top: 3px;
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0;
  line-height: 1.5;
  }
  .content-container p {
  font-size: 18px;
  /* color: #053A79; */
  line-height: 1.6;
  color: white;
  }
  .content-container h4{
  margin-top: 3px;
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0;
  line-height: 1.5;
  }
  /* Animated Circles */
  .animated-circle {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: pulseAnimation 3s infinite ease-in-out;
  }
  .circle1 {
  width: 100px;
  height: 100px;
  top: 9px;
  left: 354px;
  animation-delay: 0s;
  }
  .circle2 {
  width: 80px;
  height: 80px;
  top: 278px;
  left: 34px;
  animation-delay: 1s;
  }
  .circle3 {
  width: 120px;
  height: 120px;
  bottom: 40px;
  left: -50px;
  animation-delay: 2s;
  }
  /* Animation for Circles */
  @keyframes pulseAnimation {
  0% {
  transform: scale(1);
  opacity: 0.5;
  }
  50% {
  transform: scale(1.3);
  opacity: 0.3;
  }
  100% {
  transform: scale(1);
  opacity: 0.5;
  }
  }
  /* Responsive Fix */
  /* Responsive Fix for Mobile */
  @media (max-width: 991px) {
  .vision-section {
  padding: 60px 0;
  }
  .image-wrapper .image1 {
  margin-bottom: 20px; /* Adjust margin for better space between images */
  }
  .image-wrapper .image2 {
  margin-right: 0;
  }
  .image-wrapper {
  flex-direction: column;
  align-items: center;
  }
  .image-wrapper img {
  width: 80%;
  max-width: 100%;
  }
  .content-container {
  padding-left: 20px;
  margin-top: 49px;
  text-align: center;
  order: 2; /* Ensure the content comes after the image */
  }
  /* Ensure the images show up first */
  .image-wrapper {
  order: 1; /* Move image wrapper to show first */
  }
  .animated-circle {
  display: none;
  }
  }
  /* Values Section start */
  /* Values Section Styling */
  .values-section {
  background-color: #ECEFF3;
  padding: 50px 0;
  animation: fadeInSection 1.5s ease-out forwards;
  }
  .values-section .container {
  text-align: center;
  }
  /* .pt-box{
  padding: 0 12px;
  } */
  .col-lg-4.value-item.pt-box {
  padding-left: 90px;
  }
  .col-lg-4.value-item.pt-box- {
  padding-left: 100px;
  }
  .section-heading {
  margin: 20px;
  font-size: 32p  x;
  font-weight: 600;
  color: #053A79;
  /* margin-bottom: 40px; */
  animation: fadeIn 1s ease-out forwards;
  }
  .value-item {
  text-align: left; 
  /* margin-bottom: 30px; */
  opacity: 0;
  animation: slideIn 0.8s ease-out forwards;
  display: flex;
  flex-direction: column; 
  align-items: flex-start; 
  padding-left: 15px; 
  margin: 12px 0;
  }
  .value-item-header {
  display: flex;
  align-items: center; 
  margin-bottom: 10px; 
  }
  .value-item img.icon {
  width: 46px;
  height: auto;
  margin-right: 15px; 
  transition: transform 0.3s ease-in-out;
  }
  .value-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #053A79;
  margin: 0; 
  display: inline-block;
  /* line-height: 60px;  */
  }
  .value-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #053A79;
  text-align: left; 
  }
  .value-item:hover h3 {
  /* color: #1A6DCB; */
  }
  .value-item:hover img.icon {
  transform: scale(1.1);
  }
  /* Responsive Adjustments */
  @media (max-width: 767px) {
  .value-item img.icon {
  width: 50px;
  }
  .section-heading{
  font-size: 29px;
  }
  .col-lg-4.value-item.pt-box- {
  padding-left: 16px;
  }
  .col-lg-4.value-item.pt-box {
  padding-left: 16px;
  }
  .value-item h3 {
  font-size: 18px;
  }
  .value-item p {
  font-size: 14px;
  }
  }
  @media (max-width: 991px) and (min-width: 768px) {
  .value-item {
  margin-bottom: 20px;
  text-align: left;
  display: block;
  justify-self: center;
  }
  .col-lg-4.value-item.pt-box {
  padding-left: 16px;
  }
  .col-lg-4.value-item.pt-box {
  padding-left: 16px;
  }
  .col-lg-4.value-item.pt-box {
  padding-left: 16px;
  }
  .col-lg-4.value-item.pt-box- {
  padding-left: 16px;
  }
  .value-item img.icon {
  width: 55px;
  }
  .value-item h3 {
  font-size: 19px;
  }
  .value-item p {
  font-size: 15px;
  }
  }
  /* Animations */
  @keyframes fadeIn {
  from {
  opacity: 0;
  }
  to {
  opacity: 1;
  }
  }
  @keyframes fadeInSection {
  from {
  opacity: 0;
  }
  to {
  opacity: 1;
  }
  }
  @keyframes slideIn {
  from {
  transform: translateY(30px);
  opacity: 0;
  }
  to {
  transform: translateY(0);
  opacity: 1;
  }
  }
  /* Values Section end*/
  /* .why-garansafe {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  }
  .section-title {
  font-size: 36px;
  font-weight: bold;
  color: #053a79;
  }
  .section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  }
  .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
  }
  .feature-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  }
  .feature-item:hover {
  transform: translateY(-5px);
  }
  .icon {
  font-size: 30px;
  background: #053a79;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  }
  .feature-item h3 {
  font-size: 20px;
  color: #333;
  }
  .feature-item p {
  font-size: 16px;
  color: #666;
  }
  .cta {
  margin-top: 50px;
  }
  .cta h3 {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  } */
  .why-garansafe {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  }
  .section-title {
  font-size: 36px;
  font-weight: bold;
  color: #053a79;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .why-garansafe h3{
  margin-top: 3px;
  color: #053A79;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 45px;
  }
  .section-title.in-view {
  opacity: 1;
  transform: translateY(0);
  }
  .section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .section-subtitle.in-view {
  opacity: 1;
  transform: translateY(0);
  }
  /* Flex layout for image + features */
  .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 140px;
  }
  /* Left Side - Image */
  .image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  }
  .image-section img:hover {
  transform: scale(1.05);
  }
  /* Right Side - Features */
  .features-section {
  flex: 1;
  }
  /* Feature Grid - 3 per row */
  .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  }
  .feature-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
  }
  .feature-item.in-view {
  opacity: 1;
  transform: translateY(0);
  }
  .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }
  /* Hover effect with line */
  .feature-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #053a79;
  top: 0;
  left: -100%;
  transition: left 0.3s ease;
  }
  .feature-item:hover::before {
  left: 0;
  }
  .icon {
  font-size: 23px;
  background: #053a79;
  color: white;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 0;
  }
  .feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #053A79;
  margin-bottom: 16px;
  }
  .feature-item p {
  font-size: 16px;
  color: #053a79;
  }
  /* CTA Section */
  .cta {
  margin-top: 50px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .cta.in-view {
  opacity: 1;
  transform: translateY(0);
  }
  .cta h3 {
  font-size: 24px;
  font-weight: bold;
  color: #053a79;
  margin-bottom: 20px;
  }
  .cta p {
  font-size: 18px;
  color: #053a79;
  }
  /* Animation for fade-up effect */
  @keyframes fadeUp {
  from {
  opacity: 0;
  transform: translateY(30px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
  }
  /* Apply animation to elements */
  .animate-fade-up {
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
  }
  /* Delay effect for staggered animation */
  .feature-item:nth-child(1) { animation-delay: 0.2s; }
  .feature-item:nth-child(2) { animation-delay: 0.4s; }
  .feature-item:nth-child(3) { animation-delay: 0.6s; }
  .feature-item:nth-child(4) { animation-delay: 0.8s; }
  .feature-item:nth-child(5) { animation-delay: 1s; }
  .feature-item:nth-child(6) { animation-delay: 1.2s; }
  /* Responsive */
  @media (max-width: 992px) {
  .content-wrapper {
  flex-direction: column;
  }
  .features-grid {
  grid-template-columns: repeat(2, 1fr);
  }
  }
  @media (max-width: 600px) {
  .features-grid {
  grid-template-columns: 1fr;
  }
  }
  /* }
  end why garansafe)about us section) */
  /*about us section end*/ 
  /* plan section start */
  p.need-more-user-home-page {
    font-size: 16px;
    display: flex;
    justify-content: center;
    /* margin: 32px 0; */
    color: white;
    margin-bottom: 0 !important;
    /* margin-top: 42px; */
    padding-top: 40px;
}
  .plans-section {
  background: linear-gradient(180deg, #0D3665, #1A6DCB);
  padding: 50px 0;
  }
  /* .plans-heading {
  padding-top: 40px;
  } */
  .plans-flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  }
  .plans-item {
  background: #ffffff;
  padding: 30px; /* Applies consistent padding to all inner content */
  border-radius: 8px;
  width: 30%;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  }
  .plans-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  .plans-item h3 {
  font-size: 22px;
  color: #053A79;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500  ;
  }
  .price {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #43B7E9;
  margin-bottom: 20px;
  }
  .description {
  font-size: 16px;
  color: #053A79;
  margin-bottom: 20px;
  line-height: 1.5;
  white-space: normal;
  overflow: visible;
  padding: 0 10px !important;
  min-height: 67px;
  }
  .plans-item ul {
  margin-top: 25px;
  list-style: none;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  }
  .plans-item ul li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  }
  .plans-item ul li img {
  width: 20px;
  margin-top: 2px;
  }
  .plans-item ul li span {
  font-size: 15px;
  color: #053A79;
  line-height: 1.4;
  }
  .read-more-btn {
  /* background: linear-gradient(180deg, #0D3665, #1A6DCB);
  color: white;
  border: none;
  padding: 8px 16px;
  min-width: 120px;
  align-self: center;
  cursor: pointer;
  margin-top: auto;
  font-size: 14px;
  border-radius: 4px;
  width: 45% !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  transition: background 0.3s ease;  */
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; 
  padding: 10px 20px;
  background: linear-gradient(180deg, #0D3665, #1A6DCB);
  color: #fff;
  font-size: 14px;
  /* font-weight: 600; */
  border-radius: 4px;
  max-width: 250px;
  margin: 0 auto;
  /* line-height: 1.4; */
  word-break: break-word;
  /* margin-top: 17px; */
  }
  .read-more-btn:hover {
  background: #43B7E9;
  }
  a.read-more-btn {
  text-decoration: none;
  /* align-items: center; */
  display: flex;
  justify-content: center;
  }
  .plan-card ul {
  min-height: 108px;
  /* margin: 0px 20px; */
  margin-top: 17px;
  }
  .plan-card li {
  text-align: left;
  white-space: normal; 
  word-break: break-word; 
  }
  @media screen and (max-width: 768px) {
  .plans-flex {
  flex-direction: column;
  align-items: center;
  gap: 30px;
  }
  .plans-item {
  width: 90%;
  min-height: auto;
  }
  .plans-item h3 {
  font-size: 20px;
  }
  .price {
  font-size: 16px;
  }
  .description {
  font-size: 16px;
  }
  .read-more-btn {
  font-size: 12px;
  }
  .plans-item ul {
  margin-top: 20px;
  }
  }
  /* plan section end */
  /*contact us section start*/
    /*contact us form*/
    .contact-info ul {
    padding: 0;
    margin: 20px 0;
    }
    .contact-info ul li {
    list-style: none;
    margin: 10px 0;
    font-size: 16px;
    color: #053A79;
    padding-bottom: 22px;
    }
    .contact-info ul li i {
    margin-right: 10px;
    color: #053A79;
    font-size: 26px;
    }
    .contact-info a{
    text-decoration: none;
    list-style: none;
    color: #053A79;
    } 
    .contact-info a {
    text-decoration: none;
    list-style: none;
    color: #053A79;
    transition: color 0.3s ease; 
    }
    .contact-info a:hover {
    text-decoration: underline !; 
    }
    .social-icons {
    display: flex;
    margin-top: 30px;
    margin-left: 0; 
    gap: 15px; 
    }
    .social-icons i:hover{
    color: #43B7E9; 
    }
    .social-icons a {
    font-size: 30px;
    color: #053A79;
    }
    .social-icons a:hover {
    color: #0D3665;
    }

    h2 {
    margin-bottom: 22px;
    margin-top: -50px;
    color: #053A79;
    }
    p {
    color: #053A79;
    }
    form .form-label {
    font-weight: 400;
    color: #053A79;
    margin-bottom: 18px;
    }
    form .form-control {
    border: 1px solid #053A79;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 13px;
    }
    form .form-control::placeholder {
    color: #053A79;
    }
    form button {
    display: block;
    margin: 20px 0 0 auto; 
    }
    .contact-info, .form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    }
    .contact-info {
    padding-right: 10px;
    }
    .company-name h3 {
      font-weight: bold;
      color: #053A79;
      font-size: 28px;
      margin-bottom: 30px;
      text-align: left;
  }
  

  .plan-buttons {
    display: flex;
    justify-content: center;
    /* gap: 20px; */
    /* margin-bottom: 30px; */
    border-bottom: 2px solid #ddd; /* To give the effect of tabs underlining */ 
  }
  
  .plan-btn {

    padding: 12px 20px;
    background-color: transparent;
    /* border: 2px solid #ddd; */
    border-radius: 5px 5px 0 0; /* Rounded top corners */
    color:white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .plan-btn:hover {
    background-color: #0D3665;
    color: #ffffff;
  }
  
  .plan-btn.active {
    background-color: #04b9fd;
    color: white;
    border: none;
    /* border-color: #04b9fd; */
  }
  
.plan-btn.active {
    background-color: #ffffff;
    color: #0D3665;
    /* width: 18%; */
}  .plans-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  

  /* Plan Item Section */
  .plans-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .plans-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .plans-item h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 24px;
  }

  .plans-item .price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .plans-item .description {
    /* font-size: 16px; */
    /* margin-bottom: 20px; */
         /* margin-bottom: 0;  */

         font-size: 16px;
         color: #053A79;
         margin-bottom: 20px;
         line-height: 1.5;
         white-space: normal;
         overflow: visible;
         text-align: center;
  }
  p.description {
    font-size: 16px;
    color: #053A79;
    margin-bottom: 20px;
    line-height: 1.5;
    white-space: normal;
    overflow: visible;
    text-align: center;
}

  .plans-item ul {
    list-style-type: none;
    padding-left: 0;
  }

  .plans-item ul li {
    margin: 10px 0;
    display: flex;
    align-items: center;
  }

  .plans-item ul li img {
    width: 20px;
    margin-right: 10px;
  }

    @media (max-width: 767px) {
    .contact-info, .form {
    text-align: center;
    }
    form .form-label{
    display: flex;
    }
    h2{
    margin: 5px ;
    }
    .contact-info ul li{
    /*        display: flex;*/
    }
    .social-icons {
    justify-content: center; 
    margin: 0;
    }
    form button {
    margin: 20px auto 0; 
    }
    }/*
  end contact us section*/
  /*freemium section start*/
  .all-btn{
  background: linear-gradient(180deg, #0D3665, #1A6DCB);
  color: #fff;
  /* background-color: #053A79; */
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin: 14px 0;
  font-weight: 600;
  }
  .all-btn:hover {
  background: #43B7E9;
  color: white;
  }
  .content h1{
  font-weight: 400;
  font-size: 37px;
  color: #053A79;
  line-height: 57px;
  }
  /*Freemium Key Benefits section start */
  .key-benefits-section {
  background-color: #ECEFF3;
  padding: 50px 0; 
  }
  .key-benefits-section .container {
  margin: 0 auto;
  padding: 0;
  }
  .feature-box1 {
  margin: 0 12px;
  background-color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 0 0 calc(33.33% - 20px);
  min-height: 350px;
  }
  .key-benefits-section .section-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 57px;
  color: #053A79; /* Heading color */
  }
  .key-benefits-section .row {
  display: flex;
  justify-content: space-between; 
  flex-wrap: nowrap; 
  }
  .key-benefits-section .feature-box {
  margin: 0 12px;
  background-color: white;
  padding: 40px 20px; 
  text-align: center;
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  flex: 0 0 calc(33.33% - 20px); 
  min-height: 350px;
  /* Animation styles */
  opacity: 0; 
  transform: translateY(50px); 
  transition: all 0.5s ease-out; 
  }
  /* .feature-box1{
  margin: 0 12px;
  background-color: white;
  padding: 40px 20px; 
  text-align: center;
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  flex: 0 0 calc(33.33% - 20px); 
  min-height: 350px;
  /* Animation styles */
  /* opacity: 0; 
  transform: translateY(50px); 
  transition: all 0.5s ease-out; 
  */ 
  .key-benefits-section .feature-box1.animate {
  opacity: 1; 
  transform: translateY(0); 
  }
  .key-benefits-section .feature-box1 img {
  max-width: 262px; 
  height: auto; 
  margin: 0 auto 20px; 
  }
  .key-benefits-section .feature-box1 h3 {
  font-size: 22px;
  color: #053A79;
  margin-bottom: 15px;
  }
  .key-benefits-section .feature-box1 p {
  font-size: 16px;
  color: #053A79;
  font-weight: 400;
  padding: 0 23px;
  }
  .key-benefits-section .row .feature-box1:first-child {
  padding-left: 0; 
  }
  .key-benefits-section .row .feature-box1:last-child {
  padding-right: 0; 
  }
  .key-benefits-section .feature-box1.animate {
  opacity: 1; 
  transform: translateY(0); 
  }
  .key-benefits-section .feature-box.animate {
  opacity: 1; 
  transform: translateY(0); 
  }
  .key-benefits-section .feature-box1 img {
  max-width: 262px; 
  height: auto; 
  margin: 0 auto 20px; 
  }
  .key-benefits-section .feature-box img {
  max-width: 262px; 
  height: auto; 
  margin: 0 auto 20px; 
  }
  .key-benefits-section .feature-box h3 {
  font-size: 22px;
  color: #053A79;
  margin-bottom: 15px;
  }
  .key-benefits-section .feature-box p {
  font-size: 16px;
  color: #053A79;
  font-weight: 400;
  padding: 0 23px;
  }
  .key-benefits-section .row .feature-box:first-child {
  padding-left: 0; 
  }
  .key-benefits-section .row .feature-box:last-child {
  padding-right: 0; 
  }
  @media (max-width: 991px) {
  .key-benefits-section .row {
  flex-wrap: wrap; 
  }
  .key-benefits-section .feature-box p {
  padding: 0 19px;
  }
  .key-benefits-section .section-heading {
  font-size: 29px;
  line-height: 42px;
  }
  .key-benefits-section .feature-box1 {
  flex: 0 0 calc(50% - 20px);
  margin-bottom: 20px; 
  min-height: 300px; 
  }
  .key-benefits-section .feature-box {
  flex: 0 0 calc(50% - 20px);
  margin-bottom: 20px; 
  min-height: 300px; 
  }
  .key-benefits-section .feature-box img {
  max-width: 120px; 
  }
  .key-benefits-section .row .feature-box:first-child {
  padding-left: 0;
  }
  .key-benefits-section .row .feature-box:last-child {
  padding-right: 0;
  }
  }
  @media (max-width: 767px) {
  .key-benefits-section .row {
  flex-direction: column; 
  align-items: center; 
  }
  .key-benefits-section .feature-box {
  width: 74%;
  margin: 0 auto 20px; 
  min-height: 280px; 
  }
  .key-benefits-section .feature-box img {
  max-width: 244px; 
  }
  .key-benefits-section .row .feature-box:first-child {
  padding-left: 0;
  }
  .key-benefits-section .row .feature-box:last-child {
  padding-right: 0;
  }
  }
  /*Freemium Key Benefits section end */
  .custom-benefits-section {
    background-color: #ECEFF3;
    padding: 50px 0;
  }
  
  section.custom-benefits-section.Bussiness.Premium {
    background-color: #ECEFF3;
    padding: 138px 0 50px;
}
  .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 57px;
  color: #053A79;
  }
  /* box design */
  .plans-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  /* margin-bottom: 39px; */
  margin-top: 30px;
  }
  .plan-card {
  position: relative;
  background: #fff;
  /* padding: 30px 20px; */
  padding: 21px 20px; 
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;      
  /* width: 300px; */
  width: 263px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  }
  /* Ribbon on the Left Side */
  
  .plan-card h3 {
  color: #053A79;
  /* font-size: 24px; */
  /* margin-bottom: 10px; */
  font-size: 18px;
  font-weight: 600;
  color: #0D3665;
  }
  }
  .price {
  color: #04b9fd;
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 5px;
  }
  /* .plan-card.plan-base {
  background: linear-gradient(180deg, #0D3665, #1A6DCB);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  } */
  /* .most-popular {
  position: absolute;
  top: 56px;
  right: -17px;
  background-color: #43b7e9;
  color: #Fff;
  font-size: 14px;
  padding: 5px 4px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: rotate(39deg);
  transform-origin: top right;
  border-radius: 0;
  } */
  .plan-card {
  background: ;  /* Default background color */
  transition: transform 0.1s ease, box-shadow 0.1s ease, color 0.1s ease; /* Even shorter transition */
  }
  /* .plan-card:hover {
  color: #fff;  
  background: linear-gradient(180deg, #0D3665, #1A6DCB);  
  transform: translateY(-4px); 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  } */
  .price span {
  font-size: 16px;
  font-weight: normal;
  }
  .plan-desc {
  /* margin-left: 19px; */
  /* color: #053A79;
  font-size: 14px;
  text-align: left; */
  font-size: 14px;
  color: #0D3665;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 400;
  flex-grow: 1;
  }
  p.need-more-user {
    /* margin-top: 1rem; */
    font-size: 16px;
    display: flex;
    justify-content: center;
    margin: 32px 0;
    /* margin-bottom: 0 !important; */
  }
  
  .plan-features {
  list-style: none;
  padding: 0;
  /* margin: 0 0 20px; */
  text-align: left;
  }
  .plan-features li {
  font-size: 14px;
  color: #0D3665;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 400;
  flex-grow: 1;
  }
  .btn-select {
  background: linear-gradient(180deg, #0D3665, #1A6DCB);;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
  }
  /* Featured override */
  .plan-card {
  border: 2px solid #053A79;
  /* transform: scale(1.05); */
  }
  .custom-price-style {
  color: #053a79;
  font-size: 19px;
  font-weight: bold;
  background: rgb(5 58 121 / 10%);
  padding: 10px 22px;
  border: 1.5px solid #053a79;
  backdrop-filter: blur(3px);
  border-radius: 10px;
  text-transform: uppercase;
  margin: 16px 0;
  }
  .custom-feature-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  }
  .plans-item-new {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .plans-inner-flex {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  }
  /* .custom-feature-box-left {
  flex: 1;
  min-width: 250px;
  } */
  /* .custom-benefit-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  } */
  .custom-feature-box-right {
  flex: 1;
  }
  .custom-feature-box-right h3 {
  font-size: 22px;
  color: #053A79;
  margin-bottom: 10px;
  display: flex
  ;
  justify-content: center;
  }
  .price {
  font-weight: bold;
  color: #04b9fd;
  margin: 5px 0;
  }
  .description {
  margin-bottom: 15px;
  color: #053A79;
  }
  /* 
  .read-more-btn {
  display: inline-block;
  background-color: #053A79;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 15px;
  } */
  .custom-benefits-section h2{
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 57px;
  color: #053A79;
  }
  .custom-plan-box-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  }
  .custom-plan-box-inner ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  }
  .custom-plan-box-inner ul li img {
  width: 18px;
  margin-right: 8px;
  }
  .custom-plan-box-inner ul li span {
  font-size: 16px;
  color: #053A79;
  }
  .custom-feature-box-left {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  .custom-benefit-image {
  margin-top: 26px;
  width: 79%;
  /* max-width: 320px; 
  min-width: 250px;  */
  height: auto;
  border-radius: 6px;
  }



  h2.section-heading.in-view {
    /* margin-top: 0;
    margin-bottom: 0; */
}
  @media (max-width: 768px) {
  .plans-inner-flex {
  flex-direction: column;
  }
  }
  /* plan section new code */
.plans-flex-row {
  display: flex;
  justify-content: center;
  gap: 0 72px;
  /* margin-top: 34px; */
  flex-wrap: wrap;  
}


.plans-item-business {
  background: #ffffff;
  border: 2px solid #053A79;
  padding: 30px 25px;
  border-radius: 8px;
  width: 29%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}


.plans-item-business h3 {
  font-size: 22px;
  color: #053A79;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500;
}


.suiable-for {
  font-size: 16px;
  color: #053A79;
  margin-bottom: 20px;
  line-height: 1.5;
  white-space: normal;
  overflow: visible;
  text-align: center;
}


.plans-item-business ul {
  list-style: none;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 0;
  margin-bottom: 0;
}

.plans-item-business.plan-card li {
  margin-bottom: 0;
}
.plans-item-business ul li img {
  width: 20px;
  margin-top: 2px;
}

.plans-item-business ul li span {
  font-size: 15px;
  color: #053A79;
  line-height: 1.4;
}


/* For the Most Popular tag */
.plan-card.plan-plus::before {
  content: "Most Popular";
    position: absolute;
    /* top: 85%; */
    top: 90%;
    left: -62%;
    width: 200%;
    height: 40px;
    background: linear-gradient(180deg, #0D3665, #1A6DCB);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transform: translateY(-99%) rotate(-45deg);
    transform-origin: 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 2;
}

.plans-item-business.plan-plus {
  position: relative; 
  padding-top: 30px; 
}

.plans-item-business.plan-plus::before {
  padding: 0; 
}
.plan-card.price {
  font-weight: bold;
    color: #04b9fd;
    margin: 5px 0;
}

@media (max-width: 768px) {
  .plans-item-business {
    width: 45%;  
    padding: 20px;
  }

  .plans-flex-row {
    flex-direction: column;
    gap: 15px;
  }

  .suiable-for {
    font-size: 14px; 
    margin-bottom: 15px; 
  }

  .plans-item-business h3 {
    font-size: 18px; 
  }
}

@media (max-width: 480px) {
  .plans-item-business {
    width: 100%;  
    padding: 15px;
  }
}

  
  /* }Plan box section end */



  /*how it work section start*/
  .how-it-works-section {
  background: linear-gradient(180deg, #0D3665, #1A6DCB);
  padding-bottom: 50px;
  padding-top: 104px;
  color: #fff;
  }
  .how-it-works-section h2 {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 57px;
  }
  .steps-container {
  display: flex;
  align-items: stretch; 
  justify-content: space-between;
  flex-wrap: wrap;
  }
  .step-box-container {
  position: relative;
  flex: 1 1 18%;
  margin: 0 10px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: stretch; 
  }
  .step-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, background-color 0.3s ease, color 0.3s ease;
  height: 100%; 
  }
  .step-box-container:hover .step-box {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: #0D3665;
  color: #ffffff;
  }
  .step-box-container:hover .step-box h3,
  .step-box-container:hover .step-box p {
  color: white;
  }
  .step-box img {
  max-width: 60px;
  margin: 0 auto;
  padding: 20px 0;
  display: block;
  object-fit: contain;
  flex-shrink: 0; 
  }
  .step-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0D3665;
  margin-bottom: 15px; 
  min-height: 40px; 
  }
  .step-box p {
  font-size: 14px;
  color: #0D3665;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 400;
  flex-grow: 1; 
  }
  .arrow-circle {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #43B7E9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  z-index: 10;
  }
  .arrow-circle i {
  font-size: 16px;
  color: #fff;
  }
  .step-box-container:last-child .arrow-circle {
  display: none;
  }
  .step-box-container:hover .arrow-circle {
  background-color: #ffffff;
  color: #0D3665;
  }
  .step-box-container:hover .arrow-circle i {
  color: #43B7E9;
  }
  .step-box:first-child{
  margin-left: 0;
  }
  .step-box:last-child{
  margin-right: 0;
  }
  @media (max-width: 768px) {
  .steps-container {
  flex-direction: column;
  align-items: center;
  }
  .how-it-works-section{
  padding-top: 58px;
  }
  .step-box {
  margin-top: 7px;
  }
  .how-it-works-section h2{
  font-size: 29px;
  }
  .step-box-container {
  flex: none;
  width: 70%;
  margin: 20px auto;
  position: relative; 
  }
  .arrow-circle {
  position: absolute; 
  margin-top: 10px;
  top: auto; 
  bottom: -20px; 
  left: 50%;
  transform: translateX(-50%); /
  }
  .arrow-circle i {
  transform: rotate(90deg); 
  }
  }
  @media (max-width: 480px) {
  .step-box-container {
  width: 65%;
  margin: 10px 0;
  }
  .how-it-works-section h2{
  font-size: 29px;
  }
  }
  /*how it work section end */
  /*FQA section start*/
  .faq-section {
  background-color: #ECEFF3;
  padding: 50px 0;
  }
  .faq-section h2 {
  font-size: 32px;
  font-weight: 400;
  color: #053A79;
  /*  margin-bottom: 50px;*/
  text-align: center;
  /*  padding: 55px;*/
  margin: 20px;
  }
  .faq-item {
  background-color: #fff;
  border: 2px solid #053A79;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
  }
  .faq-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  .faq-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #053A79;
  display: flex;
  align-items: center;
  }
  .faq-item i {
  margin-left: auto;
  transition: transform 0.3s ease;
  }
  .faq-item.active i {
  transform: rotate(180deg);
  }
  .faq-item .answer {
  font-size: 14px;
  color: #053A79;
  margin-top: 10px;
  display: none;
  }
  .faq-item.active .answer {
  display: block;
  }
  .faq-img {
  max-height: 400px;
  object-fit: contain;
  }
  @media (max-width: 768px) {
  .faq-section {
  padding: 30px 0;
  }
  .faq-img {
  max-height: 300px;
  }
  }
  @media (max-width: 480px) {
  .faq-item {
  padding: 15px;
  }
  .faq-img {
  max-height: 250px;
  }
  }
  /*FAQ section end*/
  /*freemium section end* /
  /* Footer section start */
  footer {
  background: linear-gradient(180deg, #0D3665, #1A6DCB); 
  color: #fff;
  padding: 20px 0;
  }
  .footerTop {
  margin-top: 54px;
  }
  footer h5 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  text-align: left; 
  }
  footer ul {
  list-style: none;
  padding: 0;
  }
  footer ul li {
  padding: 5px 0;
  font-size: 15px;
  font-weight: 100;
  margin-bottom: 10px;
  text-align: left;
  }
  footer ul li a {
  color: #fff; 
  text-decoration: none;
  transition: color 0.3s ease;
  }
  footer ul li a:hover {
  text-decoration: underline !important;
  }
  footer ul li a:hover {
  text-decoration: underline;
  }
  footer .social-icons {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  }
  footer .social-icons li {
  display: inline-block;
  margin-right: 10px;
  }
  footer .social-icons i {
  color: #fff; 
  font-size: 24px;
  transition: color 0.3s ease; /
  }
  footer .social-icons i:hover {
  color: #43B7E9; 
  }
  footer .footerBottom {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
  }
  @media (min-width: 768px) {
  .footerTop .logo,
  .quick-links,
  .support,
  .follow-us {
  text-align: left; 
  }
  .footerTop .logo {
  order: 1;
  }
  .quick-links {
  order: 2;
  }
  .support {
  order: 3;
  }
  .follow-us {
  order: 4;
  }
  }
  .list-unstyled a:hover{
  color: #000;
  }
  @media (max-width: 767px) {
  .footerTop .logo,
  .quick-links,
  .support,
  .follow-us {
  text-align: center;
  }
  .footerTop .logo img {
  max-width: 50%;
  margin: 0 auto;
  }
  footer ul li {
  display: block;
  text-align: left;
  }
  .social-icons li {
  display: inline-block;
  margin-right: 10px;
  }
  .quick-links {
  text-align: left;
  margin-bottom: 10px;
  }
  .support {
  text-align: left; 
  margin-bottom: 10px;
  }
  .follow-us h5 {
  display: flex;
  justify-content: center; 
  margin-bottom: 10px;
  }
  .footerBottom {
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
  }
  }
  /* Footer section start