@charset "UTF-8";
* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

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: #cc640b !important;
  position: relative;
}
.active_menu::before {
  position: absolute;
  content: "";
  width: 100% !important;
  height: 2px;
  bottom: 0%;
  left: 0%;
  background-color: #cc640b;
}

.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: #222222;
  padding-left: 26px;
  margin-bottom: 15px;
}
.section_title h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/setting.png) no-repeat;
  background-position: left center;
  background-size: cover;
  width: 16px;
  height: 16px;
}
.section_title h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -0.01em;
  color: #222222;
  margin-bottom: 0;
  text-transform: uppercase;
  cursor: none;
}
.section_title h2 strong {
  color: #cc640b;
  font-weight: 700;
}
.section_title p {
  margin-top: 20px;
  margin-bottom: 0;
  color: #81848A;
  font-size: 20px;
}

.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: #cc640b;
  border-radius: 10px;
  padding: 2px 40px 2px 2px;
  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: 8px;
  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: #222;
  border-radius: 6px;
  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: #cc640b;
  color: #FFF;
}

.topbar {
  background: #cc640b;
  padding: 10px;
}
.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 {
  margin-right: 5px;
  transition: all 0.3s ease;
}
.topbar .contact_detail ul li a:hover i {
  transform: scale(1.1);
}

.Custome_navbar .heder_logo {
  width: 250px;
}
.Custome_navbar .navbar-nav .nav-item {
  margin: auto 10px;
}
.Custome_navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: #383435;
  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: #cc640b;
  transition: all 0.3s ease;
}
.Custome_navbar .navbar-nav .nav-item:hover .nav-link {
  color: #cc640b;
}
.Custome_navbar .navbar-nav .nav-item:hover .nav-link::before {
  width: 100%;
}

