@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

:root {
  --red: #b81708;
  --darkRed: #963d33;
  --blue: #08084f;
  --darkBlue: #3a3953;
}

a {
  text-decoration: none;
}

h1,
h2 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
}

li {
  list-style: none;
}

.underline {
  width: 5%;
  height: 4px;
  background-color: var(--blue);
  margin: 0 auto;
  margin-bottom: 2rem;
}

p {
  font-size: 1rem;
}

.primaryBtn {
  font-size: 16px;
  color: #fff;
  background-color: var(--blue);
  padding: 12px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}



.primaryBtn:hover {
  background-color: var(--darkBlue);
}

.secBtn {
  font-size: 15px;
  color: #fff;
  background-color: var(--blue);
  padding: 10px 17px;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  grid-row: 500;
}

.secBtn:hover {
  background-color: var(--darkBlue);
  border-color: #fff;
}


/* Top Strip */


.topStrip {
  background-color: var(--blue);
  padding-block: 0.5rem;
  color: #fff;
  height: 50px;
}

.leftStrip i {
  margin-right: 0.5rem;
  color: #fff;
}

.leftStrip a {
  color: #fff;
}

.leftStrip a:hover {
  text-decoration: underline;
  color: #fff;
}

.stripNumber {
  padding-right: 0.5rem;
  border-right: 1px solid #fff;
}

.stripEmail {
  padding-left: 0.5rem;
}



.rightStrip i {
  font-size: 1.2rem;
  margin-left: 0.4rem;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 0.5rem;
  cursor: pointer;
  -webkit-transition: all 0.9s;
  transition: all 0.3s;
  color: #fff;

}

.rightStrip i:hover {
  transform: rotate(360deg);
}

/* Nav Start*/

header {
  padding-block: 0rem;
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 99;
 
}

/* nav{
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
} */



.navbar-brand img {
  width: 200px;
  object-fit: contain;
}

.navbar-brand {
  text-align: center;
  /* position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  border-bottom-left-radius: 55px;
  border-bottom-right-radius: 55px;
  padding: 1rem;
  padding-inline: 1.5rem; */
}

.navbar-brand span {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--blue);
}







nav a {
  color: #000 !important;
  margin-left: 1rem;
  font-size: 1rem;
  position: relative;
  font-weight: 500 !important;
  /* text-transform: uppercase; */
}

.nav-link {
  text-transform: uppercase;
}

.nav-link::before {
  width: 0%;
  height: 3.5px;
  content: '';
  position: absolute;
  bottom: -3.5px;
  left: 0;
  background-color: var(--blue);
  transition: all 0.5s ease;
}



.nav-link:hover::before {
  width: 100%;
}

nav .active {
  color: var(--blue) !important;
  border-bottom: 3.5px solid var(--blue);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--blue) !important;
}

.dropdown-menu {
  width: 300px;
  border-radius: 0;
  background-color: var(--blue);
  color: #fff;
  padding-block: 0;
}

.dropdown-item {
  font-size: 15px;
  color: #fff !important;
  margin: 0;
  transition: all 0.5s ease;
  border-bottom: 1px dashed #1a8ed1;
  padding-block: 0.5rem;
}



.dropdown-item:hover {
  background-color: var(--darkBlue);
  padding-left: 1.5rem;
}



/* Navbar End */

/* Carousel */

.carousel img {
  object-fit: cover;
  height: 550px;
  overflow: hidden;
}

.carousel-caption {
  text-align: left;
  position: absolute;
  width: max-content;
  left: 50%;
  top: 40%;
  transform: translateX(-50%);
}


.carousel-caption h5 {
  word-spacing: 3px;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.carousel-caption p {
  font-size: 20px;
  width: 90%;
}

.carousel-item {
  position: relative;
  overflow: hidden;
}

.carousel-item::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;

  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  /* clip-path: polygon(100% -100%, -100% 100%, 45% 100%); */
}

/* Top 3 Boxes */

.top_3_boxes {
  margin-block: 3rem;
}

.boxes {
  width: 100%;
  box-shadow: 0 0 20px #ccc;
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;

}

.top_3_boxes .boxes {

justify-content: center;
}


.box_icon {
  width: 50px;
  height: 50px;
  background-color: var(--blue);
  border-radius: 50%;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.boxes:hover .box_icon {
  background-color: var(--red);
}

.box_icon i {
  font-size: 2rem;
  color: #fff;
}

.box_content h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
}

/* Introduction */

