@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/***** General CSS *****/
body {
  word-break: break-word;
  font: 15px / 25px "Poppins", sans-serif;
  color: #000;
  overflow-x: hidden;
}


a {
  text-decoration: none;
  color: #000;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #fff;
}

a:hover {
  transition: all 0.2s ease-in-out;
}

img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  transition: all 0.5s ease;
  outline: none;
}

select,
input,
textarea {
  appearance: auto;
}

/***** Font Files *****/
@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/***** Custom Classes *****/
select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  color: #575757;
}

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8,
.pb_8,
.py_8,
.sec {
  padding: 80px 0;
}

.flexRow,
.flexCol {
  display: flex;
  align-items: center;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  margin: 0 0 10px;
}

h1 {
  font-size: 93px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
}

h2 {
  font-size: 60px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h3 {
  font-size: 48px;
  line-height: 1.2;
  color: #f24e2d;
  font-weight: 600;
}

h4 {
  font-size: 34px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h5 {
  font-size: 30px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
}

h6 {
  font-size: 24px;
  color: #f24e2d;
  font-weight: 500;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #000;
  font-family: 'Poppins', sans-serif;
  opacity: 0.7;
}

.blue {
  color: #FD2801;
}

.orange {
  color: #f24e2d;
}

.dark-blue {
  color: #0f1c2e;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

/* Menu */
.nav ul {
  list-style: none;
  text-align: center;
  justify-content: start;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav ul li a {
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  color: #fff;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.header .nav.stroke {
  display: block;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  content: ".";
  color: transparent;
  background: #f24e2d;
  height: 0;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 40px;

}

.nav.stroke ul li a:hover:after {
  height: 100%;
  width: 100%;
}

.nav.stroke ul li a.active:after {
  height: 100%;
  width: 100%;
}

.nav.stroke ul li a.active::before {
  height: 100%;
}

.nav.stroke ul li a.active {
  color: #fff !important;
}

/* Buttons Css Start*/
.theme-btn {
  color: #ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 13px 30px;
  font-size: 15px;
  position: relative;
  z-index: 1;
  transition: 0.5s ease-in-out;
  border-radius: 30px;
  overflow: hidden;
  font-weight: 500;
}

.theme-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  content: "";
  transition: 0.5s ease-in-out;
  background: #f24e2d;
}

.theme-btn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  z-index: -1;
  content: "";
  transition: 0.5s ease-in-out;
  background: #FD2801;
  transform: translate(-50%, -50%);
}

.theme-btn:hover::after {
  transition: 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

.theme-btn:hover {
  transition: 0.5s ease-in-out;
}


.style1::before {
  background: #FD2801;
}

.style1::after {
  background: #ea4734;
}

/* Buttons Css End*/

/* Loader start */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  overflow: hidden;
}

#loader video {
  min-width: 100%;
  min-height: 100%;
  width: 50%;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Ensure content is hidden when loader is active */
body.loading {
  overflow: hidden;
}

/* Custom Scrollbar  */
#style-6::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar-thumb {
  background-color: #FD2801;
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
}

.scrollbar {
  overflow-y: scroll;
}

/* Custom Scrollbar  */

/* Home Page start*/

/* Header */
.hdr_logo a img {
  object-fit: scale-down;
  padding: 0;
  display: block;
  width: 75%;
}

section.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.hdr_btn {
  display: flex;
  justify-content: end;
}

/* Header end*/

/* Banner */
.banner_sec {
  position: relative;
  z-index: 1;
  background-image: url(../images/banner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.banner_sec::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 47%;
  height: 100%;
  z-index: 0;
  content: '';
  background-image: url(../images/after.png);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.banner_sec::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: '';
  background-color: #0f1c2eeb;
}

.banner-box {
  position: relative;
  z-index: 1;
}

.banner-box::before {
  position: absolute;
  top: 0;
  right: 100%;
  width: 0%;
  height: 100%;
  z-index: -1;
  content: '';
  background-color: #1A2534;
}

.banner-box::after {
  position: absolute;
  top: 0;
  left: 100%;
  width: 0%;
  height: 100%;
  z-index: -1;
  content: '';
  background-color: #EEF0EF;
}

.banner_text {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
}

.banner-slider .slick-list {
  height: 100%;
}

.banner-slider .slick-track {
  height: 100%;
}

span.f-54 {
  font-size: 54px;
  line-height: 1;
  display: block;
}

.banner-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hdr_btn .theme-btn {
  border: 2px solid #fff;
}

.banner_text p {
  color: #fff;
  opacity: 1;
  font-size: 16px;
  line-height: 1.8;
  width: 100%;
}

.banner_image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 810px;
  width: 690px;
  margin: 40px 0 0 50px;
}

.banner_image img {
  border-radius: 50%;
  height: 80%;
}

.banner-nav-slider .slick-slide.slick-current.slick-active {
  opacity: 1 !important;
}

.banner-nav-slider .slick-slide {
  opacity: 0 !important;
  transition: opacity 0.5s ease-in-out;
}

.banner-nav-slider .slick-list {
  overflow: visible !important;
}

ul.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

ul.social li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

ul.social li a::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  z-index: -1;
  content: '';
  transform: translate(-50%, -50%);
  background-color: #ec5530;
  transition: 0.3s ease-in-out;
}

