/* common css */
@font-face {
  font-family: "poppins-bold";
  src: url(../fonts/Poppins-Bold.ttf);
}
@font-face {
  font-family: "poppins-semibold";
  src: url(../fonts/Poppins-SemiBold.ttf);
}
@font-face {
  font-family: "poppins-regular";
  src: url(../fonts/Poppins-Regular.ttf);
}
@font-face {
  font-family: "poppins-medium";
  src: url(../fonts/Poppins-Medium.ttf);
}
body {
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
}
.deep-blue {
  background: #134683 !important;
}
.blue-text {
  color: #134683 !important;
}
.black-text {
  color: #191a1d !important;
}
.para-text {
  color: #252525 !important;
}
.light-cream {
  color: #ffffff !important;
}
.light-cream-bg {
  background-color: #ffffff !important;
}
h6 {
  margin-bottom: 20px;
  font-size: 24px;
  text-transform: uppercase;
  font-family: "poppins-medium";
}

h4 {
  font-family: poppins-bold;
  font-size: 44px;
  margin-bottom: 40px;
}
/* Base styles for animations */
.animate-fade-in,
.animate-slide-in,
.animate-slide-up {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Fade in animation */
.animate-fade-in.is-visible {
  opacity: 1;
}

/* Slide in animation */
.animate-slide-in {
  transform: translateX(-50px);
}

.animate-slide-in.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide up animation */
.animate-slide-up {
  transform: translateY(50px);
}

.animate-slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* ---------------------------------------------------------------------- */

/* header */
/* --------------------toggle button---------------------- */
.navbar-toggler {
  width: 20px;
  height: 20px;
  position: relative;
  transition: 0.5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
  border: 0;
  position: relative;
}

.navbar-toggler span {
  margin: 0;
  padding: 0;
}

.toggler-icon {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000000;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.middle-bar {
  margin-top: 0px;
}

/* State when the navbar is collapsed */
.navbar-toggler.collapsed .top-bar {
  position: absolute;
  top: 0px;
  transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  position: absolute;
  top: 10px;
  filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
  position: absolute;
  top: 20px;
  transform: rotate(0deg);
}

/* when navigation is clicked */
.navbar-toggler .top-bar {
  top: inherit;
  transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
  opacity: 0;
  top: inherit;
  filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
  top: inherit;
  transform: rotate(-135deg);
}

.nav-item .dropdown-menu {
  background-color: #ffffff;
  border: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-item .dropdown-menu a.dropdown-item {
  color: #000000;
  padding: 10px 20px;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}

.nav-item .dropdown-menu a.dropdown-item:hover {
  background-color: #134683;
  color: #ffffff;
}

.navbar .dropdown {
  position: relative;
}

.navbar .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  margin-top: 0;
  border-radius: 0;
  background-color: #ececec;
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* Color of 3 lines */
.navbar-toggler.collapsed .toggler-icon {
  background: #000000;
}

/* --------------------toggle button ends---------------------- */
.logo {
  width: 150px;
}

.logo img {
  width: 100%;
}

div#navbarNav {
  justify-content: end;
}

ul.navbar-nav {
  gap: 55px;
}

a.nav-link {
  font-size: 18px;
  transition: color 0.3s;
}

a.nav-link:hover {
  color: #134683 !important;
}
.call-cta svg {
  transition: transform 0.3s ease;
}
.call-cta svg:hover {
  transform: scale(1.1);
}
/* section-1 breadcrumb */
.breadcrumb h4 {
  margin-bottom: 30px;
}
.breadcrumb h6 {
  text-transform: capitalize;
  font-size: 20px;
  font-family: "poppins-regular";
}
section.breadcrumb {
  padding: 100px 0;
}

/* section-2 blogs */
section.blogs {
  padding: 100px 0px;
}
.blog-content {
  padding-top: 100px;
  margin-bottom: 100px;
}
.blog-image {
  max-width: 778.35px;
  height: 100%;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}
.text-container {
  max-width: 623.28px;
}
.text-container h2 {
  font-size: 30px;
  font-family: "poppins-semibold";
  margin-bottom: 40px;
}
.text-container p {
  font-size: 20px;
  font-family: "poppins-regular";
  margin-bottom: 40px;
}
.text-container .blog-name-date {
  font-family: "poppins-medium";
  max-height: fit-content;
}
.blog-name-date p {
  margin-bottom: 40px;
  font-size: 18px;
}
.explore-cta a {
  padding: 17px 30px;
  font-family: "poppins-regular";
  font-size: 24px;
  border-radius: 16px;
}

.hover-effect {
  position: relative;
  display: inline-block;
  padding: 17px 30px;
  text-decoration: none;
  overflow: hidden;
  color: #ffffff !important;
}
.hover-effect:hover {
  color: #ffffff !important;
}
.hover-effect::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #000000 !important;
  transition: width 0.3s ease;
}

.hover-effect:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.hover-effect span {
  position: relative;
  z-index: 1;
}
/* section-3 easy-steps*/
section.easy-steps.deep-blue {
  padding: 100px 0px;
}
.easy-step-content {
  margin-top: 100px;
}
.step-view {
  max-width: 260.02px;
}
p.step-number {
  font-size: 190px;
  font-family: "poppins-bold";
  line-height: 190px;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
}
p.step-content {
  font-size: 25px;
  font-family: "poppins-semibold";
}

/* footer */
footer.footer {
  padding: 100px 0;
  background: url(../images/footer-bg.jpg);
  background-size: cover;
  background-position: center right;
}
.footer p {
  margin-bottom: 0;
}
.footer-content.d-flex {
  flex-direction: column;
  gap: 50px;
}
.footer-logo {
  max-width: 158px;
  margin: 0 auto;
}
.footer-logo img {
  width: 100%;
}
footer a.nav-link,
footer li.nav-item {
  max-width: fit-content;
}

.footer-nav .nav-link svg path {
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.footer-nav .nav-link:hover svg path {
  stroke: #134683 !important;
}
.footer-nav .nav-link:hover svg path.for-hover {
  fill: #134683 !important;
}
.footer-nav a.nav-link,
.footer p {
  font-size: 20px;
}
.footer p.nav-item {
  max-width: fit-content;
}
/* whatsapp button */
.whatsapp-wrap {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 10;
}

.whatsapp-button {
  width: 58px;
  height: 58px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #ffffff;
}

.whatsapp-button:active,
.whatsapp-button:focus {
  color: #ffffff;
}