.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: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.custom-dropdown .dropdown-menu li {
  padding: 5px 20px;
}
.custom-dropdown .dropdown-menu li a {
  text-decoration: none;
  color: #333;
  display: block;
}
.custom-dropdown .dropdown-menu li i {
  text-decoration: none;
  color: #333;
  display: block;
}
.custom-dropdown .dropdown-menu li:hover {
  background: #cc640b;
}
.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-image: url(../images/bhagyalaxmispringworks-banner.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 120px 0px;
  overflow: hidden;
}
.main_banner::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0%;
  top: 0%;
  background: rgba(34, 34, 34, 0.3411764706);
}
.main_banner .sedo_box {
  position: absolute;
  width: 900px;
  height: 100%;
  right: 0%;
  top: 0%;
  opacity: 0.9;
}
.main_banner .container-fluid {
  width: 80% !important;
}
.main_banner .container-fluid .banner_header {
  margin-right: 50px;
}
.main_banner .container-fluid .banner_header .section_title h2,
.main_banner .container-fluid .banner_header .section_title h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -0.01em;
  color: #FFF;
  margin-bottom: 40px;
  cursor: none;
}
.main_banner .container-fluid .banner_header .section_title h2 span,
.main_banner .container-fluid .banner_header .section_title h1 span {
  color: #cc640b;
  font-weight: 700;
}
.main_banner .container-fluid .banner_header .section_title p {
  color: #FFF;
  font-size: 20px;
}
.main_banner .container-fluid .banner_header .section_title .btn-default {
  margin-top: 40px;
}
.main_banner .container-fluid .right_part {
  display: flex;
  align-items: center;
  justify-content: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_banner .container-fluid .right_part img {
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination-bullet-active {
  background: #cc640b !important;
  border: 5px solid #FFF;
  width: 15px !important;
  border-radius: 5px !important;
}

.swiper-pagination-bullet {
  background: #FFF !important;
  opacity: #FFF, 1 !important;
}

.slider_dot {
  position: absolute;
  padding-top: 50px;
  bottom: 7%;
  left: 50%;
}

.Welcome_sec {
  position: relative;
  padding: 100px 0;
}
.Welcome_sec .left_part ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.Welcome_sec .left_part ul li {
  font-size: 16px;
  margin-left: 30px;
  position: relative;
}
.Welcome_sec .left_part ul li::before {
  content: "";
  position: absolute;
  background-image: url(../images/setting.png);
  background-size: contain; /* ya cover */
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.Welcome_sec .left_part .btn-default {
  margin-top: 40px;
}
.Welcome_sec .right_part {
  position: relative;
  height: 100%;
}
.Welcome_sec .right_part .img_1 {
  position: absolute;
  width: 90%;
  border-radius: 30px;
  right: -20%;
  top: 0%;
  overflow: hidden;
}
.Welcome_sec .right_part .img_2 {
  position: absolute;
  width: 90%;
  border-radius: 30px;
  left: 0%;
  bottom: 5%;
  border: 10px solid #FFF;
  overflow: hidden;
  z-index: 2;
}
.Welcome_sec .right_part .years_box {
  position: absolute;
  z-index: 2;
  bottom: 0%;
  right: -5%;
  background-color: #cc640b;
  border-radius: 30px;
  padding: 30px;
  text-align: center;
  border: 10px solid #FFF;
}
.Welcome_sec .right_part .years_box h3 {
  color: #FFF;
  font-size: 70px;
  font-weight: 700;
}
.Welcome_sec .right_part .years_box p {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
}

.Our_Products {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/product-background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.Our_Products::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0%;
  background-color: rgba(68, 66, 64, 0.1647058824);
}
.Our_Products .section_title {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
.Our_Products .section_title h3 {
  color: #FFF;
}
.Our_Products .section_title h2 {
  color: #FFF;
}
.Our_Products .Product_card {
  position: relative;
  background: #FFF;
  border-radius: 10px;
  overflow: hidden;
  padding: 25px;
  margin: 15px 0px;
  transition: all 0.4s ease;
}
.Our_Products .Product_card .image_box {
  background: rgba(204, 101, 11, 0.5215686275);
  border-radius: 10px;
  overflow: hidden;
}
.Our_Products .Product_card .image_box figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
.Our_Products .Product_card .image_box figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center; /* 🔥 ye important hai */
  display: block;
  transform-origin: center center;
  transition: transform 0.5s ease;
}
.Our_Products .Product_card .contain_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.Our_Products .Product_card .contain_box h3 {
  color: #cc640b;
  font-size: 20px;
  width: 70%;
  margin-bottom: 0;
  transition: 0.3s;
}
.Our_Products .Product_card .contain_box h2 {
  color: #cc640b;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
  transition: 0.3s;
}
.Our_Products .Product_card {
  /* 🔥 HOVER EFFECT */
}
.Our_Products .Product_card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.Our_Products .Product_card:hover .image_box figure img {
  transform: scale(1.1);
}
.Our_Products .Product_card:hover .contain_box h3,
.Our_Products .Product_card:hover .contain_box h2 {
  color: #ff7a1a; /* thoda bright hover color */
}
.Our_Products .btn-default {
  margin-top: 40px;
}

.Our_Numbers_sec {
  position: relative;
  padding: 100px 0;
}
.Our_Numbers_sec .section_title_row {
  margin-bottom: 60px;
}
.Our_Numbers_sec .section_title_row .section_title p {
  margin-left: 40px;
}
.Our_Numbers_sec .Counter_card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.Our_Numbers_sec .Counter_card .icon_box {
  border-bottom: 2px solid #cc640b;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20%;
  padding: 10px;
}
.Our_Numbers_sec .Counter_card .icon_box figure img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(83%) saturate(749%) hue-rotate(1deg) brightness(92%) contrast(92%);
}
.Our_Numbers_sec .Counter_card h2 {
  color: #cc640b;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 15px;
}
.Our_Numbers_sec .Counter_card p {
  color: #383435;
  font-size: 16px;
  font-weight: 600;
}
.Our_Numbers_sec .Counter_card::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: rgba(204, 101, 11, 0.337254902);
  top: 0%;
  right: -6%;
}

.Our_Certificate {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/certificate-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.Our_Certificate::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
}
.Our_Certificate .section_title {
  text-align: center;
  margin-bottom: 60px;
}
.Our_Certificate .section_title h2 {
  color: #FFF;
}
.Our_Certificate .section_title h3 {
  color: #FFF;
}
.Our_Certificate .Certification_card .img_box {
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}
.Our_Certificate .Certification_card .content_box {
  background: #cc640b;
  padding: 15px;
  border-radius: 0px 0px 10px 10px;
}
.Our_Certificate .Certification_card .content_box h3 {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0px;
  text-align: center;
}

.Featured_Application {
  position: relative;
  padding: 100px 0;
}
.Featured_Application .section_title {
  margin-bottom: 60px;
}
.Featured_Application .section_title p {
  margin-left: 60px;
}
.Featured_Application .row {
  display: flex;
  align-items: stretch;
}
.Featured_Application .row .col-md-3 {
  display: flex;
  flex-direction: column;
}
.Featured_Application .row .col-md-3 > a {
  flex: 1;
  display: flex;
}
.Featured_Application .double_img {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 30px;
}
.Featured_Application .double_img a {
  flex: 1;
  display: flex;
}
.Featured_Application .double_img .Featured_card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.Featured_Application .double_img .Featured_card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.Featured_Application .double_img .Featured_card .overlay {
  position: absolute;
  background-color: #cc640b;
  height: 0%;
  width: 100%;
  left: 0%;
  bottom: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s ease;
}
.Featured_Application .double_img .Featured_card .overlay h3 {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.Featured_Application .double_img .Featured_card:hover .overlay {
  height: 100%;
}
.Featured_Application .Featured_card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.Featured_Application .Featured_card .overlay {
  position: absolute;
  background-color: #cc640b;
  height: 0%;
  width: 100%;
  left: 0%;
  bottom: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s ease;
}
.Featured_Application .Featured_card .overlay h3 {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
}
.Featured_Application .Featured_card:hover .overlay {
  height: 100%;
}

.Why_Choose_Us {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/why-choose-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.Why_Choose_Us::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
  background-color: rgba(0, 0, 0, 0.5607843137);
}
.Why_Choose_Us .left_part .section_title h3 {
  color: #FFF;
}
.Why_Choose_Us .left_part .section_title h2 {
  color: #FFF;
}
.Why_Choose_Us .left_part .section_title p {
  color: #FFF;
}
.Why_Choose_Us .left_part .section_title img {
  margin-top: 40px;
}
.Why_Choose_Us .right_part {
  margin-left: 60px;
}
.Why_Choose_Us .right_part .custome_step_card {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.Why_Choose_Us .right_part .custome_step_card .image_box {
  position: relative;
  background: #cc640b;
  border-radius: 50%;
  overflow: hidden;
  height: 100px;
  width: 100px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Why_Choose_Us .right_part .custome_step_card .image_box img {
  position: relative;
  width: 100%;
  filter: brightness(0) invert(1);
}
.Why_Choose_Us .right_part .custome_step_card .contain_box {
  width: 75%;
}
.Why_Choose_Us .right_part .custome_step_card .contain_box h3 {
  position: relative;
  color: #cc640b;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.Why_Choose_Us .right_part .custome_step_card .contain_box h3::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -10px;
  left: 0%;
  background: rgba(204, 101, 11, 0.5764705882);
}
.Why_Choose_Us .right_part .custome_step_card .contain_box p {
  color: #FFF;
  font-size: 16px;
  margin-bottom: 0px;
}

.global_presence {
  position: relative;
  padding: 100px 0;
}
.global_presence .section_title {
  margin-bottom: 60px;
}
.global_presence img {
  position: relative;
  z-index: 5;
}

.Map_Sec {
  position: relative;
  overflow: hidden;
}
.Map_Sec .mapGrid iframe {
  width: 100%;
  height: 500px;
}
.Map_Sec .footer_top_img {
  position: absolute;
  width: 100%;
  bottom: 0%;
  left: 0%;
  height: 350px;
}

.footer_top_image {
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 500px;
  z-index: 6;
}
.footer_top_image img {
  width: 100%;
}

.main-footer {
  padding: 0;
  background-color: #003b84;
  background-image: url(../images/why-choose-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 10;
}
.main-footer::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
  background-color: rgba(0, 0, 0, 0.5607843137);
}

.footer-box {
  position: relative;
  padding: 70px 0 0;
  z-index: 1;
}

.Footer_Map {
  height: 300px;
}
.Footer_Map iframe {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-footer .footer-logo img {
  width: 260px;
  background: #FFF;
  border-radius: 10px;
}

.main-footer .footer-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1882352941);
  margin-bottom: 40px;
  padding-bottom: 25px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.footer-social-link-title h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: #fff;
}

.footer-social-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social-links ul li {
  display: inline-flex;
  margin-right: 10px;
}

.footer-social-links ul li:last-child {
  margin-right: 0;
}

.footer-social-links ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  height: 36px;
  width: 36px;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i {
  font-size: 18px;
  color: #f68a0a;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
  background: #f68a0a;
}

.footer-social-links ul li a:hover i {
  color: #fff;
}

.footer-links h3 {
  font-size: 25px;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 290px;
}

.product-scroll-wrap {
  position: relative;
}

.product-scroll-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 290px;
  overflow-y: auto;
}

.scroll-indicator {
  position: absolute;
  top: 5px;
  right: 0%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 11px;
  color: #fff;
  opacity: 0.8;
  pointer-events: none;
}

.scroll-indicator span {
  display: block;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.scroll-indicator i {
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin: auto;
  animation: scrollBounce 1.4s infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(6px) rotate(-45deg);
  }
}
.footer-links ul::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 1px;
  background-color: transparent;
}

.footer-links ul::-webkit-scrollbar {
  width: 3px;
  background-color: transparent;
}

.footer-links ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: transparent;
}