.introduction {
  padding-block: 3rem;
  padding-bottom: 5rem;
  background-color: #eee;
}

.introduction h1 {
  color: unset;
}

.introduction h1 span {
  color: var(--red);
}



.intro_imgs {
  position: relative;

}

.intro_imgs img {

  object-fit: cover;
  /* padding: 0.5rem; */
  border: 2px solid var(--blue);
  border-radius: 1rem;
}

.intro_big {
  width: 100%;
  height: 500px !important;
}

.intro_small {
  width: 250px;
  height: 300px;
  position: absolute;
  bottom: -10%;
  right: -10%;
}

.intro_content{
  padding-left: 5rem;
}


.introduction h6 {
  font-size: 18px;
  font-weight: 600;
  background-color: var(--blue);
  padding: 0.5rem;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}


.introduction h4 {
  font-weight: 600;
  font-size: 20px;
}

.introduction h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
}

.introduction p {
  text-align: justify;
}

.intro_points>div {
  display: flex;
  gap: 10px
}

.intro_points p {
  text-align: left;
}


/* Acchievemnet */

.acchievement {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../banners/banner2.jpg) fixed center no-repeat;
  color: #fff;
  padding-block: 3rem;
  background-size: cover;
}

.acchievement .num {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}

.acchievement .col-12 {
  text-align: center;
}

.acchievement i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  margin-left: -0.5rem;
}

.acchievement .num::after {
  content: ' +';
}
.acchievement .repairCar::after {
  content: ' K+';
}



.acchievement .sub-texts {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: unset;
  margin-bottom: 0;
}

/* Vision & Mission */


/*Home Vision Mission */


.vis_mis_sec {
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("../imgs/vision_bg.jpg") no-repeat center fixed;
  background-size: cover;
  padding-block: 3rem;
  height: 470px;
}

.vis_mis_sec img {
  width: 100%;
  height: 80%;
  padding: 0.5rem;
  border: 1px solid #000;
}

.vis_box {
  /* background: rgb(255 255 255 / 96%); */
  text-align: left;
  /* padding: 30px; */
  /* height: 300px;
  box-shadow: 0 0 20px #ccc; */
}

.vis_box h2 {
  text-align: left;
  font-weight: 800;
  color: #000;
  margin-block: 15px;
  font-size: 26px;
  color: var(--blue);
}

.vis_box p {
  line-height: 27px;
  margin-bottom: 20px;
}

.vis_box img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}


.service_section {
  margin-block: 2rem;
}

.service_section h2 {
  text-align: center;
}

.service_section p {
  text-align: center;
  height: 72px;
  overflow: hidden;
}


.swiper-slide>div {
  text-align: center;
  width: 95%;
  min-height: 200px;
  box-shadow: #ccc 4px 4px 24px;
  margin: 10px 10px 28px;
  border-radius: 1rem;
  overflow: hidden;
  transition: all linear 0.3s;
  padding: 20px;
  cursor: pointer;

}

.swiper-slide>div:hover {
  background-color: var(--blue);
  color: #fff;
}

.serviceimg {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.serviceimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servSecImg {
  transition: all linear 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.swiper-slide>div:hover .servSecImg {
  opacity: 1;
  transform: scale(1.2);
}

.swiper-slide .servicesContent {
  position: relative;
  height: 200px;
}

.swiper-slide>div h4 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 0.5rem;
  color: var(--blue)
}

.swiper-slide>div:hover .hoverWhite {
  color: var(--white);
}

.swiper-slide .servicesContent a {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-slide>div:hover .servicesContent a {
  background-color: #fff;
  color: var(--blue);
  border: 2px solid transparent;
}

.swiper-slide .servicesContent a:hover {
  border-color: #fff;
  color: #fff;
}


/* Service End */



.owl-nav {
  width: 100%;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);

}

.owl-prev,
.owl-next {
  background-color: var(--blue);
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: absolute;
}

.owl-prev:hover,
.owl-next:hover {
  background-color: var(--darkBlue);
}

.owl-prev {
  left: -5%;
}

.owl-next {
  right: -5%;
}


/* Why Choose US */

.why_choose_us {
  margin-block: 2rem;
}

.why_choose_us img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0.5rem;
  border: 1px solid #ccc;
}

.grid_why{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.why_choose_us .boxes{
  align-items: unset;
  transition: all 0.3s ease;
}

.why_choose_us .boxes:hover{
  transform: scale(1.05);
}



/* Enquiry Form */

.book_service {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../banners/banner4.jpg) fixed center no-repeat;
  background-size: cover;
  padding-block: 3rem;
  color: #fff;
}