ul.social li a:hover::before {
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
}



.banner-bottom-box {
  margin: -90px 0 0 0;
  padding-bottom: 30px;
}

/* Banner Dots Styling */
.banner-dots {
  display: flex;
  justify-content: flex-end;
}

.banner-dots ul {
  display: flex;
  gap: 0;
  position: unset;
}

.banner-dots ul li {
  list-style: none;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-dots ul li button {
  font-size: 0;
  width: 40px;
  height: 9px;
  background-color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 22px;
  padding: 0;
}

.banner-dots ul li.slick-active button {
  background-color: #FD2801;
}

.banner-dots ul li button:hover {
  background-color: #FD2801;
}


.slick-dots li button:before {
  content: '' !important;
}

.banner-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Banner end*/


/*about start*/
section.about {
  padding: 100px 0px;
}

.abt-img::before {
  position: absolute;
  right: -15px;
  content: '';
  background-color: #f24e2d;
  height: 260px;
  width: 31px;
  top: 251px;
  z-index: -1;
  border-radius: 100px;
}

.abt-txt h5 {
  font-size: 24px;
  font-weight: 700;
  color: #ffbe40;
  margin-bottom: 10px;
}

.abt-txt p {
  font-size: 16px;
  line-height: 2;
  text-align: justify;
}

.miss-txt ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.miss-txt ul li h5 {
  font-size: 30px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0;
}

.miss-txt p {
  font-size: 15px;
  line-height: 1.8;
}

section.about a.btn-1 {
  display: inline-block;
  margin-top: 10px;
  background-color: #233750;
  color: #fff;
}

.abt-img {
  position: relative;
  width: 97%;
}

.abt-sm-img {
  position: absolute;
  bottom: 20px;
  left: -45px;
  width: 40%;
}

.abt-sm-txt {
  padding: 20px;
  text-align: center;
  background-color: #FD2801;
  width: fit-content;
  position: absolute;
  border-radius: 20px;
  border: 6px solid #fff;
  top: 20px;
  right: -36px;
}

.abt-sm-txt h4 {
  font-size: 46px;
  line-height: 72px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.abt-sm-txt h5 {
  font-size: 23px;
  color: #fff;
  line-height: 40px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}

.abt-sm-txt h5 span {
  display: block;
}

/*about end*/
/*service start*/
section.service {
  padding: 80px 0px;
  background-color: #eeefef;
}

.ser-txt h5 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.ser-txt h3 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  color: #fff;
}

section.service a.btn-1 {
  padding: 12px 30px;
}

.ser-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.ser-bot-txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fd28019e;
  padding: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: absolute;
  width: 95%;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 85px;
}


.ser-bot-txt h5 span {
  display: block;
}

.ser-img {
  position: relative;
}