.footer-links ul li {
  position: relative;
  list-style: outside none none;
  margin: 0 0 15px 0;
  padding: 0 0 0 10px;
}

.footer-links ul li:before {
  content: "»";
  color: #d3d3d3;
  font-size: 20px;
  padding-right: 10px;
  justify-content: center;
  align-items: center;
}

.footer-links ul li:hover {
  color: #f68a0a;
}

.footer-links ul li a {
  color: #fff;
  line-height: 140%;
}

.footer-links ul li a:hover {
  color: #f68a0a;
}

.footer-links ul li i {
  margin-right: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1882352941);
}

.footer-contact-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.footer-contact-item .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cc640b;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box {
  border-color: #cc640b;
}

.footer-contact-item .icon-box i {
  font-size: 16px;
  color: #cc640b;
}

.footer-contact-content {
  width: calc(100% - 50px);
}

.footer-contact-content p {
  color: #fff;
  margin: 0;
}

.footer-contact-content p + p {
  margin-top: 10px;
}

.footer-latest-news .footer-frame iframe {
  height: 270px;
  width: 100%;
}

.footer-copyright {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1882352941);
  padding: 25px 0;
  margin-top: 10px;
  z-index: 1;
  text-align: center;
}

.footer-copyright-text p {
  color: #fff;
  margin: 0;
}

.footer-copyright-text p + p {
  margin-top: 5px;
}

.footer-copyright .footer-copyright-text .footer-icon {
  width: 25px;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}/*# sourceMappingURL=style.css.map */

/***
=============================================
    Page Header
=============================================
***/
.page-header {
    position: relative;
    display: block;
    padding: 130px 0 130px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.page-header:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.60);
    z-index: -1;
}

.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
    z-index: 3;
}

.page-header__inner h2 {
    font-size: 55px;
    color: #ffffff;
    line-height: 65px;
    letter-spacing: 0.6px;
    font-weight: 800;
    text-transform: uppercase;
}

