@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);
}
@font-face {
  font-family: "poppins-thin";
  src: url(../fonts/Poppins-Light.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;
}

/* 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 header-slider */
.header-slider .carousel-indicators [data-bs-target] {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #ffffff;
  margin-right: 10px;
  margin-bottom: 3rem;
}
.header-slider .carousel-item {
  padding-top: 220px;
  padding-bottom: 220px;
}
.header-slider .carousel-item {
  position: relative;
  overflow: hidden;
}

.header-slider .one .bg-image,
.header-slider .two .bg-image,
.header-slider .three .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 0;
  animation: zoom 3s ease-in-out forwards;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
.header-slider .one .bg-image {
  background: url(../images/header-slider-bg.png);
}

.header-slider .two .bg-image {
  background: url(../images/slide.jpg);
}

.header-slider .three .bg-image {
  background: url(../images/ST-project.jpg);
}
.header-slider h1 {
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 2% 5% 4% 5%;
  border-radius: 32px;
  margin: 0 auto;
  margin-bottom: -34px;
  position: relative;
  z-index: 1;
  font-family: "poppins-semibold";
  font-size: 70px;
  max-width: 1016.82px;
  text-align: center;
  z-index: 1;
  position: relative;
  animation: text-animate 4s ease-in;
}
.header-slider h1 span.thiner-text {
  font-family: "poppins-thin";
}
@keyframes text-animate {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.header-slider .explore-cta {
  max-width: fit-content;
  margin: 0 auto;
}
.explore-cta a {
  padding: 17px 30px;
  font-family: "poppins-regular";
  font-size: 24px;
  z-index: 1;
  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;
}
/* .hover-effect div {
  position: relative;
  z-index: 1000;
} */

/* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* section-2 about-us */
section.about-us {
  padding: 100px 0;
  background: url(../images/about-us-bg.png);
  background-size: cover;
}
.about-us-left {
  max-width: 598.95px;
}
.about-us-left .top-picture {
  max-width: 532.21px;
}
.about-us-left .top-picture img,
.about-us-left .bottom-picture img {
  width: 100%;
  animation: 3s movein;
  border-radius: 32px !important;
}

.bottom-picture {
  max-width: 294.79px;
  float: inline-end;
  margin-top: -78px;
  position: relative;
}
h6 {
  margin-bottom: 20px;
  font-size: 24px;
  text-transform: uppercase;
  font-family: "poppins-medium";
  animation: 3s alternate slidein;
}
h4 {
  font-family: poppins-bold;
  font-size: 44px;
  margin-bottom: 40px;
  animation: 3s alternate slidein;
}
.about-us p {
  font-size: 23px;
  font-family: poppins-regular;
  animation: 3s alternate slidein;
}
.about-us-right {
  max-width: 760.13px;
}
.for-border {
  border-left: 5px solid #191a1d;
  padding-left: 16px;
}
.about-us .explore-cta {
  margin-top: 43px;
}
/* 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);
}

/* Stagger animations */
.about-us-right .animate-fade-in:nth-child(1) {
  transition-delay: 0.2s;
}
.about-us-right .animate-fade-in:nth-child(2) {
  transition-delay: 0.4s;
}
.about-us-right .animate-slide-in:nth-child(3) {
  transition-delay: 0.6s;
}
.about-us-right .animate-slide-in:nth-child(4) {
  transition-delay: 0.8s;
}
.about-us-right .animate-fade-in:nth-child(5) {
  transition-delay: 1s;
}
/* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* section-3 our products */
section.our-products {
  padding: 100px 0;
  background: url("../images/our-product-text-for-bg.png") left no-repeat,
    url("../images/our-product.bg.png") right no-repeat;
  background-size: contain, cover;
  display: flex;
  align-items: center;
}

.product {
  max-width: 428.82px;
  transition: width 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
}

.product-image,
.product-image img {
  width: 100%;
  border-radius: 32px;
}

.product:hover {
  transform: scale(1.05);
  opacity: 0.7;
  transition-delay: 0.2s; /* Add a slight delay for a more gradual transition */
}

.our-product-content {
  margin-top: 100px;
  animation: 3s movein;
}

.product-name {
  font-size: 20px;
  font-family: "poppins-semibold";
  margin-top: 25px;
}
/* section-4 our-catalogue */
section.our-catalogues {
  padding: 100px 0px;
  background: url("../images/catalogue-text-bg.png") right no-repeat,
    url("../images/catalogue-bg.png") left no-repeat;
  background-size: contain, cover;
  display: flex;
  align-items: center;
}
.catalogue-card {
  max-width: 433.03px;
  margin-bottom: 10px;
}
.catalogue-image {
  max-width: 100%;

  border-radius: 32px;
}

.owl-nav,
.owl-dots {
  display: none;
}

.download-cta a {
  font-size: 20px;
  font-family: "poppins-regular";
  line-height: 20px;
  padding: 18px;
  border: 2px solid rgba(0, 0, 0, 0.4);
  transition: 0.5s ease;
  border-radius: 10px;
}
.download-cta a:hover {
  transform: scale(1.03);
}
.catalogue-card h5 {
  font-size: 20px;
  font-family: poppins-semibold;
  padding: 37px 0px;
  margin-bottom: 0;
}
.our-catalogues button.owl-prev,
.our-catalogues button.owl-next {
  padding: 0;
  border: none;
  background: transparent;
  margin-right: -2px;
}
.our-catalogues button.owl-prev:hover,
.our-catalogues button.owl-next:hover {
  opacity: 0.95;
}
.slider-controls {
  margin-top: 100px;
  gap: 10px;
}
div#catalogueSlider {
  margin-top: 100px;
  animation: 3s movein;
}

/* section-5 blogs */
section.blogs {
  padding: 100px 0px;
  background: url(../images/blogs-bg.jpg);
  background-size: cover;
}
.blog-content {
  padding-top: 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;
}
.blogs .explore-cta .view-all {
  color: #134683 !important;
}
.blogs .explore-cta .view-all:hover {
  color: #ffffff !important;
}

/* section-6 facts */
section.fact {
  padding: 100px 0px;
}
.fact-content {
  gap: 40px;
  margin-top: 70px;
}
.first-col p {
  margin-bottom: 0;
  font-size: 20px;
  font-family: "poppins-regular";
}
.digit {
  font-size: 44px;
  font-family: "poppins-bold";
  line-height: 44px;
  max-width: fit-content;
  margin: 0 auto;
}
.title-name {
  font-size: 18px;
  font-family: "poppins-medium";
}
.second-col,
.third-col {
  max-width: fit-content;
}
.first-col {
  max-width: 495px;
}

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