.ser-bot-txt a i {
  font-size: 15px;
  background-color: #f24e2d;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/*service end*/
/*call-us start*/
section.call-us {
  position: relative;
  z-index: 1;
  padding: 80px 0px;
}


.call-us::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: url(../images/call-us.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  background-position: center;
  background-attachment: fixed;
}


.call-us::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: -1;
  background: #232d3ce8;
}

.call-us-txt {
  text-align: center;
}

.call-us-txt h2 {
  color: #fff;
  font-weight: 600;
}

.call-us-txt h2 span {
  display: block;
}

.cont-ank {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cont-ank ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0;
}

.cont-ank ul li h5 {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  text-align: justify;
}

.cont-ank ul li h5 span a {
  display: block;
  font-size: 30px;
  color: #fff;
}

section.call-us a.btn-1 {
  background-color: #233750;
  color: #fff;
}

ul.social-icon li a i:hover {
  background-color: #ffbe40;
}

/*call-us end*/

/*choose start*/
section.chose {
  padding-bottom: 90px;
  background-image: url(../images/chose-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.chose-txt {
  text-align: center;
  margin-bottom: 40px;
}

.chose-txt h5 {
  font-size: 24px;
  line-height: 24px;
  color: #ffbe40;
  font-weight: 700;
  margin-bottom: 10px;
}

.chose-txt h3 {
  font-size: 60px;
  line-height: 60px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
}

.chose-txt p {
  margin: 0 auto;
  width: 60%;
}

.chose-bot-txt {
  text-align: center;
}

.chose-bot-txt h4 {
  font-size: 27px;
  color: #f24e2d;
  font-weight: 700;
  height: 60px;
  width: 60px;
  border: 1px solid #f24e2d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 30px !important;
  border-radius: 50%;
}

.chose-bot-txt h5 {
  font-size: 37px;
  color: #000000;
  font-weight: 700;
}

.chose-bot-txt p {
  margin: 0 auto;
  width: 86%;
}

.chose-bot-txt.tw {
  position: relative;
}

.chose-bot-txt.tw::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(../images/star-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}

.chose-bot-txt.tw::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-image: url(../images/star-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}

/*choose end*/
/*get-free satart*/
section.get-a-free {
  padding: 80px 0px;
  background: #0f1c2e;
}

.main-get-free {
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.get-free-txt {
  padding: 40px 40px 40px 10px;
}

.get-free-txt form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #d2d0d0;
  margin-bottom: 30px;
  outline: none;
}

.get-free-txt form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #d2d0d0;
  margin-bottom: 30px;
  outline: none;
}

.get-free-txt button {
  width: 100%;
  background-color: #f24e2d;
  padding: 12px;
  color: #ffff;
  border: unset;
  border-radius: 40px;
}

section.chose.in {
  padding: 80px 0px;
}

.get-img {
  height: 100%;
}

.get-img img {
  height: 100%;
}

.get-free-txt h2 {
  margin: 0 0 30px 0;
  text-align: center;
}

/*get-free end*/
/* Footer Section start */

.footer-sec {
  position: relative;
  background-image: url(../images/footer-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0 40px;
  z-index: 1;
}

.footer-sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: #ec553094;
  z-index: -1;
}

ul.banner-social.footer-social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  left: 0;
  margin-top: 30px;
  gap: 10px;
}

.footer-box p {
  color: #c1c7c7;
}

.footer-box h5 {
  padding-bottom: 20px;
  border-bottom: 3px solid #fff;
  width: fit-content;
}

ul.footer-links a {
  color: #fff;
  font-size: 16px;
  line-height: 44px;
  text-transform: uppercase;
  font-family: 'Poppins';
}

ul.footer-link-info i {
  font-size: 16px;
  color: #fff;
}

ul.footer-link-info li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

ul.footer-link-info li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding-bottom: 20px;
}