.thm-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

.thm-breadcrumb li {
    position: relative;
    /* display: inline-block; */
    color: #999;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 500ms ease;
    margin-left: 10px;
    line-height: 39px;
}

.thm-breadcrumb li a {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 500ms ease;
}


.thm-breadcrumb li i::before {
    font-size: 15px;
    color: #ffffff;

}

.home_about_2 {
    width: 100%;
    margin: 0;
    padding: 50px 0;
    position: relative;
    z-index: 100;
}

.h2_title {
    font-size: 36px;
    color: #ca2212;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 30px;
}

.home_about_2 .h2_title {
    font-size: 39px;
    color: #cc640b;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 8px;
    font-weight: 700;
}

.home_about_2 h2,
.home_about_2 h3 {
    color: #000;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.about_img {
    float: right;
    max-width: 540px;
    width: 100%;
    position: relative;
    margin: 0 0 20px 30px;
}

.about_img .img {
    position: relative;
}

.about_img .img img {
    position: relative;
    z-index: 2;
    background: #272727;
}

.about_img .about_img {
    width: 60% !important;
    position: absolute;
    bottom: 0px;
    right: 35px;
    z-index: 3;
    padding: 10px 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
    line-height: normal;
    text-align: center;
    background: var(--liner);
    background-color: #ca2212;
}

.home_about_2 p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #1a1919;
    margin-bottom: 10px;
    text-align: justify;
}

.about-shape-4 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 893px;
    opacity: 0.08;
}

.about-shape-4 img {
    width: 100%;
}

.about-shape-5 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 893px;
    opacity: 0.1;

}

.about-shape-5 img {
    width: 100%;
}

.about_img-moni img{
  width: 100%;
}

.pro-info {
	padding: 12px 14px 18px;
	background: #cc640b !important;
	text-align: center;
}

.pro-info .pro-name {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	color: rgb(255 255 255);
	margin-bottom: 0px;
	/* text-transform: uppercase; */
}

.pro-info .pro-link {
	color: #cc640b;
	font-weight: 600;
	text-transform: uppercase;
	border: 1px solid #c7bcbc47;
	display: inline;
	margin-top: 10px;
	padding: 8px 13px;
	border-radius: 6px;
	font-size: 13px;
	display: none;
}

#product-range .slider .item .item-inner:hover {
	background-color: rgb(255 255 255);
}

#product-range .slider .item .item-inner:hover .pro-info .pro-name {
	color: rgb(255 255 255);
}

#product-range .slider .item .item-inner:hover .pro-info .pro-link {
	color: rgb(127 126 126);
}

#product-range .slider .owl-nav {
	/* right: 50px; */
	/* bottom: -68px; */
	/* position: absolute; */
	/* z-index: 1000; */
	/* float: right; */
	/* width: 50%; */
}

.slider .owl-nav {
	right: 0;
	bottom: -70px;
	position: absolute;
}

.owl-nav .iconify {
	width: 35px;
	height: 34px;
	color: #ffffff;
	background: #cc640b;
	border-radius: 3px;
	padding: 5px;
}


.owl-nav .owl-next {
	margin-left: 14px;
}

.style01 .owl-nav button:hover .iconify {
	color: rgb(211 211 211);
}

.style01 .btn-custom1 {
	padding: 0;
	border: none;
}

.style01 .btn-custom1:hover {
	background-color: transparent;
}

.border-radious-24 {
	border-radius: 24px !important;
	overflow: hidden;
}
.new-padding-moni{
  padding: 80px 0px !important;
}

.portfolio-area {
    position: relative;
}

.pa-bg {
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 500px;
}

.pa-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 63, 114, .85);
    width: 100%;
    height: 100%;
}

.portfolio-img {
    position: relative;
}

.portfolio-img::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #ea313a70;
    transform: scale3d(1.5, 1.5, 1.5);
    transition: all .5s ease-in-out;
}

.portfolio-item:hover .portfolio-img::before {
    opacity: .8;
    transform: scaleY(1);
}

.portfolio-link {
    position: absolute;
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #ea313a;
    background: #fff;
    border-radius: 50px;
    text-align: center;
    left: 50%;
    top: 50%;
    font-size: 28px;
    margin-top: 50px;
    opacity: 0;
    box-shadow: var(--box-shadow);
    transform: translate(-50%, -50%);
    transition-delay: 0.3s;
}

.portfolio-link:hover {
    color: #ea313a;
}

.portfolio-item:hover .portfolio-link {
    margin-top: 0px;
    opacity: 1;
}

.portfolio-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #f4f6f7d9;
    text-align: center;
}

.portfolio-content small {
    text-transform: uppercase;
    font-weight: 600;
    color: #ea313a;
    letter-spacing: 2px;
}

.portfolio-content h4 a {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    text-transform: capitalize !important;
}

.portfolio-content h4 a:hover {
    color: #ea313a;
}

.portfolio-arrow {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #ec3339;
    color: #fff;
    text-align: center;
    border-radius: 50px;
}

.portfolio-arrow i {
    color: #fff;
    transform: rotate(-45deg);
    transition: all .5s ease-in-out;
}

.portfolio-arrow:hover i {
    transform: rotate(0);
}

