* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

:root {
  --primary: #27388e;
  --secondary: #25a8e0;
  --accent: #f5b301;
}

html {
  height: auto;
}

body {
  font-family: "Poppins", sans-serif !important;
  height: auto;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif !important;
  font-weight: 700;
}

.container {
  max-width: 1300px !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

figure {
  margin: 0px !important;
  padding: 0px !important;
  display: block !important;
}

.image-anime {
  position: relative;
  overflow: hidden;
}
.image-anime::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.image-anime:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: inline-flex;
  visibility: inherit;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform-origin: left;
}

.active_menu {
  color: #27388e !important;
  position: relative;
}
.active_menu::before {
  position: absolute;
  content: "";
  width: 100% !important;
  height: 2px;
  bottom: 0%;
  left: 0%;
  background-color: #27388e !important;
}

.cm-btn {
  background: #e31e24;
  color: #fff !important;
  border-radius: 30px;
  border: none !important;
}

.cm-btn::before {
  display: none !important;
}

.cm-btn:hover {
  box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.3333333333);
  box-shadow: 7px 10px 15px rgba(0, 0, 0, 0.2666666667);
  transform: translateY(-2px);
}

.cm-btn {
  position: relative;
  background: #25a8e0;
  color: #fff;
  padding: 15px 25px;
  text-align: center;
  margin: 0;
  border: 0 solid transparent;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  min-width: 150px;
  height: auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  text-transform: inherit;
  letter-spacing: 0;
  border-radius: 0px;
  box-shadow: none;
  text-transform: capitalize;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
}

.cm-btn:before {
  background-color: transparent;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  z-index: -1;
  content: "";
  transition: all 0.5s ease-in-out;
}

.cm-btn:hover:before {
  background-color: #25a8e0;
  bottom: 0;
  top: auto;
  width: 100%;
  opacity: 1;
}

.cm-btn:hover {
  color: #ffffff;
}

.section_title {
  position: relative;
  z-index: 5;
}
.section_title h3 {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2baae1;
  padding-left: 43px;
  margin-bottom: 15px;
}
.section_title h3::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 35px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #2baae1;
}
.section_title h2 {
  position: relative;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -0.01em;
  color: #000;
  margin-bottom: 0;
  text-transform: uppercase;
  cursor: none;
}
.section_title h2 strong {
  color: #2baae1;
  font-weight: 700;
}
.section_title p {
  margin-top: 20px;
  margin-bottom: 0;
  color: #434446;
  font-size: 16px;
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-80px);
}

/* Animation trigger */
.animate .char {
  animation: ltrAnimation 0.6s ease forwards;
  animation-delay: calc(var(--char-index) * 0.02s);
}

@keyframes ltrAnimation {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.btn-default {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  color: #222;
  background-color: #2baae1;
  border-radius: 0px;
  padding: 4px 40px 4px 4px;
  border: none;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.btn-default span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  background-color: #fff;
  color: #222;
  border-radius: 0px;
  padding: 15px 20px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  background: url(../images/arrow-white.svg) no-repeat center;
  background-size: 20px;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.4s ease-in-out;
  z-index: 2;
}
.btn-default::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: #ff0000;
  border-radius: 0px;
  transition: all 0.5s ease-in-out;
  z-index: 0;
}
.btn-default:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.btn-default:hover::before {
  transform: translateY(-50%) rotate(45deg);
}
.btn-default:hover span {
  background-color: #FFF;
  color: #000;
}

.fixed-icons {
  position: fixed;
  bottom: 20%;
  left: 10px;
  z-index: 11;
  margin: 0;
  padding: 10px 8px;
  list-style: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50px;
}

.fixed-icons span {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 14px;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  float: right;
  font-size: 25px;
}

.fixed-icons span:before {
  font-family: FontAwesome;
  content: "\f095";
  width: 15px;
  height: 15px;
  display: block;
  margin: 13px 15px;
  animation: wiggle 2s infinite;
}

header.fixed-icons li svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: #ffffff;
  margin-right: 10px;
}

.fixed-icons .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.fixed-icons .wave {
  animation: waveIn 1.2s infinite ease-out;
  transform-origin: 50% 50%;
}

.fixed-icons .wave-sm {
  animation-delay: 0.3s;
}

.fixed-icons .wave-md {
  animation-delay: 0.45s;
}

.fixed-icons .wave-lg {
  animation-delay: 0.6s;
}