ul.footer-link-info p {
  font-size: 15px;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

.footer-box p {
  opacity: 12;
  font-size: 16px;
  color: #fff;
  text-align: justify;
  margin-bottom: 35px;
  width: 95%;
}

.input-foter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.input-foter input {
  width: 100%;
  height: 40px;
  padding: 10px 20px;
  background: #ffff;
  border: 1px solid #3c3b3b;
  border-radius: 5px;
  color: #000;
}

.input-foter input::placeholder {
  color: #000;
}


ul.banner-social.footer-social i {
  border-radius: 5px;
  font-size: 24px;
}

.botom-pera p {
  text-align: center;
  color: #fff;
  margin: 0;
  padding: 30px 0;
}

.botom-pera p {
  text-align: center;
  color: #fff;
  margin: 0;
  padding: 20px 0 20px;
  margin-top: 20px;
  text-transform: uppercase;
}



.input-foter .button {
  width: 60px;
  height: 40px;
  margin-left: -60px;
  background-color: #31a9cd;
  border: unset;
}

.input-foter .type1::before {
  width: 60px;
  height: 40px;
}

.input-foter .type1::after {
  width: 60px;
  height: 40px;
}

.footer-box img {
  width: 60%;
  margin-bottom: 20px;
}

.chats {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #102034;
  border-radius: 10px;
  padding: 20px;
}

.chats h5 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
  padding: 0;
  border: none;
}

.chats h5 span a {
  display: block;
  font-size: 24px;
  font-weight: 500;
  color: #fff !important;
}

ul.footer-link-info p span {
  display: block;
}

.chats i {
  font-size: 15px;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ec5530;
  transform: rotate(93deg);
}

section.footer-sec ul.social-icon {
  position: unset;
  margin-top: 45px;
}

.botom-pera.wow.fadeInDownBig {
  background-color: #FD2801;
  border-radius: 30px;
  position: relative;
}

/* Footer Section End */
/*testimonial start*/
.test-bot-bx ul li img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.text-main-bx img {
  width: 40px;
}

section.testimonial {
  padding: 100px 0px;
}

.test-txt {
  text-align: center;
  margin-bottom: 15px;
}

.test-txt h5 {
  font-size: 24px;
  color: #6d946b;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
}

.test-txt h3 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
}

.text-main-bx p {
  text-align: justify;
  line-height: 2;
  margin: 0 0 20px;
}

section.testimonial .slick-active {
  opacity: 1;
}

.text-main-bx {
  padding: 23px;
  background-color: #f2f2f1;
  border-radius: 20px;
  margin: 10px 0px;
  position: relative;
  padding-top: 50px;
}

.test-bot-bx ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.test-bot-bx ul li h5 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.2;
}

.test-bot-bx ul li h5 span {
  display: block;
  font-size: 20px;
  font-family: 'Poppins';
  font-weight: 400;
  line-height: 26px;
}

.test-bot-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0f1c2e;
  padding: 30px 30px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.text-main-bx::before {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  height: 80px;
  width: 80px;
  background-image: url(../images/test-bef.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0px 10px 0 0;
}

/*testimonial end*/

/* section start */

.abt-img img {
  height: 560px;
  border-radius: 30px;
}

.abt-sm-img img {
  height: 200px;
  border: 4px solid #fff;
}

.text-end {
  display: flex;
  justify-content: end;
}


.cont-ank ul li i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #FD2801;
  border-radius: 50%;
}

section.testimonial .slick-dots li button:before {
  font-size: 20px;
  content: '';
  width: 50px;
  height: 10px;
  border-radius: 10px;
  background-color: #ec5530;
  opacity: 1;
}

section.testimonial ul.slick-dots {
  gap: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0;
}

section.testimonial li.slick-active button::before {
  background-color: #000;
}

.test-bot-bx::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 19%;
  height: 100%;
  z-index: -1;
  content: '';
  background: #ec5530;
}

ul.footer-link-info {
  margin-top: 40px;
}

ul.footer-links {
  margin-top: 40px;
}

.chats {

  margin-top: 40px;
}