.sa-bg {
    position: relative;
    z-index: 1;
    padding: 60px 0px;
    background: #f1f1f130;
}

.portfolio-item {
    height: auto;
    border-radius: 25px;
    overflow: hidden !important;
    margin-bottom: 40px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.portfolio-slider img {
    background: #ffffff;
}
.contact-form {
    border: 1px solid #ddd;
    transition: all 0.4s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: #f8f9fa;
    border-left: 5px solid #ca2528;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.contact-info:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ca2528;
}

.contact-info p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info i {
    color: #ca2528;
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
}

.contact-info a {
    color: #ca2528;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.btn-primary {
    border: 1px solid;
    background: #e46f4c;
}

.fa-paper-plane {
    color: #cc640b !important;
}

.contact-form h3 {
    font-weight: 600;
}


.contact-details {
    background: #f8f9fa;
    border-left: 4px solid  #cc640b;;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-details:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.contact-details h4 {
    color:  #cc640b;;
    font-weight: 600;
}

.contact-details a {
    color: #000000;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 8px;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.contact-details li {
    font-weight: 500;
}

.contact-details li i {
    color:  #cc640b !important;
}

.fa-map-marker-alt {
    color:  #cc640b !important;
}

.fa-phone-alt {
    transform: rotate(90deg);
}



.blog-details-page {
	font-family: 'Poppins', sans-serif;
}

.blog-details-card {
	/* background: #fff; */
	border-radius: 10px;
	/* padding: 25px; */
	/* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08); */
	transition: all 0.3s ease;
}

.blog-details-card:hover {
	/* transform: translateY(-5px); */
	/* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); */
}

.blog-details-img img {
	width: 100%;
	height: auto;
  aspect-ratio: 1 / 0.660;

	border-radius: 8px;
	transition: transform 0.35s ease;
}



.blog-details-title {
	font-size: 31px;
	font-weight: 700;
	color: #1f1c21;
	line-height: 1.4;
	animation: fadeInUp 1s ease forwards;
	margin-bottom: 6px;
}

.subheading {
	font-size: 20px;
	font-weight: 500;
	color: #cc640b;
	margin-bottom: 10px;
	animation: fadeInLeft 1s ease forwards;
}

.blog-details-content p {
	font-size: 16px;
	color: #444;
	line-height: 1.7;
	margin-bottom: 10px;
	text-align: justify;
}

.blog-details-list {
	padding-left: 20px;
	list-style-type: disc;
	color: #444;
}

.blog-details-list li {
	margin-bottom: 8px;
	position: relative;
	transition: all 0.3s ease;
}

.blog-details-list li::before {
	content: "✓";
	position: absolute;
	left: -20px;
	color: #cc640b;
}

.btn-blog-quote {
	display: inline-block;
	background: #cc640b;
	color: #fff;
	font-weight: 600;
	padding: 12px 25px;
	border-radius: 6px;
	transition: all 0.35s ease;
	margin-top: 15px;
}

.btn-blog-quote:hover {
	background: #cc640b;
	transform: translateY(-2px) scale(1.05);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(15px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-15px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 991px) {
	.blog-details-title {
		font-size: 24px;
	}

	.subheading {
		font-size: 18px;
	}

	.blog-details-card {
		padding: 20px;
	}
}

@media (max-width: 575px) {
	.blog-details-title {
		font-size: 20px;
	}

	.subheading {
		font-size: 16px;
	}

	.btn-blog-quote {
		width: 100%;
		text-align: center;
	}
}

.blog-sidebar {
	position: sticky;
	top: 20px;
}

.blog-sidebar .sidebar-box {
	background: #ffffff;
	padding: 20px;
	margin-bottom: 25px;
	border-radius: 6px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.blog-sidebar .sidebar-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #222;
}

.blog-sidebar .sidebar-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.blog-sidebar .sidebar-list li {
	margin-bottom: 10px;
}

.blog-sidebar .sidebar-list li a {
	color: #555;
	text-decoration: none;
	font-size: 15px;
	transition: 0.3s;
}

.blog-sidebar .sidebar-list li a:hover {
	color: #cc640b;
	padding-left: 5px;
}

/* ================= SIDEBAR BASE ================= */
.blog-right-sidebar .sidebar-widget {
	background: #ffffff;
	padding: 22px;
	margin-bottom: 25px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	animation: fadeUp 0.7s ease both;
}

/* Entry animation */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ================= SIDEBAR TITLE ================= */
.blog-right-sidebar .sidebar-title {
	font-size: 25px;
	font-weight: 800;
	color: #cc640b;
	margin-bottom: 18px;
	padding-left: 12px;
	position: relative;
}

.blog-right-sidebar .sidebar-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 4px;
	height: 22px;
	background: #cc640b;
	border-radius: 2px;
}

/* ================= PRODUCT LIST ================= */
.sidebar-product-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-product-list li {
	margin-bottom: 12px;
}

.sidebar-product-list li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	font-size: 15px;
	color: #333;
	text-decoration: none;
	border-radius: 6px;
	background: #f9f9f9;
	transition: all 0.35s ease;
}

.sidebar-product-list li a i {
	color: #cc640b;
	font-size: 14px;
	transition: transform 0.35s ease;
}