@keyframes waveIn {
  from {
    opacity: 0;
    transform: scale(0.3) translate(-20px, 10px);
  }
  50% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.fixed-icons li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fixed-icons li + li {
  margin-top: 5px;
}

.fixed-icons .link.wp {
  background-color: #4dc247;
  margin-bottom: 5px;
}

.fixed-icons .link.down {
  background-color: #fff;
  margin-bottom: 5px;
}

.fixed-icons .link {
  background-color: #ff0000;
  border-radius: 100%;
  margin: 0 auto;
  font-size: 20px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  line-height: 32px;
  transition: all 0.5s ease 0s;
}

.fixed-icons .link img {
  width: 90%;
  margin: 0 auto;
  border-radius: 50%;
}

.toggle_dp {
  position: fixed;
  height: 48px;
  width: auto;
  text-align: center;
  cursor: pointer;
  background: #ff0000;
  bottom: 30%;
  letter-spacing: 1px;
  right: -60px;
  line-height: 45px;
  padding: 0 20px;
  transform: rotate(270deg);
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  z-index: 999;
}

.Custome_model .modal-header {
  background: #27388e;
  border-bottom: 1px solid rgba(222, 226, 230, 0.2117647059);
  padding: 15px 25px;
  border-radius: 20px 20px 0 0;
  justify-content: space-between;
}

.Custome_model .modal-content {
  border-radius: 70px;
}

.Custome_model .modal-body {
  width: 100%;
  display: inline-block;
  padding: 25px;
  background: #f4f4f4;
  border-radius: 0 0 20px 20px;
}

.Custome_model .modal-header .modal-title {
  color: #fff;
  text-align: center !important;
  font-size: 21px;
}

.Custome_model .modal-header .close {
  color: #ffffff;
  font-size: 30px;
  opacity: 10;
  text-shadow: 0 1px 0 #000000;
  background-color: transparent;
  border: none;
}

.Custome_model .modal-logo img {
  width: 100%;
  max-width: 70%;
  margin: auto;
  margin-bottom: 0px;
}

.Custome_model .modal-call {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.Custome_model .modal-contact-item {
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid #e3e3e3; */
  padding-bottom: 0px;
}

.Custome_model .icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(102, 102, 102, 0.1411764706);
  border-radius: 50%;
  margin-right: 12px;
  transition: 0.3s;
}

.Custome_model .modal-contact-content {
  display: flex;
  flex-direction: column;
}

.Custome_model .modal-contact-content .sub-line {
  font-size: 14px;
  color: #1e1e1e;
  margin: 4px 0 0;
  text-align: left;
}

.Custome_model .modal-contact-content .main-line {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  color: #000;
}

.Custome_model .form-sec .form-group {
  margin: 0 0 15px 0;
}

.Custome_model .form-sec .form-control {
  color: #000;
  width: 100%;
  height: 55px;
  border: 1px dotted #b1b1b1;
  padding-left: 15px;
  border-radius: 10px;
  background-color: transparent;
}

.Custome_model .form-sec textarea.form-control {
  height: 155px;
}

.Custome_model .form-sec .form-group .cm-btn {
  color: #000;
  padding: 15px 40px;
  border-radius: 10px;
  width: 100%;
}

.Custome_model .popup-btn .form-group .cm-btn {
  border-radius: 10px;
  color: #000;
}

.Custome_model .cm-btn:hover {
  background: #2baae1 !important;
  color: #fff !important;
}

.topbar {
  position: relative;
  width: 100%;
  background: #27388e;
  padding: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.topbar .container-fluid {
  width: 80%;
}
.topbar .contact_detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar .contact_detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.topbar .contact_detail ul li {
  font-size: 16px;
  color: #FFF;
}
.topbar .contact_detail ul li a {
  color: inherit;
}
.topbar .contact_detail ul li a i {
  color: #FFF;
  margin-right: 5px;
  transition: all 0.3s ease;
}
.topbar .contact_detail ul li a:hover i {
  transform: scale(1.1);
}

.Custome_navbar {
  position: relative !important;
  background: #FFF;
  width: 100%;
  z-index: 5;
}
.Custome_navbar .container-fluid {
  width: 80%;
}
.Custome_navbar .heder_logo {
  width: 200px;
  border-radius: 0px;
}
.Custome_navbar .navbar-nav .nav-item {
  margin: auto 10px;
}
.Custome_navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: #25a8e0;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.Custome_navbar .navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 0%;
  left: 0%;
  background-color: #27388e;
  transition: all 0.3s ease;
}
.Custome_navbar .navbar-nav .nav-item:hover .nav-link {
  color: #27388e;
}
.Custome_navbar .navbar-nav .nav-item:hover .nav-link::before {
  width: 100%;
}
.Custome_navbar .navbar-nav .nav-item .dropdown-icon {
  color: #2baae1;
}
.Custome_navbar .btn-default {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  color: #222;
  background-color: #ff0000;
  border-radius: 5px;
  padding: 4px 40px 4px 4px;
  border: none;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.Custome_navbar .btn-default span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  background-color: #fff;
  color: #222;
  border-radius: 3px;
  padding: 15px 20px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.Custome_navbar .btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  background: url(../images/arrow-white.svg) no-repeat center;
  background-size: 20px;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.4s ease-in-out;
  z-index: 2;
}
.Custome_navbar .btn-default::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: #222;
  border-radius: 0px;
  transition: all 0.5s ease-in-out;
  z-index: 0;
}
.Custome_navbar .btn-default:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.Custome_navbar .btn-default:hover::before {
  transform: translateY(-50%) rotate(45deg);
}
.Custome_navbar .btn-default:hover span {
  background-color: #ff0000;
  color: #FFF;
}

.custom-dropdown {
  position: relative;
}
.custom-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  padding: 10px 0;
  border: none;
  margin: 0;
  display: none;
  min-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  max-height: 400px;
  overflow-y: scroll;
}
.custom-dropdown .dropdown-menu li {
  padding: 5px 20px;
}
.custom-dropdown .dropdown-menu li a {
  text-decoration: none;
  color: #000;
  display: block;
}
.custom-dropdown .dropdown-menu li i {
  text-decoration: none;
  color: #333;
  display: block;
}
.custom-dropdown .dropdown-menu li:hover {
  background: #2baae1;
}
.custom-dropdown .dropdown-menu li:hover a {
  color: #FFF;
}
.custom-dropdown .dropdown-menu li:hover i {
  color: #FFF;
}
.custom-dropdown .divider {
  height: 1px;
  background: #ddd;
  margin: 5px 0;
}

/* Submenu parent */
.submenu {
  position: relative;
}

/* Submenu hidden by default */
.submenu .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  min-width: 350px;
  list-style: none;
  padding: 10px 0;
  display: none;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.submenu .sub-menu li a {
  color: #333 !important;
}

.submenu .sub-menu li:hover a {
  color: #FFF !important;
}

.submenu-toggle {
  cursor: pointer;
  transition: 0.3s;
}

.submenu.open .submenu-toggle {
  transform: rotate(90deg);
}