.call-box {
  position: absolute;
  top: 0;
  width: 20%;
  height: 90%;
  background: #fd28019e;
  display: flex;
  align-items: center;
  padding: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.call-left {
  left: 0;
  border-radius: 0 20px 20px 0;
}

.call-right {
  right: 0;
  border-radius: 20px 0 0 20px;
}

.footer-box ul.social {
  margin-top: 40px;
}

/* section end */

/* section start */
/* section end */

/* section start */
/* section end */

/* section start */
/* section end */

/* section start */
/* section end */

/* section start */
/* section end */

/* section start */
/* section end */

/* Home Page end*/



/* inner banner  */
section.inner-ban {
  background-image: url(../images/in-ban-bg.JPEG);
}

/* about page  */

section.inner-contact {
  background: #ffff;
}

section.inner-contact .main-get-free {
  background: #0f1c2e;
}

section.inner-contact .main-get-free h2 {
  color: #fff;
}

.get-img img.inr-contact-img {
  height: 550px;
  object-fit: cover;
}

/* about page  */

.get-free-txt form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d2d0d0;
  margin-bottom: 30px;
  outline: none;
  height: 150px;
  resize: unset;
}

.send-btn {
  width: 40%;
  margin: 0px auto;
}

/* -------------------------------------- Serivces Detail ------------------------------- */

.service_detail-page {
  padding: 100px 0;
}

.service_dt_img {
  box-shadow: inset 0 0 15px 0px #fff;
  margin-bottom: 20px;
  padding: 18px;
  background: #0f1c2e36;
  border-radius: 20px;
  border: 3px solid #ffffff00;
}

.service_dt_img img {
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
}

.service_dt_cont h2 span {
  display: inline-block;
}

.service_dt_cont h2 {
  color: #0f1c2e;
  font-size: 60px;
  line-height: 70px;
  border-bottom: 1px solid #0f1c2e;
  display: inline-block;
  padding: 0px 50px 10px 0px;
  margin-bottom: 24px;
}

/* -------------------------------------- Serivces Detail ------------------------------- */

/* =============================== Gallery Start =========================== */

.gallery-sec {
  padding: 100px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: inset 0 0 15px 0px #fff;
  padding: 7px;
  border-radius: 24px;
}

.gallery-item img {
  width: 100%;
  transition: 0.2s;
  object-fit: cover;
  border-radius: 20px;
}

.gallery-item img:hover {
  filter: brightness(0.6);
  transform: translate(0px, -2px);
}

.img-sm-gp .gallery-item img {
  height: 250px;
}

/* Gallery Layout Styles */
.gallery-item {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Mosaic Top Left */
.gallery-img1 img,
.gallery-img2 img {
  height: 250px;
}

.gallery-img3 img {
  height: 400px;
}

/* Mosaic Top Right */
.gallery-img4 img {
  height: 400px;
}

.gallery-img5 img,
.gallery-img6 img {
  height: 250px;
}

/* Bottom Row */
.gallery-img7 img,
.gallery-img8 img,
.gallery-img9 img {
  height: 300px;
}


section.inner-ban .banner_image {
  height: 660px;
  width: 550px;
  margin: 60px 0 0 50px;
}

.inner-ban h1 {
  font-size: 80px;
}

/* =============================== Gallery End =========================== */

/* Pagination */
.pagination-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.pagination-box button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #FD2801;
  background-color: transparent;
  color: #FD2801;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.pagination-box button:hover,
.pagination-box button.active {
  background-color: #FD2801;
  color: #fff;
}

.comma-img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(66%) saturate(5450%) hue-rotate(3deg) brightness(104%) contrast(103%);
}

.info-box {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  margin: 0;
  gap: 10px;
  box-shadow: 0 0 20px 0 #00000038;
  border-radius: 20px;
  height: 100%;
}

.info-icon a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #FD2801;
  color: #ffff;
  font-size: 20px;
}

.info-text span {
  display: block;
}

.info-box a:hover {
  color: #000;
}

/* ==================== QUOTE MODAL CSS START ==================== */

/* Overlay */
.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 28, 46, 0.85);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.quote-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.quote-modal {
  background: #fff;
  width: 90%;
  max-width: 820px;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(40px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.quote-modal-overlay.active .quote-modal {
  transform: translateY(0) scale(1);
}

/* Modal Header */
.quote-modal-header {
  background: #0f1c2e;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.quote-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(242, 78, 45, 0.15));
  z-index: 0;
}

.quote-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.quote-header-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f24e2d, #FD2801);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.quote-modal-header h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 2px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quote-modal-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0;
  opacity: 1;
  font-family: 'Poppins', sans-serif;
}

.quote-modal-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.quote-modal-close:hover {
  background: #f24e2d;
  border-color: #f24e2d;
  transform: rotate(90deg);
}

/* Step Progress Bar */
.quote-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 30px 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  gap: 0;
}