.sidebar-product-list li a:hover {
	background: #2d2d72;
	color: #ffffff;
	padding-left: 18px;
}

.sidebar-product-list li a:hover i {
	color: #ffffff;
	transform: rotate(-10deg);
}

/* ================= QUICK CONTACT ================= */
.contact-widget p {
	font-size: 15px;
	color: #444;
	margin-bottom: 10px;
}

.contact-widget i {
	color: #cc640b;
	margin-right: 6px;
}

/* Animated Button */
/* ================= QUICK CONTACT ================= */
.contact-widget p {
	font-size: 15px;
	color: #444;
	margin-bottom: 10px;
}

.contact-widget i {
	color: #cc640b;
	margin-right: 6px;
}

/* Animated Button (NO gradient) */


.btn-contact {
	background: #cc640b;
	color: #fff;
	font-weight: 600;
	border: none;
	padding: 12px;
	border-radius: 6px;
	position: relative;
	overflow: hidden;
}

/* Hover */
.btn-contact:hover {
	background: #cc640b;
	color: #fff;
	animation-play-state: paused;
}

/* ================= KEYFRAMES ================= */


/* ================= QUICK CONTACT ================= */
.contact-widget p {
	font-size: 15px;
	color: #444;
	margin-bottom: 10px;
}

.contact-widget i {
	color: #cc640b;
	margin-right: 6px;
}

/* Animated Button (NO gradient) */
/* ================= QUICK CONTACT ================= */
.contact-widget p {
	font-size: 15px;
	color: #444;
	margin-bottom: 10px;
}

.contact-widget i {
	color: #cc640b;
	margin-right: 6px;
}

/* Animated Button (NO gradient) */




/* ================= KEYFRAMES ================= */

/* Pulse + Blink */
@keyframes pulseBlink {
	0% {
		box-shadow: 0 0 0 0 rgba(213, 37, 15, 0.6);
		opacity: 1;
	}

	50% {
		box-shadow: 0 0 14px 6px rgba(213, 37, 15, 0.45);
		opacity: 0.92;
	}

	100% {
		box-shadow: 0 0 0 0 rgba(213, 37, 15, 0.6);
		opacity: 1;
	}
}

/* Outer glow ring */
@keyframes glowRing {
	0% {
		box-shadow: 0 0 0 0 rgba(213, 37, 15, 0.6);
	}

	100% {
		box-shadow: 0 0 0 14px rgba(213, 38, 15, 0);
	}
}

/* ================= KEYFRAMES ================= */



/* ================= ENQUIRY FORM ================= */
.enquiry-widget form .form-control {
	height: 45px;
	font-size: 14px;
	border-radius: 6px;
	border: 1px solid #ddd;
	transition: all 0.3s ease;
}

.enquiry-widget textarea.form-control {
	height: auto;
}

.enquiry-widget form .form-control:focus {
	border-color: #cc640b;
	box-shadow: 0 0 0 0.15rem rgba(213, 37, 15, 0.25);
}

/* Enquiry Button */
.enquiry-btn {
	background: #2d2d72;
	color: #fff;
	font-weight: 600;
	padding: 12px;
	border-radius: 6px;
	border: none;
	position: relative;
	overflow: hidden;
	transition: all 0.35s ease;
}

.enquiry-btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: 0.4s;
}

.enquiry-btn:hover::after {
	left: 100%;
}

.enquiry-btn:hover {
	background: #cc640b;
	transform: translateY(-2px);
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 767px) {
	.blog-right-sidebar {
		margin-top: 40px;
	}

	.sidebar-title {
		font-size: 18px;
	}

	.sidebar-product-list li a {
		font-size: 14px;
	}
}

/* MAIN SECTION */
.mac-contact-page {
	padding: 80px 0;
	background: #ffffff;
}

.mac-contact-wrapper {
	display: flex;
	gap: 26px;
	align-items: stretch;
	flex-wrap: wrap;
}

/* LEFT SIDE */
.mac-contact-info {
	flex: 1;
	background: #f9f9f9;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mac-contact-heading {
	font-size: 32px;
	margin-bottom: 20px;
	color: #cc640b;
}

.mac-company {
	font-size: 18px;
	margin-bottom: 9px;
	color: #222;
}

.mac-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	padding-bottom: 4px;
	border-bottom: 1px solid #0000000f;
	margin-bottom: 6px;
	align-items: center;
}

.mac-contact-item i {
	font-size: 20px;
	color: #cc640b;
	margin-top: 5px;
	min-width: 25px;
}

.mac-contact-item p {
	margin: 0;
	color: #333;
	line-height: 1.6;
}

/* RIGHT SIDE */
.mac-contact-form {
	flex: 1;
	background: #ffffff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mac-form-title {
	font-size: 29px;
	margin-bottom: 25px;
	color: #cc640b;
	font-weight: 700;
}

.mac-form-group {
	margin-bottom: 20px;
}

.mac-form-group input,
.mac-form-group textarea {
	width: 100%;
	padding: 14px 15px;
	border-radius: 6px;
	border: 1px solid #ddd;
	font-size: 14px;
	transition: 0.3s ease;
}

.mac-form-group input:focus,
.mac-form-group textarea:focus {
	border-color: #cc640b;
	outline: none;
	box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.1);
}