/* Desktop hover */
@media (min-width: 768px) {
  .custom-dropdown:hover .dropdown-menu {
    display: block;
  }
  .submenu:hover .sub-menu {
    display: block;
  }
}
/* Mobile support */
@media (max-width: 767px) {
  .submenu.open > .sub-menu {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    box-shadow: none;
  }
}
.main_banner {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.main_banner .Main_background {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.main_banner .Main_background::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: rgba(0, 0, 0, 0.6431372549);
}
.main_banner .banner_slider {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 150px 0;
}
.main_banner .left_part .section_title {
  position: relative;
}
.main_banner .left_part .section_title h1 {
  color: #FFF;
  font-size: 60px;
  font-weight: 700;
}
.main_banner .left_part .section_title p {
  color: #FFF;
  font-size: 18px;
}
.main_banner .left_part .section_title .btn-default {
  margin-top: 30px;
}

.swiper-button-next ::slotted(svg), .swiper-button-next svg, .swiper-button-prev ::slotted(svg), .swiper-button-prev svg {
  display: none;
}

.swiper-button-next {
  background-color: #FFF;
  border-radius: 5px;
  margin-right: 30px !important;
}
.swiper-button-next img {
  transform: rotate(45deg);
  filter: brightness(0) invert(0);
}

.swiper-button-prev {
  background-color: #FFF;
  border-radius: 5px;
  margin-left: 30px !important;
}
.swiper-button-prev img {
  transform: rotate(225deg);
  filter: brightness(0) invert(0);
}

.Welcome_sec {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/about_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.Welcome_sec::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: rgba(255, 255, 255, 0.6431372549);
}
.Welcome_sec .left_hero {
  position: relative;
}
.Welcome_sec .left_hero .blue-doted {
  position: absolute;
  width: 300px;
  left: -8%;
  top: 12%;
}
.Welcome_sec .left_hero .blue-doted img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.Welcome_sec .left_hero .red-doted {
  position: absolute;
  width: 300px;
  right: -10%;
  top: 44%;
}
.Welcome_sec .left_hero .red-doted img {
  width: 100%;
  height: 100%;
}
.Welcome_sec .left_part {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 0 50px 0 50px;
}
.Welcome_sec .left_part .Contain_box {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(37, 168, 224, 0.88);
  right: 0%;
  top: 83%;
  padding: 20px;
  transition: all 0.5s ease;
}
.Welcome_sec .left_part .Contain_box h3 {
  color: #FFF;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.Welcome_sec .left_part .Contain_box p {
  color: #FFF;
  font-size: 16px;
  margin-bottom: 0;
}
.Welcome_sec .left_part .Contain_box ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.Welcome_sec .left_part .Contain_box ul li {
  padding-left: 20px;
  color: #FFF;
  position: relative;
}
.Welcome_sec .left_part .Contain_box ul li::before {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background: #FFF;
  left: 0%;
  top: 50%;
}
.Welcome_sec .left_part:hover .Contain_box {
  top: 0%;
  background: rgba(0, 0, 0, 0.768627451);
}
.Welcome_sec .section_title p {
  color: #000;
  font-size: 16px;
  text-align: justify;
}
.Welcome_sec .section_title .iconImage {
  position: relative;
}
.Welcome_sec .section_title .iconImage .Image_1 {
  transition: all 0.3s ease;
}
.Welcome_sec .section_title .iconImage .Image_1:hover {
  transform: scale(1.1);
}
.Welcome_sec .section_title .iconImage .Image_2 {
  transition: all 0.3s ease;
}
.Welcome_sec .section_title .iconImage .Image_2:hover {
  transform: scale(1.1);
}

.Product_sec {
  position: relative;
  padding: 100px 0;
  background-color: rgba(37, 168, 224, 0.3019607843);
  background-image: url(../images/product-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.Product_sec::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: rgba(0, 0, 0, 0.6431372549);
}
.Product_sec .section_title {
  position: relative;
}
.Product_sec .section_title h2 {
  color: #FFF;
}
.Product_sec .section_title h3 {
  color: #FFF;
}
.Product_sec .product_slider {
  position: relative;
  margin-top: 30px;
}
.Product_sec .product_slider .Product_card {
  position: relative;
  margin: 30px 10px;
  background-color: #FFF;
  height: 100%;
  overflow: hidden;
  padding: 15px;
  border-radius: 30px;
}
.Product_sec .product_slider .Product_card .image_box {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #25a8e0;
}
.Product_sec .product_slider .Product_card .image_box img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.Product_sec .product_slider .Product_card .Product_name {
  position: relative;
  padding: 10px 10px 0px 10px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  height: 80px;
}
.Product_sec .product_slider .Product_card .Product_name h3 {
  color: #27388e;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0px;
  padding-right: 40px;
}
.Product_sec .product_slider .Product_card .Product_name .arrow {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ff0000;
}
.Product_sec .swiper-pagination {
  margin-bottom: -15px;
}
.Product_sec .swiper-pagination-bullet {
  background: #25a8e0;
}

.Why_Choose_Us {
  position: relative;
  padding: 100px 0px;
  background-color: rgba(37, 168, 224, 0.1019607843);
}
.Why_Choose_Us .right_img {
  position: absolute;
  height: 100%;
  width: 600px;
  right: 0%;
  top: 0%;
  opacity: 0.9;
}
.Why_Choose_Us .right_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.Why_Choose_Us .right_img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: rgba(0, 0, 0, 0.5803921569);
}
.Why_Choose_Us .image_box {
  margin-top: 50px;
}
.Why_Choose_Us .right_part {
  position: relative;
  margin-left: 50px;
}
.Why_Choose_Us .right_part .Chose_card {
  position: relative;
  background-color: #25a8e0;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}
.Why_Choose_Us .right_part .Chose_card .icon_box {
  position: relative;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: #27388e;
}
.Why_Choose_Us .right_part .Chose_card .icon_box img {
  filter: brightness(0) invert(1);
}
.Why_Choose_Us .right_part .Chose_card .contain_box {
  width: 75%;
}
.Why_Choose_Us .right_part .Chose_card .contain_box h3 {
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
}
.Why_Choose_Us .right_part .Chose_card .contain_box p {
  color: #FFF;
  font-size: 16px;
  margin-bottom: 0%;
}

.Counter_sec {
  position: relative;
  padding: 80px 0px;
  background-image: url(../images/counter-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}
.Counter_sec::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: rgba(0, 0, 0, 0.6);
}
.Counter_sec .sedo_box {
  position: absolute;
  content: "";
  width: 1500px;
  height: 900px;
  left: -5%;
  top: 5%;
  background-color: rgba(37, 168, 224, 0.5411764706);
  transform: rotate(60deg);
}
.Counter_sec .section_title {
  margin-bottom: 30px;
}
.Counter_sec .section_title h2 {
  color: #FFF;
}
.Counter_sec .section_title h3 {
  color: #FFF;
}
.Counter_sec .Counter_card {
  position: relative;
  margin: 30px;
  padding: 10px 30px;
  border-left: 3px solid #FFF;
}
.Counter_sec .Counter_card .icon_box {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
.Counter_sec .Counter_card .icon_box img {
  filter: brightness(0) invert(1);
}
.Counter_sec .Counter_card h3 {
  color: #FFF;
  font-size: 50px;
  font-weight: 700;
}
.Counter_sec .Counter_card p {
  color: #FFF;
  font-size: 16px;
  margin-bottom: 0px;
}

.Industries_We_Serve {
  position: relative;
  padding: 100px 0px;
}
.Industries_We_Serve .section_title {
  margin-bottom: 40px;
}
.Industries_We_Serve .Industry_Card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 300px;
}
.Industries_We_Serve .Industry_Card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.Industries_We_Serve .Industry_Card .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
  background-color: rgba(0, 0, 0, 0.4784313725);
  padding: 20px;
}
.Industries_We_Serve .Industry_Card .overlay h3 {
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
  padding: 0px 10px;
  position: relative;
}
.Industries_We_Serve .Industry_Card .overlay h3::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 0%;
  bottom: -10px;
  left: 5px;
  background-color: #2baae1;
  transition: all 0.3s ease;
}
.Industries_We_Serve .Industry_Card .overlay p {
  color: #FFF;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 0px;
  padding: 0px 10px;
  position: relative;
  left: 110%;
  transition: all 0.3s ease;
}
.Industries_We_Serve .Industry_Card:hover .overlay h3::before {
  width: 98%;
}
.Industries_We_Serve .Industry_Card:hover .overlay p {
  left: 0%;
}