.quote-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.quote-step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.quote-step-circle span {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #999;
  transition: all 0.3s ease;
}

.quote-step.active .quote-step-circle {
  background: linear-gradient(135deg, #f24e2d, #FD2801);
  box-shadow: 0 4px 15px rgba(242, 78, 45, 0.4);
}

.quote-step.active .quote-step-circle span {
  color: #fff;
}

.quote-step.completed .quote-step-circle {
  background: #0f1c2e;
  box-shadow: 0 4px 15px rgba(15, 28, 46, 0.3);
}

.quote-step.completed .quote-step-circle span {
  color: #fff;
}

.quote-step-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.quote-step.active .quote-step-label {
  color: #f24e2d;
  font-weight: 600;
}

.quote-step.completed .quote-step-label {
  color: #0f1c2e;
}

.quote-step-line {
  flex: 1;
  height: 3px;
  background: #e0e0e0;
  margin: 0 10px;
  margin-bottom: 28px;
  border-radius: 10px;
  transition: all 0.4s ease;
  min-width: 40px;
  max-width: 100px;
}

.quote-step-line.active {
  background: linear-gradient(90deg, #0f1c2e, #f24e2d);
}

/* Modal Body */
.quote-modal-body {
  padding: 25px 30px 30px;
  overflow-y: auto;
  flex: 1;
}

.quote-modal-body::-webkit-scrollbar {
  width: 6px;
}

.quote-modal-body::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.quote-modal-body::-webkit-scrollbar-thumb {
  background: #f24e2d;
  border-radius: 10px;
}

/* Form Steps */
.quote-form-step {
  display: none;
  animation: quoteSlideIn 0.4s ease;
}

.quote-form-step.active {
  display: block;
}

@keyframes quoteSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

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

/* Section Title */
.quote-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.quote-section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f24e2d, #FD2801);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.quote-section-title h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: #0f1c2e;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Form Fields */
.quote-field {
  margin-bottom: 20px;
}

.quote-field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.quote-field label .req {
  color: #f24e2d;
  font-weight: 700;
}

/* Input Wrapper with Icon */
.quote-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.quote-input-wrap i {
  position: absolute;
  left: 14px;
  color: #f24e2d;
  font-size: 14px;
  z-index: 2;
  pointer-events: none;
}

.quote-input-wrap input,
.quote-input-wrap select {
  width: 100%;
  height: 48px;
  padding: 0 15px 0 42px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  background: #fcfcfc;
  transition: all 0.3s ease;
  outline: none;
  appearance: auto;
}

.quote-input-wrap.textarea-wrap {
  align-items: flex-start;
}

.quote-input-wrap.textarea-wrap i {
  top: 16px;
}

.quote-input-wrap textarea {
  width: 100%;
  padding: 14px 15px 14px 42px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  background: #fcfcfc;
  transition: all 0.3s ease;
  outline: none;
  resize: none;
  min-height: 100px;
}

.quote-input-wrap input:focus,
.quote-input-wrap select:focus,
.quote-input-wrap textarea:focus {
  border-color: #f24e2d;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(242, 78, 45, 0.1);
}

.quote-input-wrap input::placeholder,
.quote-input-wrap textarea::placeholder {
  color: #aaa;
}

/* Error State */
.quote-error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
}

/* File Upload */
.quote-upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  border: 2px dashed #d8d8d8;
  border-radius: 12px;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 90px;
}

.quote-upload-box:hover {
  border-color: #f24e2d;
  background: #fff5f3;
}

.quote-upload-box i {
  font-size: 28px;
  color: #f24e2d;
}

.quote-upload-box span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #888;
}

.quote-upload-box input[type="file"] {
  display: none;
}