.book_service h2 {
  color: #fff;
}

.service_bookform>div {
  width: 95%;
  margin: 0 auto;
  padding: 2rem;
  box-shadow: 0 0 20px #fff;
  border-radius: 1rem;
  backdrop-filter: blur(5px);

}

.service_bookform h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.service_bookform form {
  width: 100%;
}

.service_bookform input,
.service_bookform textarea {
  padding: 1rem;
  margin-bottom: 1rem;
  /* height: 50px; */
  width: 100% !important;
  background-color: transparent;
  border-bottom: 2px solid #fff;
  color: #fff;
}


.service_bookform input::placeholder,
.service_bookform textarea::placeholder {
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.formBtns{
  text-align: center;

}

.formBtns input{
  width: max-content !important;
}

.submitBtn{
  display: inline-block !important;
  padding: 8px 25px !important;
  background-color: #fff !important;
  color: #000 !important;
  border-radius: 25px;
  font-weight: 500;
  border: 2px solid #fff !important;
  transition: all 0.3s ease;
  /* width: 200px !important; */
}

.submitBtn:hover{
  background-color: transparent !important;
  color: #fff !important;
}

/* Subscribe */


.subscribeSec {
  padding: 2rem 1rem;
  background-color: #eee;
}

.subscribeSec .subscribeWraper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.subscribeSec .subscribeWraper h4 {
  padding-top: unset;
  font-weight: 600;
  font-size: 30px ;
  width: 50%;
  color: var(--blue);
}

.subscribeSec .subscribeWraper .subscribeInput {
  width: 50%;
}



.subscribeSec .subscribeWraper .subscribeInput .subEmail {
  border: 1px solid #ccc;
  padding: 1rem;
  width: 70%;
}

.subscribeSec .subscribeWraper .subscribeInput .subBtn {
  background-color: var(--blue);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.subscribeSec .subscribeWraper .subscribeInput .subBtn:hover{
  background-color: var(--darkBlue);
}


/* Footer */


footer {
  background-color: var(--blue);
  padding-block: 2rem;
  color: #fff;
}

footer li {
  margin-bottom: 0.5rem;
}

.commanHeading {
  font-size: 20px;
  margin-bottom: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

footer i {
  margin-right: 0.3rem;
  font-size: 1.2rem;
}



footer a {
  color: #fff;
  transition: all 0.5s ease;
}

footer a:hover {
  text-decoration: underline;
  padding-left: 0.3rem;
}

.ft_contact a:hover {
  padding-left: unset;
}

.subFooter {
  border-top: 2px solid #fff;
  padding-block: 1rem;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  display: none;
}

.subFooter p {
  color: #fff;
  margin: 0;
}



.ft_media i {
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 0.5rem;
  margin-right: 0;
  transition: all 0.3s;
  display: none;
}

.ft_media i:hover {
  color: #000;
  background-color: #fff;
  transform: rotate(360deg);
}

.ft_media img {
  width: 180px;
  box-sizing: unset;
  background-color: #fff;
  padding: 1rem;
  border-radius: 1rem;
}

/* .ft_media li {

  text-align: center;
} */


.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.working_hour{
position: absolute;
bottom: 5%;
right: 10%;
background-color: #fff;
color: var(--blue);
padding: 10px 20px;
border-radius: 25px;
font-weight: 500;
}


/* Comman Banner */
.banner-area {
  width: 100%;
  text-align: center;
  height: auto;
  position: relative;
}

.banner-area img {
  display: block;
  width: 100%;
  margin: auto;
  height: 400px;
  object-fit: cover;
}

/* Comman Heading */

.abou-hed {
  width: 100%;
  height: 41px;
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.abou-hed h1 {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 37px;
  font-weight: 400;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 5px 22px;
}

/* Comman Strip */
.breadcrumb_bg {
  background: var(--blue);
}

.breadcrumb {
  margin: 0;
  font-size: 16px;
  color: #fff;
  background: none;
  padding: 6px 0px;
  font-weight: 400;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

.breadcrumb a,
.breadcrumb a:visited,
.breadcrumb a:hover {
  font-weight: 500;
  color: #fff !important;
}

.breadcrumb li.active {
  color: #fff !important;
}


/* About Us Page */

.core_area {
  margin-top: 2rem;
}



.core_wraper {
  border-radius: 1rem;
  margin-top: 2rem;
  display: flex;
  gap: 20px;
  box-shadow: 0 0 30px #ccc;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s linear;
}

.core_wraper:hover {
  transform: translateY(-10px) rotate(0.5deg);
}

.coreContent {
  width: 80%;
}

.coreImg {
  width: 20%;
}

.coreImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #ccc;
  padding: 0.5rem;
}


.core_wraper h4 {
  font-weight: 600;
  color: var(--blue);
}



.about_why_choose {
  padding-block: 2rem;
  background-color: var(--blue);
}

.about_why_choose p {
  text-align: justify;
  margin-top: 1rem;
  color: #fff;
}

.about_why_choose h2 {
  color: #fff;
}

.about_why_choose img {
  padding: 0.5rem;
  border: 1px solid #ccc;
  width: 98%;
  height: 100%;
  object-fit: cover;
}


.ab_tagline {
  background-color: #eee;
  padding-block: 2rem;
}

.ab_tagline h5 {
  font-size: 30px;
  font-weight: 600;
  color: var(--blue);
}

.ab_tagline a {
  background-color: var(--blue);
  padding: 10px 20px;
  color: #fff;
  font-size: 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.ab_tagline a:hover {
  background-color: var(--darkblue);
}


/* Contact Us Page */
.category_section {
  background: #f3f3fb;
  padding: 60px 0 60px;
}

.category_section h1 {
  line-height: 1.1em;
  text-align: center;
}

.category_section h2 {
  font-weight: 800;
  line-height: 1.1em;
  text-align: center;
  text-transform: uppercase;
}

.category_section h2 p {
  margin-top: 1rem;
  color: var(--blue);
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  margin: 5px 0 15px 0
}

.category_section h2 p strong {
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.category_section h2 span {
  display: block;
  width: 100px;
  height: 2px;
  margin: 10px auto 25px;
  background: var(--blue);
}

.category_section h2 span {
  background: var(--blue) none repeat scroll 0 0;
  height: 2px;
  margin: 0 auto 5px;
  width: 62px
}

.text_left .category_section h2 span {
  margin: 0
}

.category_section h2 span {
  height: 5px;
  width: 90px;
  background: var(--blue);
  margin: 20px auto;
  position: relative;
  border-radius: 30px
}



.cat-htext {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--blue);
  padding: 0 0 10px 0;
}

.cat-htext2 {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: #000;
}

.mt-5 ul {
  margin: 0px;
  padding: 0px
}

.mt-5 ul:after {
  content: '';
  display: block;
  clear: both
}

.mt-5 ul li {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: block;
}

.feature-box {
  width: 290px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px rgb(213 205 205 / 25%);
  margin: 0px 8px 35px 8px;
  padding: 10px 10px 10px 10px;
  text-align: center;
  position: relative;
  border-bottom: 5px var(--blue) solid;
  transform-style: preserve-3d;
  position: relative;
  transition: .6s linear all;
}

.feature-box .icon {
  width: 100px;
  margin: 0 auto 20px;
  height: 100px;
  background: var(--blue);
  border-radius: 33% 66% 70% 30%/49% 62% 38% 51% !important;
  padding: 20px;
  color: #fff;
}

.feature-box .icon svg {
  fill: #fff;
}

.feature-box2 {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px rgb(213 205 205 / 25%);
  margin: 0px 8px 35px 8px;
  padding: 10px 10px 20px 10px;
  text-align: center;
  position: relative;
  border-bottom: 5px var(--blue) solid;
  transform-style: preserve-3d;
  position: relative;
  transition: .6s linear all;
}

.feature-box2 i {
  font-size: 1.5rem;
  color: var(--blue);
}

.feature_img {
  width: 270px;
  height: 179px;
  margin: 0 auto 0 auto;
  overflow: hidden;
  border-radius: 15px;
}

.feature_img figure {
  width: 270px;
  height: 179px;
  vertical-align: middle;
  display: table-cell;
  text-align: center;
}

.feature_img figure img {
  max-width: 100%;
  height: auto;
  transition: all linear .6s
}

.cate_w:hover .feature_img figure img {
  transform: scale(1.1)
}

.feature-title {
  font-size: 18px;
  color: var(--blue);
  font-weight: 700;
  margin: 0px 0 0 0;
  /* height:48px; */
  overflow: hidden;
  line-height: 22px;
  width: 100%;
  /* display: table-cell; */
  /* vertical-align: middle; */
  text-align: center;
}

.feature-text {
  font-size: 16px;
  color: #000000;
  line-height: 24px;
  margin: 15px 0 0 0;
  height: 94px;
  overflow: hidden;
  font-weight: 400;
}

.feature-text a {
  color: #000000;
}

.feature-text a:hover {
  text-decoration: underline;
}

.ico-read {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: auto;
  width: 40px;
  transition: .3s linear all;
}

.ico-read a {
  color: #fff;
  text-decoration: none;
  height: 40px;
  width: 40px;
  background: var(--blue);
  border-radius: 100%;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 42px;
  position: absolute;
  display: block;
}

.feature-box:hover .icon {
  transform: rotateY(180deg);
  background: #000;
  transition: .1s linear all;
}

.feature-box:hover {
  border-bottom: 5px #000 solid;
  transform: scale(1.09);
}

.feature-box:hover .ico-read {
  left: 10px;
}



.form {
  background: #fff;
  padding: 25px;
  border: 1px solid #d5d5d5;
  border-radius: 15px;
  position: relative;
  margin: -55px auto 0;
  width: 80%;
  box-shadow: 0 0 20px rgb(158 158 158 / 25%);
}

.contact_box h2 {
  margin-bottom: 10px;
  line-height: 25px;
  color: #404040;
  font-weight: 600
}

.contact_form input[type=text],
.contact_form select,
.contact_form textarea {
  width: 49%;
  padding: 11px 15px;
  margin: 0;
  background: #fff;
  border: 1px #dddddd solid;
  border-radius: 5px;
}

.contact_form input::placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.contact_form .large {
  width: 98.8% !important
}

.contact_form_cont input {
  margin-bottom: 0.7rem !important;
}

.addrs_w {
  border: 1px solid #d5d5d5;
  margin-bottom: 10px;
  padding: 10px 15px;
  background: #fff;
  width: 100%;
  color: #000
}

.addrs_w p:first-child {
  border-bottom: 1px solid #ccc;
  padding: 6px 10px;
  margin-top: -10px;
  margin-bottom: 0
}

.addrs_w p {
  margin: 0 -15px 15px;
  padding: 0 10px 5px
}

.contact_person {
  font-size: 16px;
  color: #000;
  border-bottom: 1px solid #ccc;
  margin: 0 -15px 15px;
  padding: 7px 15px;
  background: #f3f3f3
}

.ofc_short_dtl {
  font-size: 14px;
  padding: 10px;
  background: #053d65;
  color: #fff
}

.contact_add span {
  display: block;
  float: left;
  width: 60px;
  height: 60px;
  font-size: 30px;
  line-height: 60px;
  font-weight: 500;
  border-radius: 50%;
  background: #272561;
  text-align: center;
  margin: 0 10px 5px 0;
  color: #fff;
}

.contact_add p {
  margin: 15px 0 11px;
  padding: 0;
  line-height: 22px;
  display: inline-block;
}

.c_address span {
  display: block;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500
}

.c_address span>b {
  font-size: 17px;
  margin-left: 0;
  border-radius: 50%;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  color: #fff;
  width: 30px;
  height: 30px;
  border: 1px solid #f1f1f1;
  width: 60px;
  height: 60px;
  font-size: 30px;
  line-height: 60px;
  font-weight: 500;
  border-radius: 50%;
  background: #272561;
  text-align: center;
}

.c_address span>b.whats {
  color: #50d925
}

.c_address span>b.skyp {
  color: #4cb1ff
}

.c_address br {
  line-height: 30px
}

.db {
  display: block
}

.loc {
  background: #80b84e;
  color: #fff
}

.loc img {
  border: 1px solid #000;
  width: 40px;
  height: 27px
}

.map-container {
  border: 3px solid #000;
  margin: 10px 0
}

.map-container iframe {
  width: 100%
}

.reset-butt {
  background: #9aa5af;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  padding: 8px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px
}

.reset-butt:hover {
  background: #ff7e48;
  color: #fff
}

.addrs_w hr {
  margin: 12px 0 !important;
}

.form h2 {
  text-align: center;
}

.contactBtn {
  margin-top: 1rem;
  background-color: var(--blue);
  color: #fff;
}

.contactBtn:hover {
  background-color: var(--darkBlue);
  color: #fff;
}

.contactBtn1 {
  margin-top: 1rem;
  margin-left: 1rem;
  background-color: #ccc;
  border: 2px solid transparent;
  font-weight: 500;
}

.contactBtn1:hover {
  background-color: transparent;
  border-color: var(--blue);
  color: var(--blue);
}

/* CONTACTS ENDS */



/* Service Page  */

.servicepage {
  margin-top: 2rem;
}


.servicepage img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  padding: 0.5rem;
  border: 1px solid #ccc;
}

.coloumHeight {
  height: 430px;
  margin-bottom: -5rem;

}

.servicepage h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--blue);
}

.service_page_sec1 {
  padding-block: 2rem;
}



.service_page_sec2 h3 {
  color: #fff;
}

.service_page_sec2 {
  color: #fff;
  padding-block: 2rem;
 background-color: var(--blue);
  margin-bottom: 0;

}

.servicepage button{
  padding: 10px 20px;
  background-color: var(--blue);
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  color: #fff;
}


.servicepage button:hover{
  background-color: var(--darkBlue);
}


.service_page_sec2 button{
  background-color: #fff;
  color: var(--blue);
  border: 2px solid transparent;
}


.service_page_sec2 button:hover{
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}



/* Service Page End */








/* Back To Top */

.backToTop {
  width: auto;
  position: fixed;
  bottom: -1%;
  right: 5%;
  transition: all 0.3s ease;
  z-index: 99;
}

.backToTop a {
  background-color: var(--blue);
  padding: 0.6rem;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 5px;
}

.backToTop:hover {
  bottom: 1%;
}


/* whatsap css */
#whatsapp {
  position: fixed;
  right: 40px;
  bottom: 10%;
  width: 70px;
  height: 70px;
  cursor: pointer;
  opacity: 1;
  z-index: 99990;
}

#whatsapp #whatsappMain {
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: rgba(255, 255, 255, 0);
  width: 70px;
  height: 70px;
  color: #40c351;
  z-index: 9;
  -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
  -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
  animation: zcwmini2 1.5s 0s ease-out infinite;
}