.Contact_part_sec {
  position: relative;
  padding: 100px 0px;
  background-image: url(../images/conntact-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.Contact_part_sec::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: rgba(255, 255, 255, 0.6784313725);
}
.Contact_part_sec .section_title h2 {
  color: #000;
  font-size: 34px;
}
.Contact_part_sec .section_title .btn-default {
  margin-top: 20px;
}
.Contact_part_sec .image_box {
  position: relative;
}

.Global_Presence {
  position: relative;
  padding: 100px 0px;
}

.Certificate_sec {
  position: relative;
  padding: 100px 0px;
  background-image: url(../images/certificate-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.Certificate_sec::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: rgba(0, 0, 0, 0.6784313725);
}
.Certificate_sec .container-fluid {
  max-width: 1500px;
}
.Certificate_sec .section_title h2 {
  color: #FFF;
}
.Certificate_sec .section_title h3 {
  color: #FFF;
}
.Certificate_sec .Certificate_card {
  position: relative;
}
.Certificate_sec .Certificate_card .icon_box {
  position: relative;
  border: 5px solid #25a8e0;
}
.Certificate_sec .Certificate_card .icon_box img {
  width: 100%;
  height: 100%;
}
.Certificate_sec .Certificate_card .icon_box .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
  background-color: rgba(0, 0, 0, 0.7333333333);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.Certificate_sec .Certificate_card .icon_box .overlay i {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  padding: 0px 10px;
}
.Certificate_sec .Certificate_card .icon_box:hover .overlay {
  opacity: 1;
}

.get_inquery_sec {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: rgba(243, 239, 239, 0.4);
  background-image: url(../images/getintouch-bg.png);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.get_inquery_sec::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: rgba(255, 255, 255, 0.6980392157);
}
.get_inquery_sec .bg_right {
  position: absolute;
  width: 600px;
  height: 100%;
  right: 0%;
  top: 0%;
}
.get_inquery_sec .bg_right::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0%;
  top: 0%;
  background-color: rgba(0, 0, 0, 0.4862745098);
}
.get_inquery_sec .get_in_touch {
  position: relative;
  background-color: rgb(203, 234, 247);
  border-top: 5px solid #25a8e0;
  border-bottom: 5px solid #25a8e0;
  padding: 40px;
  border-radius: 0px;
  width: 100%;
  margin-left: 60px;
  border-radius: 30px;
}
.get_inquery_sec .get_in_touch h3 {
  position: relative;
  color: #000;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 40px;
}
.get_inquery_sec .get_in_touch h3::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 200px;
  background-color: #25a8e0;
  bottom: -10px;
  left: 0%;
}
.get_inquery_sec .get_in_touch form .input_part {
  margin: 30px 0px;
}
.get_inquery_sec .get_in_touch form .input_part .input_field {
  width: 100%;
  padding: 10px 20px;
  border: none;
  box-shadow: 0px 5px 15px rgba(37, 168, 224, 0.1176470588);
  font-size: 18px;
  outline: none;
}
.get_inquery_sec .get_in_touch form .input_part .btn-default {
  background-color: #000;
  margin-top: 20px;
}
.get_inquery_sec .get_in_touch form .input_part .btn-default span {
  background-color: #FFF;
}
.get_inquery_sec .get_in_touch form .input_part .btn-default:hover span {
  background-color: #25a8e0;
}