/* Step Navigation Buttons */
.quote-step-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.quote-next-btn,
.quote-prev-btn,
.quote-submit-btn {
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.quote-next-btn i,
.quote-prev-btn i,
.quote-submit-btn i {
  font-size: 12px;
}

.quote-prev-btn {
  border: 2px solid #0f1c2e !important;
}

.quote-prev-btn::before {
  background: #0f1c2e !important;
}

.quote-prev-btn::after {
  background: #1a2d44 !important;
}

/* ==================== QUOTE MODAL RESPONSIVE ==================== */
@media (max-width: 768px) {
  .quote-modal {
    width: 95%;
    max-height: 85vh;
    border-radius: 15px;
  }

  .quote-modal-header {
    padding: 18px 20px;
  }

  .quote-modal-header h4 {
    font-size: 18px;
  }

  .quote-modal-body {
    padding: 20px;
  }

  .quote-steps-bar {
    padding: 18px 15px 14px;
  }

  .quote-step-circle {
    width: 34px;
    height: 34px;
  }

  .quote-step-circle span {
    font-size: 14px;
  }

  .quote-step-label {
    font-size: 10px;
  }

  .quote-step-line {
    min-width: 25px;
    margin: 0 5px;
  }

  .quote-section-title h5 {
    font-size: 18px;
  }

  .quote-step-btns {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .quote-step-btns .theme-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .quote-modal-header {
    flex-direction: row;
    gap: 10px;
    padding: 15px;
  }

  .quote-header-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .quote-modal-header h4 {
    font-size: 16px;
  }

  .quote-modal-header p {
    font-size: 11px;
  }

  .quote-steps-bar {
    padding: 14px 10px 10px;
    gap: 0;
  }

  .quote-step-label {
    font-size: 9px;
  }

  .quote-step-circle {
    width: 30px;
    height: 30px;
  }

  .quote-step-circle span {
    font-size: 12px;
  }
}

/* ==================== QUOTE MODAL CSS END ==================== */

/* ==================== TOP BAR MARQUEE CSS START ==================== */

.top-bar {
  background: #0f1c2e;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

.top-bar-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.top-bar-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.top-bar-marquee-item {
  display: inline-block;
  white-space: nowrap;
  padding: 15px 60px;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

.top-bar-marquee-track:hover {
  animation-play-state: paused;
}

/* ==================== TOP BAR MARQUEE CSS END ==================== */

/* ==================== LOCATION SECTION CSS START ==================== */

.location-section {
  padding: 100px 0;
  background: #fff;
}

.location-title h2 {
  font-size: 50px;
  color: #0f1c2e;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
}

.location-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f24e2d;
  border-radius: 2px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  color: #333 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.location-item i {
  color: #f24e2d;
  font-size: 18px;
  transition: all 0.3s ease;
}

.location-item:hover {
  color: #f24e2d !important;
  transform: translateX(8px);
}

.location-item:hover i {
  transform: scale(1.2);
}

@media (max-width: 1200px) {
  .location-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* ==================== LOCATION SECTION CSS END ==================== */

/* ==================== PARTNER SECTION CSS START ==================== */

.partner-sec {
  background: #f8f9fa;
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.partner-image {
  padding: 0 30px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.partner-img {
  transition: all 0.4s ease;
}

.partner-image:hover .partner-img {
  opacity: 1;
}

.partner-slider .slick-track {
  display: flex;
  align-items: center;
}

/* ==================== PARTNER SECTION CSS END ==================== */

/* ==================== SERVICE DETAIL CSS START ==================== */

.service_list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service_list li {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service_list li i {
  color: #f24e2d;
  font-size: 14px;
}

.service_dt_cont h2 {
  font-size: 42px;
  color: #0f1c2e;
  font-weight: 700;
  margin-bottom: 20px;
}

.service_dt_cont h5 {
  font-size: 23px;
  color: #0f1c2e;
  font-weight: 600;
}

p.headline {
  font-style: italic;
  font-weight: 600;
}

/* ==================== SERVICE DETAIL CSS END ==================== */


body.inner-page section.header {
  padding: 0 0 10px 0;
  position: unset;
  background: #111c2e;
}