.mac-submit-btn {
	background: #cc640b;
	color: #fff;
	padding: 14px 35px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: 0.3s;
}

.mac-submit-btn:hover {
	background: #cc640b;
}

.mac-company-profile-new {
	padding: 70px 0;
	background: #ffffff;
}

.blog {
	padding: 70px 0px 120px 0;
}

.blog-area {
	background-image: url(assets/images/blog/blog-bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.news-section {
	background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url(assets/images/blog/blog-bg.webp) no-repeat center center;
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.pb-20 {
	padding-bottom: 20px;
}

.blog article {
	width: 100%;
}

.blogs .blog-item {
	background-color: #fff;
	height: 500;
}

.blog-img {
	overflow: hidden;
}

.p-relative {
	position: relative;
}

.blog-img img {
	height: auto;
	width: 100%;
}

.blogs img {
	padding: 20px;
}

.blog-content {
	padding: 20px;
}

.blog-title {
	font-size: 20px;
	text-transform: capitalize;
}

.blog-title a {
	transition: all .3s ease-out 0s;
	color: #000;
}

.blog .image-anime {
	position: relative;
	overflow: hidden;
}

.blog .image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.blog .image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.blog-item img {
	transition: transform .5s ease;
	width: 100%;
	height: auto;
}

.blog-item:hover img {
	transform: scale(1.1);
}

.blogs .blog-item .blog-paragraph {
	padding-top: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.export-accordion {
	width: 100%;
	color: #fff;
	margin-top: 20px;
}

.export-item {
	margin-bottom: 10px;
}

.export-btn.active {
	background: #ffffff3a;
}

.export-btn {
	width: 100%;
	background: #ffffff1c;
	border: none;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border-radius: 6px;
	padding: 15px;
	cursor: pointer;
}

.export-content {
	display: none;
	background: #ffffff1c;
	padding: 25px;
	border-radius: 12px;
	margin-top: 15px;
}

.export-content.show {
	display: block;
}

.export-content p {
	font-size: 14px;
	margin: 0;
}

.export-accordion h4 {
	color: #ffffff;
	font-size: 15px;
	margin-bottom: 10px;
}






/* ........contact-us...... */

.cs_iconbox.cs_style_3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.05);
    padding: 12px 15px;
    height: 100% !important;
    flex-direction: column;
    text-align: center;
}
.cs_semibold {
    font-weight: 600;
    color: #0172be;
}

.cs_mb_23 {
    margin-bottom: 22px;
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon {
    border-radius: 12px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    background-color: #cc640b;
    height: 70px;
    width: 70px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.cs_fs_20 {
    font-size: 20px;
    line-height: 1.5em;
}

.cs_medium {
    font-weight: 500;
    margin-bottom: 3px;
}


.cs_contact_form {
    -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
    padding: 40px 50px 50px;
}

@media (max-width: 1400px) {
    .cs_contact_form {
        padding: 40px 30px 50px;
    }
}

.cs_contact_form {
    -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
    padding: 40px 50px 50px;
}

.cs_contact_form h2 {
    margin-bottom: 38px;
}

.cs_semibold {
    font-weight: 600;
    color: #14193f;
}

.cs_form_field {
    display: block;
    width: 100%;
    border: 1px solid #ecf1f5;
    min-height: 54px;
    padding: 12px 20px;
    background-color: #ecf1f5;
    border-radius: 5px;
    resize: none;
    outline: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-size: 16px;
    color: #1b1b1b;
}
.cs_mb_23 {
    margin-bottom: 22px;
}

.cs_btn.cs_style_1 {
    background-color: #14193f;
    color: #fff;
}

.cs_btn.cs_style_1 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid #14193f;
    padding: 12px 29px;
    line-height: 1.714em;
    background-color: #14193f;
    position: relative;
}

.enquiry-image img {
    width: 100%;
}

.elementor-widget-container {
    padding: 12px 12px 12px 12px;
    position: relative;
    z-index: 1;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
}

.ct-fancy-box-layout1 {
    display: flex;
    flex-wrap: nowrap;
}

.cs_semibold {
    font-weight: 600;
    color: #14193f;
}

.cs_contact_form h2 {
    margin-bottom: 20px;
}

.cs_fs_36 {
    font-size: 27px;
}

.our-blo-section {
    padding: 80px 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

#action-tabs-wrap {
    z-index: 9999;
}

#action-tabs {
    position: fixed;
    left: 100%;
    top: 58%;
    z-index: 100;
}

#action-tabs a {
    height: 50px;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: left;
    color: white;
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-50px);
    position: relative;
    transition: transform ease-in-out 500ms;
    white-space: nowrap;
    border-radius: 5px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

#action-tabs .newcall {
    background-image: url('../images/phone-call.png');
    background-color: #f9831e;

}

#action-tabs .whatsp {
    background-image: url('../images/wtsp2.png');
    background-color: #f9831e;
}

#action-tabs .deal-wrp {
    background-image: url('../images/locationside.png');
    background-color: #f9831e;
}

#action-tabs .mail-wrp {
    background-image: url('../image/catlog.png');
    background-color: #f9831e;
}



#action-tabs a:hover {
    transform: translateX(-100%);
    text-decoration: none;
}