.main-footer {
  position: relative;
  background-image: url(../images/footer-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 20px;
}
.main-footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background: rgba(0, 0, 0, 0.7176470588);
}
.main-footer .top_footer {
  position: relative;
  padding: 30px 0px;
  margin-top: 50px;
  border-bottom: 1px solid #25a8e0;
}
.main-footer .top_footer .Footer_logo {
  max-width: 300px;
  background: #FFF;
  padding: 10px;
  border-radius: 5px;
}
.main-footer .top_footer ul {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: end;
  gap: 15px;
}
.main-footer .top_footer ul li {
  position: relative;
}
.main-footer .top_footer ul li a {
  height: 40px;
  width: 40px;
  border-radius: 50px;
  background-color: #25a8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: all 0.5 ease;
}
.main-footer .top_footer ul li a i {
  color: #FFF;
  font-size: 20px;
}
.main-footer .top_footer ul li:hover a {
  background-color: #FFF;
}
.main-footer .top_footer ul li:hover a i {
  color: #25a8e0;
}
.main-footer .footer_center {
  position: relative;
  padding: 50px 0px;
  border-bottom: 1px solid #25a8e0;
}
.main-footer .footer_center h3 {
  color: #25a8e0;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.main-footer .footer_center p {
  color: #FFF;
  font-size: 16px;
}
.main-footer .footer_center .Image_2 {
  filter: brightness(0) invert(1);
}
.main-footer .footer_center .product_scrol {
  position: relative;
  height: 300px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #25a8e0 transparent;
}
.main-footer .footer_center ul {
  position: relative;
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.main-footer .footer_center ul li {
  position: relative;
  padding-left: 15px;
  margin: 15px 0;
  transition: all 0.3s ease;
}
.main-footer .footer_center ul li::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 3px;
  left: 0%;
  background: #25a8e0;
}
.main-footer .footer_center ul li a {
  color: #FFF;
}
.main-footer .footer_center ul li:hover {
  padding-left: 20px;
}
.main-footer .footer_center .Contact_num {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  border-radius: 15px;
  padding: 10px 10px;
}
.main-footer .footer_center .Contact_num .icon_box {
  position: relative;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #25a8e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-footer .footer_center .Contact_num .icon_box i {
  color: #FFF;
  font-size: 20px;
}
.main-footer .footer_center .Contact_num .contain {
  width: 75%;
}
.main-footer .footer_center .Contact_num .contain a {
  color: #FFF;
}
.main-footer .footer_center .Contact_part {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  border: 1px solid rgba(37, 168, 224, 0.4941176471);
  background-color: #2baae1;
  border-radius: 15px;
  height: 125px;
  padding: 10px 10px;
}
.main-footer .footer_center .Contact_part .icon_box {
  position: relative;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-footer .footer_center .Contact_part .icon_box i {
  color: #25a8e0;
  font-size: 30px;
}
.main-footer .footer_center .Contact_part .contain {
  width: 75%;
}
.main-footer .footer_center .Contact_part .contain a {
  color: #FFF;
}
.main-footer .footer_center .Contact_part .contain h3 {
  color: #FFF;
}
.main-footer .footer-copyright {
  padding: 30px 0px;
  position: relative;
}
.main-footer .footer-copyright .footer-copyright-text {
  text-align: center;
}
.main-footer .footer-copyright .footer-copyright-text p {
  color: #FFF;
  font-size: 16px;
  margin-bottom: 0px;
}
.main-footer .footer-copyright .footer-copyright-text p a {
  color: #25a8e0;
}
.main-footer .footer-copyright .footer-copyright-text p a .footer-icon {
  vertical-align: middle;
  width: 25px;
  filter: brightness(0) invert(1);
}

.Comman_banner {
  position: relative;
  padding: 150px 0px;
  background-image: url(../images/about-page-banner-3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.Comman_banner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: rgba(0, 0, 0, 0.6980392157);
}
.Comman_banner .section_title {
  position: relative;
}
.Comman_banner .section_title h1 {
  color: #FFF;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 30px;
}
.Comman_banner .section_title ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.Comman_banner .section_title ul li {
  color: #FFF;
  font-size: 16px;
  padding-left: 20px;
  position: relative;
}
.Comman_banner .section_title ul li a {
  color: inherit;
}
.Comman_banner .section_title ul li a i {
  color: #FFF;
  margin-right: 5px;
  transition: all 0.3s ease;
}
.Comman_banner .section_title ul li::before {
  position: absolute;
  content: "";
  background: #FFF;
  left: 0%;
  top: 0%;
  width: 3px;
  height: 100%;
  transform: rotate(-20deg);
}
.Comman_banner .section_title ul li:hover {
  color: #25a8e0;
}
.Comman_banner .section_title ul li:hover a {
  transform: scale(1.1);
  color: #25a8e0;
}
.Comman_banner .section_title ul li:hover a i {
  color: #25a8e0;
}
.Comman_banner .section_title ul li:first-child {
  padding-left: 0px;
}
.Comman_banner .section_title ul li:first-child::before {
  display: none;
}

.About_Page_sec {
  position: relative;
  padding: 100px 0px;
}
.About_Page_sec .section_title {
  position: relative;
}
.About_Page_sec .right_part {
  position: relative;
  height: 100%;
}
.About_Page_sec .right_part .Image_1 {
  position: relative;
  width: 85%;
  border-radius: 30px;
  overflow: hidden;
  z-index: 5;
}
.About_Page_sec .right_part .Image_2 {
  position: absolute;
  width: 80%;
  right: 3%;
  bottom: 0%;
  transform: translateY(-50%);
  border-radius: 30px;
  overflow: hidden;
  z-index: 6;
}
.About_Page_sec .right_part .Image_3 {
  position: absolute;
  width: 80%;
  right: -10%;
  top: 85%;
  transform: translateY(-50%);
  border-radius: 30px;
  overflow: hidden;
  z-index: 4;
}
.About_Page_sec .right_part .blue-doted {
  position: absolute;
  width: 300px;
  right: 0%;
  top: 0%;
  transform: rotate(180deg);
}
.About_Page_sec .right_part .blue-doted img {
  width: 100%;
  height: 100%;
}
.About_Page_sec .right_part .red-doted {
  position: absolute;
  width: 300px;
  left: 10%;
  top: 80%;
  transform: translateY(-50%);
}
.About_Page_sec .right_part .red-doted img {
  width: 100%;
  height: 100%;
}

.Corporate_Milestone_sec {
  position: relative;
  padding: 100px 0px;
  background-image: url(../images/corporate-milestone-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.Corporate_Milestone_sec::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: rgba(0, 0, 0, 0.6980392157);
}
.Corporate_Milestone_sec .section_title {
  position: relative;
}
.Corporate_Milestone_sec .section_title h2 {
  color: #FFF;
}
.Corporate_Milestone_sec .timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
  margin-top: 40px;
}
.Corporate_Milestone_sec .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: #25a8e0;
  transform: translateX(-50%);
}
.Corporate_Milestone_sec .timeline .milestone_card {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  transition: all 0.4s ease;
}
.Corporate_Milestone_sec .timeline .milestone_card .year {
  font-size: 24px;
  font-weight: 700;
  color: #25a8e0;
  margin-bottom: 10px;
}
.Corporate_Milestone_sec .timeline .milestone_card .content {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid #25a8e0;
  border-right: 5px solid #25a8e0;
}
.Corporate_Milestone_sec .timeline .milestone_card .content h3 {
  color: #27388e;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.Corporate_Milestone_sec .timeline .milestone_card .content p {
  font-size: 15px;
  color: #555;
}
.Corporate_Milestone_sec .timeline .milestone_card::before {
  content: "";
  position: absolute;
  top: 25px;
  width: 15px;
  height: 15px;
  background: #25a8e0;
  border-radius: 50%;
  z-index: 2;
}
.Corporate_Milestone_sec .timeline .milestone_card:nth-child(odd) {
  left: 0;
  text-align: right;
}
.Corporate_Milestone_sec .timeline .milestone_card:nth-child(odd)::before {
  right: -8px;
}
.Corporate_Milestone_sec .timeline .milestone_card:nth-child(even) {
  left: 50%;
}
.Corporate_Milestone_sec .timeline .milestone_card:nth-child(even)::before {
  left: -8px;
}
.Corporate_Milestone_sec .timeline .milestone_card:hover {
  transform: translateY(-8px);
}
.Corporate_Milestone_sec .timeline .milestone_card:hover .content {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.Director_Profile_sec {
  position: relative;
  padding: 100px 0px;
}
.Director_Profile_sec .Director_profile_card {
  position: relative;
  border-radius: 30px;
  background-color: #25a8e0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2666666667);
}
.Director_Profile_sec .Director_profile_card .image_box {
  position: relative;
  height: 400px;
  width: 100%;
  overflow: hidden;
}
.Director_Profile_sec .Director_profile_card .image_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.Director_Profile_sec .Director_profile_card .contain_box {
  padding: 20px;
  position: relative;
}
.Director_Profile_sec .Director_profile_card .contain_box h3 {
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
}
.Director_Profile_sec .Director_profile_card .contain_box p {
  color: #FFF;
  font-size: 16px;
  margin-bottom: 0%;
}
.Director_Profile_sec .Director_profile_card .contain_box .Social_Media {
  position: absolute;
  background-color: #FFF;
  border: 5px solid #25a8e0;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 20px;
  top: -30px;
}
.Director_Profile_sec .Director_profile_card .contain_box .Social_Media .Pluse_icon {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.Director_Profile_sec .Director_profile_card .contain_box .Social_Media .Pluse_icon i {
  color: #25a8e0;
  font-size: 30px;
}
.Director_Profile_sec .Director_profile_card .contain_box .Social_Media .Social_icons {
  position: absolute;
  height: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  bottom: 0%;
  padding-top: 5px;
  transition: height 0.4s ease;
}
.Director_Profile_sec .Director_profile_card .contain_box .Social_Media .Social_icons a {
  height: 0px;
  width: 40px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.3s ease;
}
.Director_Profile_sec .Director_profile_card:hover .image_box img {
  transform: scale(1.1);
}
.Director_Profile_sec .Director_profile_card:hover .contain_box .Social_Media .Pluse_icon {
  transform: rotate(45deg);
}
.Director_Profile_sec .Director_profile_card:hover .contain_box .Social_Media .Social_icons {
  height: 270px;
}
.Director_Profile_sec .Director_profile_card:hover .contain_box .Social_Media a {
  height: 40px;
  width: 40px;
  transform: scale(1);
  opacity: 1;
}

.Our_Philosophy_sec {
  padding: 100px 0;
  background: #f4f9fd;
}
.Our_Philosophy_sec .section_title {
  text-align: center;
  margin-bottom: 60px;
}
.Our_Philosophy_sec .section_title p {
  color: #555;
  margin-top: 10px;
}
.Our_Philosophy_sec .philosophy_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.Our_Philosophy_sec .philosophy_card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}
.Our_Philosophy_sec .philosophy_card .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #25a8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 10px;
}
.Our_Philosophy_sec .philosophy_card .icon-box img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}
.Our_Philosophy_sec .philosophy_card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #25a8e0;
}
.Our_Philosophy_sec .philosophy_card p {
  font-size: 15px;
  color: #555;
}
.Our_Philosophy_sec .philosophy_card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  left: 0;
  bottom: 0;
  background: #25a8e0;
  transition: height 0.4s ease;
  z-index: 0;
}
.Our_Philosophy_sec .philosophy_card:hover {
  transform: translateY(-10px);
}
.Our_Philosophy_sec .philosophy_card:hover::before {
  height: 100%;
}
.Our_Philosophy_sec .philosophy_card:hover h3, .Our_Philosophy_sec .philosophy_card:hover p {
  color: #fff;
  position: relative;
  z-index: 1;
}