#whatsapp #whatsappMain:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  background-image: url('../imgs/whatsapp.png');
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-animation: zcwphone2 1.5s linear infinite;
  -moz-animation: zcwphone2 1.5s linear infinite;
  animation: zcwphone2 1.5s linear infinite;
}

@-webkit-keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-moz-keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-moz-keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-moz-keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-webkit-keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-moz-keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

/* whatsap css */

/* Query Form */


.queryForm {
  background-color: #f0eeee;
  padding-block: 3rem;
  padding-top: 2rem;
}

.queryForm h1 {
  text-align: center;
}

.queryForm form {
  margin-top: 2rem;
  width: 100%;
  padding: 3rem 2rem;
  border: 2px solid #eee;
  box-shadow: 0px 0px 15px #aaa9a9;
  background: #FFF;
  border-radius: 1rem;
}

.queryForm form input {
  width: 100%;
  border: 1px solid #d8d8d8;
  margin-top: 1rem;
  border-radius: 0.5rem;
  height: 50px;
}

.queryName {
  display: flex;
}

.queryName input:nth-child(1),
.queryName input:nth-child(2) {
  width: 50%;


}

.queryForm form input,
.commentInput {
  width: 100%;
  border: 1px solid #d8d8d8;
  padding: 0.6rem 2rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
}


.queryEmail {
  margin-top: 0rem !important;
}



.queryForm .queryBtn {
  display: block;
  width: max-content;
  padding: 10px 24px;
  margin: 0 auto;
  margin-top: 2rem;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  transition: all linear .3s;
  border-radius: 5px;
  text-transform: uppercase;
  background: var(--blue);
  transition: all 0.3s ease;
}

.queryForm .queryBtn:hover {
  background: var(--darkblue);

}

.commentInput {
  height: 80px;
}

.queryName {
  display: flex;
  margin-top: -2rem;
}

/* The popup form - hidden by default */
.form-popup {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50% ,-50%);
  border: 3px solid #f1f1f1;
  z-index: 999;
 
  background-color: rgba(0, 0, 0, 0.7);
}

/* Add styles to the form container */
.form-container {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50% ,-50%);
  width: 60%;
  padding: 1.5rem;
  background-color: white;
}

/* Full-width input fields */
.form-container input,.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: var(--blue) !important;
  color: white !important;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
  width: max-content;
  transition: all 0.3s ease;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  width: 30px;
  height: 30px;
  padding: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue) !important;
  position: absolute;
  top: 2%;
  right: 3%;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}