#action-tabs a span {
    display: block;
    background: #011944;
    height: 50px;
    margin-left: 50px;
    padding: 0px 20px 0 15px;
    line-height: 50px;
    width: 190px;
}


.custom-bg {
    background: linear-gradient(135deg, #0f2f3a, #1c4e63);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Inputs look better on dark bg */
.custom-bg .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid #ccc;
    color: #fff;
}

.custom-bg .form-control::placeholder {
    color: #ddd;
}

.custom-bg .form-control:focus {
    border-color: #ff6a00;
    box-shadow: 0 0 5px rgba(255,106,0,0.5);
    background: rgba(255,255,255,0.15);
}



.inq-btn-home {
    position: fixed;
    top: 45%;
    left: 0;
    width: 45px;
    height: 50px;
    z-index: 999999;
    transform: translateY(-50%);
}

.inq-btn-home {
    cursor: pointer;
}

/* .........model-css........ */
.form-group input {
    border-left: 5px solid #cb650d;
}

.has-feedback .form-control {
    padding-right: 42.5px;
}

.modal-header {
    padding: 10px 15px 0 15px !important;
    background-color: #cb650d;
}

.modal-title {
    font-size: 23px;
    color: #fff;
    text-align: left;
    padding-bottom: 9px;
    font-weight: 400;
}



.close {
    position: absolute;
    right: 16px;
    top: 15px;
    font-size: 28px;
    color: #fff !important;
}

.form-group {
    margin: 15px 0 !important;
}

.has-feedback .form-control {
    padding-right: 42.5px;
}

.form-group input {
    border-left: 5px solid #cb650d;
}

.Submit-box:hover {
    background-color: #22b354;
    border: 1px solid #2cacef;
}

.Submit-box {
    padding: 10px 30px;
    background: #cb650d;
    color: #fff;
    border: none !important;
    border-radius: 5px;
}

.pop-img {
    margin-top: 10%;
    margin-bottom: 20px;
    width: 300px;
    height: auto;
}

@media (max-width:767px) {
    .pop-img {
        margin-top: 2%;
        margin-bottom: 13px;
        width: 200px;
        height: auto;
    }

    .pop-img {
        margin-top: 2%;
        margin-bottom: 13px;
        width: 191px;
        height: auto;
        display: none !important;
    }

    .modal-title {
        font-size: 18px;
        color: #fff;
        text-align: left;
        padding-bottom: 10px;
        font-weight: 400;
    }

    .close {
        position: absolute;
        right: 16px;
        top: 19px;
        font-size: 21px;
        color: #fff !important;
    }
}

.form-group #email {
    border-left: 5px solid #cb650d !important;
}

.form-group #email {
    border-left: 5px solid #cb650d !important;
}

.cs_gap_y_13 {
    gap: 13px 0;
}

.last-margine-none {
    margin: 0px !important;
}

button.close {
    -webkit-appearance: none;
    cursor: pointer;
    background: 0 0;
    border: 0;
    background-color: #ffffff !important;
    padding: 6px 15px;
    /* margin-top: -14px !important; */
    position: absolute;
    opacity: 1;
    font-size: 25px;
    color: #000000 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}


.email {
    background: url(/assets/images/call.png) no-repeat top left;
}

.contact {
    background: url(/assets/images/email-c.png) no-repeat top left;
}

.cbox h3 {
    float: left;
    text-align: left;
    font-size: 22px;
    color: #000000;
    font-weight: 600;
    padding: 0px 0 4px 0;
    margin: 0;
    width: 100%;
}

.cbox p {
    line-height: 1.4;
    font-size: 16px;
}

.cbox a {
    color: #092139;
    overflow-wrap: break-word;
}

.cbox {
    float: left;
    width: 100%;
    padding: 0px 0 0 55px;
    text-align: left;
    margin: 15px 0 0 0px;
}

.modal-lg,
.modal-xl {
    max-width: 909px !important;
}

.form-control {
    border-left: 5px solid #cb650d !important;
}

.modal-body input:focus-visible {
    border-left: 5px solid #cb650d !important;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #cb650d !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}





/* MAIN SECTION */
/* MAIN SECTION */
.enquiry-section {
    background: #ffffff;
    padding: 60px 20px;
    /* font-family: Arial, sans-serif; */
}

/* CONTAINER */
.enquiry-container {
    max-width: 1100px;
    margin: auto;
}

/* HEADING */
.enquiry-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #222;
}

/* FORM BOX */
.enquiry-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

/* GRID */
.enquiry-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* COLUMN */
.enquiry-col {
    flex: 1 1 calc(50% - 20px);
}

/* FULL WIDTH */
.enquiry-col-full {
    flex: 1 1 100%;
}

/* INPUT FIELDS */
.enquiry-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

/* TEXTAREA */
.enquiry-textarea {
    min-height: 120px;
    resize: none;
}

/* FOCUS EFFECT */
.enquiry-input:focus {
    border-color: #007bff;
    outline: none;
}

/* BUTTON */
.enquiry-btn {
    background: #cc640b;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.enquiry-btn:hover {
    background: #0056b3;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .enquiry-col {
        flex: 1 1 100%;
    }

    .enquiry-title {
        font-size: 26px;
    }

    .enquiry-form-box {
        padding: 20px;
    }
}