.Mission_Vision {
  position: relative;
  padding: 100px 0px;
  background-image: url(../images/mission-vision-bg.jpeg);
  background-size: cover;
  background-position: center;
  background-size: cover;
}
.Mission_Vision .row {
  background-color: rgba(37, 168, 224, 0.1529411765);
  position: relative;
}
.Mission_Vision .row .Mission_vision_card {
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.Mission_Vision .row .Mission_vision_card .icon_box {
  position: relative;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: #25a8e0;
  padding: 15px;
}
.Mission_Vision .row .Mission_vision_card .icon_box img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.Mission_Vision .row .Mission_vision_card h3 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
}
.Mission_Vision .row .Mission_vision_card p {
  color: #000;
  font-size: 16px;
  margin-bottom: 0%;
  text-align: center;
}

.Product_Page_sec {
  position: relative;
  padding: 100px 0px;
  background-image: url(../images/product-page-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.Product_Page_sec::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: rgba(255, 255, 255, 0.6980392157);
}
.Product_Page_sec .product_card {
  position: relative;
  padding: 0px;
  background-color: #25a8e0;
  border: 10px solid rgba(255, 255, 255, 0.5411764706);
  border-radius: 0px;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}
.Product_Page_sec .product_card .image_box {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-bottom: 10px solid rgba(255, 255, 255, 0.5411764706);
}
.Product_Page_sec .product_card .image_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.Product_Page_sec .product_card h3 {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  margin: 20px 20px;
  margin-top: 20px;
}
.Product_Page_sec .product_card:hover {
  background-color: rgba(255, 0, 0, 0.7882352941);
  transform: scale(1.05);
}
.Product_detail_page {
  position: relative;
  padding: 100px 0px;
}
.Product_detail_page .Product_image {
  position: relative;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.337254902);
  margin-left: 50px;
}
.Product_detail_page .Product_image img {
  width: 100%;
}
.Product_detail_page .product_content h2 {
  color: #25a8e0;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.Product_detail_page p {
  font-size: 16px;
  text-align: justify;
}
.Product_detail_page p a {
  color: #25a8e0;
  font-weight: 700;
}
.Product_detail_page h3 {
  color: #25a8e0;
  font-size: 22px;
  font-weight: 700;
  margin-top: 30px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}
