/* 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);
}
/* stager */
.reach-us p.animate-slide-in:nth-child(1) {
  transition-delay: 0.2s;
}
.reach-us p.animate-slide-in:nth-child(2) {
  transition-delay: 0.4s;
}
.reach-us p.animate-slide-in:nth-child(3) {
  transition-delay: 0.6s;
}
.reach-us p.animate-slide-in:nth-child(4) {
  transition-delay: 0.8s;
}
.reach-us p.animate-slide-in:nth-child(5) {
  transition-delay: 1s;
}

.follow-us p.animate-slide-in:nth-child(1) {
  transition-delay: 0.2s;
}
.follow-us p.animate-slide-in:nth-child(2) {
  transition-delay: 0.4s;
}
.follow-us p.animate-slide-in:nth-child(3) {
  transition-delay: 0.6s;
}
.follow-us p.animate-slide-in:nth-child(4) {
  transition-delay: 0.8s;
}
.follow-us p.animate-slide-in:nth-child(5) {
  transition-delay: 1s;
}
.follow-us p.animate-slide-in:nth-child(6) {
  transition-delay: 1.2s;
}
/* ---------------------------------------------------------------------- */

/* 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 contact us */
section.contact-us {
  padding: 100px 0;
}
.contact-us-content {
  margin-top: 70px;
  margin-bottom: 70px;
}
.contact-us-content h3 {
  font-size: 28px;
  font-family: "poppins-semibold";
  margin-bottom: 30px;
}
.reach-us {
  max-width: 619.49px;
  padding-right: 92px;
}
.contact-us-content p {
  font-size: 22px;
  font-family: poppins-regular;
}
.contact-us-content a:hover {
  color: #134683 !important;
}
.contact-us-content a:hover svg path {
  fill: #134683 !important;
}
.contact-us-content a:hover svg circle {
  stroke: #134683 !important;
}
.follow-us {
  padding-left: 92px;
  border-left: 1px solid #ececec;
}
.follow-us svg {
  height: 36px;
  width: 36px;
}
/* form */
.send_inquiry {
  background: #ececec;
  border-radius: 32px;
}

.send_inquiry_left {
  max-width: 589.62px;
  background: white;
  clip-path: polygon(0 0, 100% 0%, 100% 87%, 0% 100%);
  padding: 0;
  margin-top: -120px;
}
.inquiry_head {
  width: 100%;
  margin-bottom: 60px;
  border-radius: 32px 32px 0px 0px;
}
.inquiry_head h3 {
  padding: 75px;
  font-family: "poppins-semibold";
  font-size: 40px;
  color: white;
  margin: 0;
}
.form_content {
  padding: 0px 75px 110px 75px;
}
input.form-control,
textarea.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #134683;
  margin-bottom: 60px;
  padding-left: 0;
  padding-bottom: 20px;
  background: transparent;
}
.form-control::placeholder {
  color: #000000;
  font-size: 18px;
  font-family: "poppins-medium";
}
input.form-control:focus,
input.form-control:active,
textarea.form-control:focus,
textarea.form-control:active {
  box-shadow: none;
  background: transparent;
}
.explore-cta button {
  padding: 17px 30px;
  font-family: "poppins-regular";
  font-size: 22px;
  border: none;
  border-radius: 10px;
}

.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;
}
/* map */
.map-color {
  width: 100%;
  height: 708.87px;
  filter: grayscale(100%) invert(99%) contrast(100%);
}

/* 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;
}