.Product_detail_page h3::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 5px;
  background-color: #25a8e0;
  bottom: 0px;
  left: 0%;
}
.Product_detail_page ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.Product_detail_page ul li {
  position: relative;
  margin: 10px 0px;
}
.Product_detail_page ul li i {
  color: #25a8e0;
  margin-right: 5px;
}
.Product_detail_page .Fency_card {
  position: relative;
  border: 5px solid #25a8e0;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
}
.Product_detail_page .Fency_card img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.Product_detail_page .Fency_card .overlay {
  position: absolute;
  height: 0%;
  width: 100%;
  top: 0%;
  left: 0%;
  background-color: rgba(0, 0, 0, 0.662745098);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.5s ease;
}
.Product_detail_page .Fency_card .overlay i {
  color: #FFF;
  font-size: 0px;
  transition: all 0.3 ease;
}
.Product_detail_page .Fency_card:hover .overlay {
  height: 100%;
}
.Product_detail_page .Fency_card:hover .overlay i {
  font-size: 40px;
}

.Enquery_Page_sec {
  position: relative;
  padding: 100px 0px;
}
.Enquery_Page_sec .section_title {
  position: relative;
  background-color: rgba(37, 168, 224, 0.1568627451);
  padding: 30px;
  height: 100%;
}
.Enquery_Page_sec .section_title .Bottom_image {
  position: absolute;
  width: 100%;
  left: 0%;
  bottom: 0%;
}
.Enquery_Page_sec .Enquery_form {
  position: relative;
}
.Enquery_Page_sec .Enquery_form h3 {
  position: relative;
  color: #25a8e0;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 40px;
}
.Enquery_Page_sec .Enquery_form h3::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 200px;
  background-color: #25a8e0;
  bottom: -10px;
  left: 0%;
}
.Enquery_Page_sec .Enquery_form form .form-group {
  padding: 10px 0px;
}
.Enquery_Page_sec .Enquery_form form .form-group label {
  color: #27388e;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.Enquery_Page_sec .Enquery_form form .form-group .input_field {
  width: 100%;
  padding: 10px 20px;
  border: 2px solid #25a8e0;
  font-size: 18px;
  outline: none;
}
.Enquery_Page_sec .Enquery_form form .btn-default {
  margin-top: 30px;
}

.Address_Page_part {
  position: relative;
  padding: 20px 0px;
  background-color: rgba(37, 168, 224, 0.1568627451);
}
.Address_Page_part .section_title .Contact_detail {
  position: relative;
  background-color: rgba(37, 168, 224, 0.1568627451);
  margin: 20px 0px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
}
.Address_Page_part .section_title .Contact_detail .icon_box {
  position: relative;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #25a8e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Address_Page_part .section_title .Contact_detail .icon_box i {
  color: #FFF;
  font-size: 20px;
}
.Address_Page_part .section_title .Contact_detail .contain {
  width: 75%;
}
.Address_Page_part .section_title .Contact_detail .contain p {
  margin-top: 0px;
  color: #27388e;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
}
.Address_Page_part .section_title .Contact_detail .contain p a {
  color: inherit;
}

.Contact_Page_sec {
  position: relative;
  padding: 100px 0px;
}
.Contact_Page_sec .section_title {
  position: relative;
  background-color: rgba(37, 168, 224, 0.1568627451);
  padding: 30px;
  border-radius: 20px;
}
.Contact_Page_sec .section_title .Contact_detail {
  position: relative;
  background-color: rgba(37, 168, 224, 0.1568627451);
  margin: 20px 0px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
}
.Contact_Page_sec .section_title .Contact_detail .icon_box {
  position: relative;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #25a8e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Contact_Page_sec .section_title .Contact_detail .icon_box i {
  color: #FFF;
  font-size: 20px;
}
.Contact_Page_sec .section_title .Contact_detail .contain {
  width: 75%;
}
.Contact_Page_sec .section_title .Contact_detail .contain p {
  margin-top: 0px;
  color: #27388e;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
}
.Contact_Page_sec .section_title .Contact_detail .contain p a {
  color: inherit;
}
.Contact_Page_sec .Enquery_form {
  position: relative;
}
.Contact_Page_sec .Enquery_form h3 {
  position: relative;
  color: #25a8e0;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 40px;
}
.Contact_Page_sec .Enquery_form h3::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 200px;
  background-color: #25a8e0;
  bottom: -10px;
  left: 0%;
}
.Contact_Page_sec .Enquery_form form .form-group {
  padding: 10px 0px;
}
.Contact_Page_sec .Enquery_form form .form-group label {
  color: #27388e;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.Contact_Page_sec .Enquery_form form .form-group .input_field {
  width: 100%;
  padding: 10px 20px;
  border: 2px solid #25a8e0;
  font-size: 18px;
  outline: none;
}
.Contact_Page_sec .Enquery_form form .btn-default {
  margin-top: 30px;
}

.Blog_Card_sec {
  position: relative;
  padding: 100px 0px;
  background-color: rgba(51, 51, 51, 0.0823529412);
}
.Blog_Card_sec .blog_card {
  position: relative;
  background-color: #FFF;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.2392156863);
  border-radius: 0px;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 15px;
  border-radius: 15px;
}
.Blog_Card_sec .blog_card .blog_img {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.Blog_Card_sec .blog_card .blog_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.Blog_Card_sec .blog_card .blog_content {
  position: relative;
}
.Blog_Card_sec .blog_card .blog_content h3 {
  color: #27388e;
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}
.Blog_Card_sec .blog_card .blog_content .btn-default {
  border-radius: 5px;
}
.Blog_Card_sec .blog_card .blog_content .btn-default span {
  border-radius: 3px;
}
.Blog_Card_sec .blog_card:hover .blog_img img {
  transform: scale(1.1);
}

.Single_Blog_Page {
  position: relative;
  padding: 100px 0px;
}
.Single_Blog_Page .blog_card {
  position: relative;
  background-color: #FFF;
  border-radius: 0px;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 15px;
}
.Single_Blog_Page .blog_card .blog_img {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.Single_Blog_Page .blog_card .blog_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.Single_Blog_Page .blog_card .blog_content {
  position: relative;
}
.Single_Blog_Page .blog_card .blog_content h2 {
  color: #25a8e0;
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
}
.Single_Blog_Page .blog_card .blog_content p {
  text-align: justify;
}
.Single_Blog_Page .Right_Part .Our_Product_part {
  position: relative;
  background-color: rgba(37, 168, 224, 0.0823529412);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}
.Single_Blog_Page .Right_Part .Our_Product_part h3 {
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  padding: 15px 30px;
  background-color: #27388e;
}
.Single_Blog_Page .Right_Part .Our_Product_part ul {
  padding: 10px 20px 10px 20px;
  list-style: none;
  margin: 0px;
}
.Single_Blog_Page .Right_Part .Our_Product_part ul li {
  position: relative;
  padding-left: 15px;
  margin: 15px 0;
  transition: all 0.3s ease;
}
.Single_Blog_Page .Right_Part .Our_Product_part ul li::before {
  position: absolute;
  content: "";
  background: #25a8e0;
  left: 0%;
  top: 0%;
  width: 3px;
  height: 100%;
}
.Single_Blog_Page .Right_Part .Our_Product_part ul li a {
  color: #27388e;
}
.Single_Blog_Page .Right_Part .Our_Product_part ul li:hover {
  padding-left: 20px;
}
.Single_Blog_Page .Right_Part .Our_Product_part ul li:hover a {
  color: #25a8e0;
}
.Single_Blog_Page .Right_Part .contact_detail_box {
  position: relative;
  background-color: rgba(37, 168, 224, 0.0823529412);
  border-radius: 20px;
  overflow: hidden;
}
.Single_Blog_Page .Right_Part .contact_detail_box h3 {
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  padding: 15px 30px;
  background-color: #27388e;
}
.Single_Blog_Page .Right_Part .contact_detail_box p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #27388e;
  font-size: 18px;
  font-weight: 600;
  padding: 5px 20px;
  margin-top: 10px;
}
.Single_Blog_Page .Right_Part .contact_detail_box p a {
  color: inherit;
  width: 80%;
}
.Single_Blog_Page .Right_Part .contact_detail_box p .icon_box {
  position: relative;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #25a8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #FFF;
}/*# sourceMappingURL=style.css.map */