@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');

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


:root {
  --light-blue: #3266CC;
  --blue: #21225B;

}

/* popup form start */
.form-design .btn-close {
  position: absolute;
  right: 1%;
  top: 2%;
  background-color: #fff;
}

.form-design h5 {
  background-color: var(--blue);
  color: #fff;
  padding: 5px 0px;
}

.form-design form select option {
  margin-left: 20px !important;
}

/* popup ffom end */


/* fixed icon css start */
/* fixed icon start */
.whatsapp-icon,
.phone-icon {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 80px;
  right: 20px;
  z-index: 100;
}

.whatsapp-icon {
  right: 2%;
}

.phone-icon {
  left: 2%;
}

.whatsapp-icon img,
.phone-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.whatsapp-icon img:hover,
.phone-icon img:hover {
  transform: scale(1.1);
  /* transform: translateZ(0.5s); */
}

@media (max-width: 768px) {
  .whatsapp-icon {
    right: 0%;
  }

  .phone-icon {
    left: 0%;
  }
}

/* fixed icon end */
/* fixed icon css end */




/* topbar design starts */
.topbar-parent {
  background-color: var(--blue);
  padding: 12px 10px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;


}

.social-icon a {
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff !important;

}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-details a {
  text-decoration: none;
  color: #fff !important;
}


@media(max-width:768px) {
  .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

  }

  .topbar-parent {
    padding: 5px;
  }

  .contact-details {
    /* margin-top:px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }

  .social-icon {
    display: none;
  }

  .contact-details a {
    font-size: 12px;
  }

}

@media(max-width:370px) {
  .contact-details {
    /* margin-top:px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }

  .contact-details a {
    font-size: 14px;
  }

  .topbar-parent {
    background-color: var(--blue);
    padding: 8px 10px;
  }
}

/* topbar design ends */

/* heading start */
.heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}

.heading h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  position: relative;
  font-size: 38px;
  width: 100%;
  text-align: center;

}

.heading h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  position: relative;
  font-size: 38px;
  width: 100%;
  text-align: center;

}

.heading h1::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-bottom: 0;
  height: 2px;
  z-index: -1;
  background: linear-gradient(to right, #21225B, #fff, #fff, #21225B);

}

.heading h2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-bottom: 0;
  height: 2px;
  z-index: -1;
  background: linear-gradient(to right, #21225B, #fff, #fff, #21225B);

}

.heading p {
  font-size: 20px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  text-align: center;
}

@media(max-width:768px) {
  .heading h1 {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    position: relative;
    font-size: 20px;
    width: 100%;
    text-align: center;

  }

  .heading h2 {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    position: relative;
    font-size: 20px;
    width: 100%;
    text-align: center;

  }

  .heading h1::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 0;
    height: 2px;
    z-index: -1;
    background: linear-gradient(to right, #21225B, #fff, #fff, #fff, #21225B);

  }

  .heading h2::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 0;
    height: 2px;
    z-index: -1;
    background: linear-gradient(to right, #21225B, #fff, #fff, #fff, #21225B);

  }

  .heading p {
    font-size: 14px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    text-align: center;
  }
}

@media(max-width:350px) {
  .heading h1::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 0;
    height: 2px;
    z-index: -1;
    background: linear-gradient(to right, #21225B, #fff, #fff, #fff, #fff, #fff, #21225B);

  }

  .heading h2::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 0;
    height: 2px;
    z-index: -1;
    background: linear-gradient(to right, #21225B, #fff, #fff, #fff, #fff, #fff, #21225B);

  }
}

/* heading end */

/* custom button start */
.btn1 {
  text-decoration: none;
  padding: 10px 20px;
  background-color: #21225B;
  border-radius: 25px;
  color: #fff !important;
  display: inline-block;
}

/* custom button end */

/* navbar-start */
.navbar {
  padding: 0;
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.navbar .img {
  width: 200px;
}

.navbar .nav-link {
  margin: 0px 5px;
  padding: 5px 20px;
  border-right: 1px solid #a5c3ff;
}

.navbar .nav-item .nav-link {
  color: var(--blue) !important;
  font-weight: 500;
 white-space:nowrap;
}

.navbar-toggler i {
  color: var(--blue);
  font-size: 28px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown .dropdown-menu {
  padding-bottom: 0;
}

.dropdown .dropdown-menu li a {
  border-bottom: 1px solid #a5c3ff;
  display: inline-block;
}

.dropdown .dropdown-menu li i {
  color: var(--blue);
}



@media(max-width:430px) {
  .navbar .img {
    width: 150px;
  }
}

/* navbar-end */

/* about us start */
.about-us {
  background: linear-gradient(to right, #fffffff1, #fffffff1), url(../images/category/about-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 0px;
}






.category-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 30px;
}

.category-card .card-1 a {
  height: 180px;
  width: 180px;
  padding: 10px;
  background-color: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.category-card .card-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  width: 23%;
}

.category-card .card-1 p {
  text-align: center;
  font-size: 23px;
  font-weight: 500;
  color: var(--blue);
}

.about-content h2 {
  font-family: "Outfit", sans-serif;
  filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.438))
}

.about-content p {
  font-size: 18px;
  text-align: justify;
}

.about-image img {
  filter: drop-shadow(4px 4px 6px rgb(0, 0, 0))
}

@media(max-width:768px) {
  .category-card .card-1 a {
    height: 100px;
    width: 100px;
    padding: 10px;
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }

  .category-card .card-1 {
    width: 48%;
    /* 100% / 4 cards = 25% each */
  }

  .category-card {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 10px;
  }

  .category-card .card-1 p {
    font-size: 14px;
  }
}

@media(max-width:368px) {
  .category-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
  }
}

.owl-carousel .card-1 img {
  width: auto;
}

/* about us end */

/* why-choose start */
.why-us {
  padding: 50px 0px;
}

.why-us-content {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  height: 100%;
}

.why-us-content h3 {
  color: var(--blue);
}

.why-us-content p {
  font-size: 18px;
  text-align: justify;
}

.image {
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media(max-width:768px) {
  .why-us-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
  }

  .why-us-content p {
    text-align: justify;
    font-size: 16px;
  }

  .why-us-content h3 {
    font-size: 20px;
  }
}

/* why choose us end */

/* service card start */
.services {
  padding: 50px 0px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.service-image {
  position: relative;
}

.service-image img {
  transition: 2s ease-in-out
}

.service-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 150px;
  padding: 10px;
  background-color: #000000de;
  transition: 0.5s ease-in-out;
}

.service-content .icon {
  display: flex;
  justify-content: center;
  align-items: start;
  position: relative;
  flex-direction: column;
  height: 100%;
  margin-bottom: 30px;
  padding: 10px 20px 0px 30px;
  transition: 0.5s ease-in-out;
}

.service-content .icon i {
  position: absolute;
  bottom: 85px;
  right: 0;
  padding: 25px;
  font-size: 34px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--blue);
  transition: 0.5s ease-in-out;
}

.service-content .icon h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 5px;
  font-weight: 300;
  transition: 0.5s ease-in-out;
}

/* hover effect start */
.service-card:hover img {
  transform: scale(1.6);
}

.service-card:hover .service-content {
  height: 100%;
}

.service-card:hover .service-content .icon i {
  position: absolute;
  bottom: 30%;
  right: 0;
  padding: 25px;
  font-size: 34px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--blue);
}

.service-card:hover .service-content .icon h3 {
  margin-bottom: 30px;
}

@media(max-width:768px) {
  .service-content .icon h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .service-content .icon p {
    font-size: 14px;
  }

  .service-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 140px;
    padding: 10px;
    background-color: #000000de;
    transition: 0.5s ease-in-out;
  }
}
@media(max-width:450px){
.service-content .icon i{
  position: absolute;
  bottom: 12px;
  right: 0;
  padding: 20px;
  font-size: 30px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--blue);
}
.service-card:hover .service-content .icon i {
  position: absolute;
  bottom: 18px;
  right: 0;
  padding: 20px;
  font-size: 30px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--blue);
}
  .service-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    background-color: #000000de;
    transition: 0.5s ease-in-out;
  }
}

/* hover effect end */
/* service card end */




/* contact us css start */
/* -------------------------- conatct-us css start ----------------------------------- */

.contact-us {
  padding: 50px 0px;
}

.contact-adr h3 {
  font-weight: bolder;
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-adr p {
  font-size: 18px;
  color: var(--blue);
}

.contact-adr ul {
  padding: 0px;
}

.contact-adr ul li {
  list-style: none;
  margin-bottom: 20px;
}

.contact-adr ul li a {
  color: var(--blue);
  text-decoration: none;
}

.contact-adr ul li .icons {
  color: var(--orange);
  margin-right: 10px;
}

.contact-map iframe {
  width: 100%;
  height: 400px;

}

.contact-form-section {
  margin-top: 50px;
}

.contact-form-section .contact-form {
  background: linear-gradient(#21225ba4, #21225be8), url(../images/why-us-image/end-end-service.jpg);
  background-color: var(--blue);
  border-radius: 10px;
  padding: 50px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;

}

.contact-detail-right {
  /* background-color: var(--light-blue); */
  padding: 10px 10px 10px 30px;
}

.form-control {
  padding-top: 20px !important;
  padding-left: 2px !important;
}

.contact-form-section .contact-form .form-design {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}

.form-design form input {
  padding: 0px !important;
  border: none !important;
  outline: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid gray !important;
}

.form-design form select {
  padding: 0px !important;
  border: none !important;
  outline: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid gray !important;
}


.form-design form input::placeholder {
  padding: 0px !important;
  margin: 0px;
  font-size: 10px !important;
}

.form-design form textarea {
  border: none !important;
  outline: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid gray !important;
}

.form-design .btn1 {
  border-radius: 5px;
  margin-top: 40px;
}

.form-design .err {
  font-size: 10px;
  color: red
}


.captchasep1 {
  display: flex;
}

.captchasep1 input {
  width: 100% !important;
  margin-top: 0 !important;
  height: 40px;
}

.captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-radius: 5px;
  border-top: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  background: url(../images/logo/captcha-bg.jpg);
  font-weight: bolder !important;
}

.captchasep1 .captcha-codes-sec p {
  margin-bottom: 0;
  letter-spacing: 9px;
  font-style: italic;
  font-size: 24px;
  padding: 10px;
  height: 100%;
  color: #fff;
  font-weight: bolder !important;
}

.captchasep1 .captcha-codes-sec {
  margin-bottom: 10px;
}

.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 22px;
  outline: none;
  background: transparent;
  height: 100%;
  border: none;
  font-weight: bolder;
}

.captchasep1 .captcha-codes-sec button i {
  background: #000;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
}

.contact-form-section .contact-text {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;

}

.contact-form-section .contact-text h3 {
  color: #83929B;
  font-weight: 600;
  font-size: 16px;
}

.contact-form-section .contact-text h4 {
  line-height: 1.5;
  font-size: 40px;
  font-weight: bold;
  color: #062A3F;
}

.contact-form-section .contact-text p {
  color: #395566;
}


.cap-err {
  font-size: 13px !important;
}

/* responsive contact-us  css start */
@media screen and (max-width:767px) {
  .contact-adr {
    margin-bottom: 20px;
  }

  .contact-adr h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .contact-adr p,
  li {
    text-align: justify;
    font-size: 14px;
  }

  .contact-adr ul li {
    margin-bottom: 10px;
  }

  .contact-map iframe {
    height: 200px;
  }

  .contact-form-section .contact-form {
    padding: 10px;
  }

  .contact-text {
    text-align: left;
    justify-content: left;
  }


  .contact-form-section .contact-text h4 {
    line-height: 1.2;
    font-size: 20px;
  }

  .form-design form {
    padding: 0px;
  }
}



/* contact form start */




@media screen and (max-width: 600px) {
  .captchasep1 {
    display: flex;
    flex-direction: column !important;
  }

  .captchasep1 .captcha-codes-sec {
    border-left: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    margin-top: 3px;
  }
}

@media (max-width: 768px) {
  .captchasep1 .captcha-codes-sec p {
    font-size: 23px;
  }

  .captchasep1 .captcha-codes-sec button {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .captchasep1 .captcha-codes-sec p {
    font-size: 18px;
  }
}


.orbit-container {
  position: relative;
  width: 100px;
  height: 100px;
  display: none;
  border-radius: 50%;
}

.rotating-plane {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
}

.rotating-plane img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Clockwise */
.plane1 {
  animation: spin1 4s linear infinite;
}

/* Counter-clockwise */
.plane2 {
  animation: spin2 4s linear infinite;
}

@keyframes spin1 {
  0% {
    transform: rotate(0deg) translateX(50px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(50px) rotate(-360deg);
  }
}

@keyframes spin2 {
  0% {
    transform: rotate(360deg) translateX(50px) rotate(-360deg);
  }

  100% {
    transform: rotate(0deg) translateX(50px) rotate(0deg);
  }
}


@media(max-width:768px){
  .orbit-container {
  display: none;
}
}

/* end of responsive contact-us css */
/* contact us css end */


/* blog section style start */
.blogs {
  padding: 50px 0px;
}

.related_blog_section .blog_item {
  margin-bottom: 30px;
  box-shadow: 0 0 11px 0 rgba(6, 22, 58, 0.14);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.related_blog_section .blog_item:hover .blog_image img {
  transform: scale(1.1);
}

.related_blog_section .blog_item .blog_image {
  overflow: hidden;
  padding: 0;
}

.related_blog_section .blog_item .blog_image img {
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.related_blog_section .blog_item .blog_image span i {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  width: 38px;
  height: 45px;
  padding-top: 7px;
  text-align: center;
  right: 20px;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
  background-color: var(--blue);
}

.related_blog_section .blog_item .blog_details {
  padding: 25px 20px 30px 20px;
}

.related_blog_section .blog_item .blog_details .blog_title h5 a {
  color: #020d26;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 32px;
  font-weight: 400;
  transition: all 0.3s;
  text-decoration: none;
}

.related_blog_section .blog_item .blog_details .blog_title h5 a:hover {
  color: var(--light-blue);
}

.related_blog_section .blog_item .blog_details ul {
  padding: 0 3px 10px 0;
  margin: 0;
}

.related_blog_section .blog_item .blog_details ul li {
  display: inline-block;
  padding-right: 15px;
  position: relative;
  color: var(--blue);
}

.related_blog_section .blog_item .blog_details ul li i {
  padding-right: 7px;
}

.related_blog_section .blog_item .blog_details p {
  color: #020d26;
  border-top: 1px solid #e5e5e5;
  margin-top: 4px;
  padding: 20px 0 4px;
}



.related_blog_section .related_blog_content .owl-nav {
  display: block;
}

.related_blog_section .related_blog_content .owl-nav .owl-prev {
  position: absolute;
  left: -27px;
  top: 20%;
  border: 5px solid var(--blue);
  text-align: center;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  outline: 0;
  background: var(--light-blue);
  transition: all 0.3s;
  color: #fff;
}

.related_blog_section .related_blog_content .owl-nav .owl-prev span {
  font-size: 25px;
  margin-top: -6px;
  display: inline-block;
}

.related_blog_section .related_blog_content .owl-nav .owl-prev:hover {
  background: #fff;
  border-color: var(--light-blue);
  color: var(--light-blue);
}

.related_blog_section .related_blog_content .owl-nav .owl-next {
  position: absolute;
  right: -27px;
  top: 20%;
  border: 5px solid var(--blue);
  text-align: center;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  outline: 0;
  background: var(--light-blue);
  color: #fff;
  transition: all 0.3s;
}

.related_blog_section .related_blog_content .owl-nav .owl-next span {
  font-size: 25px;
  margin-top: -6px;
  display: inline-block;
}

.related_blog_section .related_blog_content .owl-nav .owl-next:hover {
  background: #fff;
  border-color: var(--light-blue);
  color: var(--light-blue);
}

@media only screen and (max-width: 577px) {
  .related_blog_section .owl-nav .owl-prev {
    left: -17px !important;
  }

  .related_blog_section .owl-nav .owl-next {
    right: -17px !important;
  }
}

/* blog section style end */

/* footer start */
/* --------------------------------- footer task css start  ---------------------------- */
.footer {
  padding: 50px 0px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.footer h2 {
  margin-bottom: 20px;
}

.footer ul {
  padding: 0;
  margin: 0;
}

.footer ul li {
  list-style: none;
}

.footer .part1 img {
  height: 80px;
}

.footer a {
  text-decoration: none;
}

.footer .part1 {
  padding-right: 30px;
}

.footer h3 {
  color: var(--blue);
  font-weight: bold;
  font-size: 16px;
}

.footer .part1 .social-icons a {
  color: var(--blue);
  font-size: 30px;
}

.footer h2 {
  color: var(--blue);
  font-size: 22px;
}

.footer .part2 {
  padding-left: 30px;
}

.footer .part2 ul li a {
  line-height: 2;
  color: #032c53;
  transition: letter-spacing 0.3s ease;
}

/* .footer .part2 ul li a:hover {
  letter-spacing: 3px;
} */

.footer .part2 li i {
  margin-right: 15px;
}

.footer .part3 {
  padding-right: 30px;
  padding-left: -60px;
}

.footer .part4 .adr {
  margin-bottom: 20px;
}

.footer .part4 .adr .part4-icon {
  color: #000;
  margin-right: 15px;
}

.footer .part4 .adr a i {
  font-size: 24px;
}

.footer .part4 .adr a {

  color: #032c53;
}

.part4-map {
  width: 100%;
}

.part4-map iframe {
  width: 100%;
}

@media screen and (max-width:992px) {

  .footer .part2,
  .part3 {
    padding-left: 12px;
  }

  .footer .part1,
  .part2 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width:767px) {
  .footer {
    padding: 20px 0px;
  }

  .footer .part1 img {
    height: 40px;
  }

  .footer .part1 .social-icons a {
    color: #cf590b;
    font-size: 20px;
  }

}

.copyright {
  background-color: var(--blue);
}

.copyright .copy-right-content {
  display: flex;
  justify-content: space-between;
  padding: 10px;

}

.copyright .copy-right-content p {
  margin-bottom: 0px;
  color: #fff !important;
}

.copyright .copy-right-content p a {
  text-decoration: none;
  color: #fff;
}

@media(max-width:768px) {
  .copyright .copy-right-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 5px;
    flex-direction: column;

  }

  .copyright .copy-right-content p {
    font-size: 14px
  }
}

/* footer end */



/* exceptional feature start */
.exceptional-feature {
  padding: 50px 0px;
}

.feature-card-start {
  padding: 30px;
  border: 3px dashed #fff;
  background-color: var(--blue);
  min-height: 300px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.5s ease-in-out;
}

.feature-card-start a {
  text-decoration: none;
  display: inline-block;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.feature-card-start i {
  font-size: 60px;
  margin-bottom: 10px;
  color: #fff;
}

.feature-card-start h3 {
  color: #fff;
  text-align: center;
  font-size: 25px;
  /* margin-bottom: 5px; */
}

.feature-card-start p {
  text-align: center;
  color: #fff;
  font-size: 12px;
}

.feature-card-start:hover {
  transform: translateY(-3%);
}

/* exceptional feature end */




/* faq-section style start */
.faq {
  padding: 50px 0px;
}

.faq-content {
  padding: 20px 100px;
}


.accordion-button::after {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  left: 0;
  background-image: url(../images/logo/plus.png) !important;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.accordion-button {
  outline: none !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  color: #000 !important;
}

.accordion-item p {
  margin-bottom: 0px;
  margin-left: 10px !important;
  font-size: 18px;
  font-weight: 500;
  color: var(--blue);
}



/* faq-section style end */






/* about-us-page design start */

.about-us .about-content-pge {
  padding: 30px 20px;
  height: 100%;
  background-color: var(--blue);
}

.about-us .about-content-pge h2 {
  font-size: 22px;
  margin-bottom: 0px;
  color: #fff;
}

.about-us .about-content-pge hr {
  background-color: #fff;
}

.about-us .about-content-pge h2 {
  font-size: 18px;
  color: #fff;
  font-style: italic;
  margin-bottom: 20px;
}

.about-us .about-content-pge .about-para {
  color: #fff;
  font-size: 16px;
  text-align: justify;
  font-weight: 500;
  line-height: 23px;
}

.readmore {
  text-align: end;
  margin-bottom: 0;
}

.readmore a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 5px;

}

.line {
  height: 2px;
  width: 30px;
  background-color: #fff;
  display: inline-block;
  margin-bottom: 4px;
}


.complete-div {
  position: relative;
}

.images {
  position: relative;
  /* border-radius: 10px; */
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}

.images img {
  border-left: 20px solid var(--light-blue);
  border-bottom: 20px solid var(--light-blue);
}

.overlay-div {
  position: absolute;
  bottom: 8%;
  left: 5%;
  padding: 10px;
  background-color: #ffffffcc;

}

.overlay-div h2,
.overlay-div p {
  color: var(--blue);
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.content .img {
  padding: 20px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.content .label {
  text-align: center;
  font-size: 18px;
  color: #fff;
}

@media(max-width:768px) {
  .content .para-content {
    display: none;
  }
}

/* about-us-page design end */


/* blog details start */
.blog-content{
  padding: 50px 0px;
}
.blog-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: start;
  height: 100%;
}

.about-blog-here .blog-start-head {
  display: flex;
  flex-direction: column
}

.about-blog-here .blog-start-head p {
  padding: 5px 5px 5px 0px;
  margin-bottom: 0;
  color: var(--blue);
  font-weight: 500;
}

.about-blog-here .blog-start-head p i {
  color: var(--light-blue);
}

.about-blog-head p {
  text-align: justify;
  font-size: 18px;
}

/* blog details end */



/* enquiry page style start */
  .enquiry {
      padding: 50px 0px;
    }

    .enquiry-card {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      height: 100%;
      background-color: var(--blue);
    }

    .enquiry-card .enq-icon-img-div {
      background-color: #FFF;
      padding: 12px 14px;
      border-radius: 50%;
      box-shadow: rgba(255, 255, 255, 0.89) 0px 3px 8px;
      margin-bottom: 20px;
    }

    .enquiry-card .enq-icon-img-div img {
      filter: drop-shadow(rgba(0, 0, 0, 0.685) 0px 3px 8px);
    }

    .enquiry-card .enq-form-content {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;


    }

    .enquiry-card .enq-form-content h2 {
      color: #fff;
      font-size: 16px;
      text-align: center;
      margin-bottom: 25px;
    }

    .enquiry-card .enq-form-content p {
      color: #FFF;
      margin-bottom: 0px;
    }

    .enquiry-card .enq-form-content p a {
      text-decoration: none;
      color: #fff !important;
    }
    .enquiry-card .enq-form-content img{
      height: 30px;
    }
    .enquiry-card .enq-form-content .enq-btn{
      text-decoration: none;
      color: #fff;
      padding: 10px 20px;
      display: inline-block;
      border: 1px solid #fff;
      border-radius: 30px;
        animation: glow-animation 0.8s infinite alternate;
    }

  @keyframes glow-animation {
  from {
box-shadow: rgba(255, 255, 255, 0.877) 0px 5px 15px;
  }
  to {
  box-shadow: rgba(255, 255, 255, 0.829) 0px 7px 29px 0px;
  }
}

   .enquiry-content {
      padding: 30px 0px;
    }

    .enquiry-content h2 {
      font-size: 40px;
    }

    .enquiry-content p {
      font-size: 18px;
      text-align: justify;
    }

    .enquiry-content ul {
      padding-left: 0px;
    }

    .enquiry-content ul li {
      list-style: none;
      line-height: 35px;
      font-size: 18px;
    }
       .enquiry-content ul li strong{
         color: var(--blue);
       }
           .related-products {
      padding: 50px 0px;
    }

    @media(max-width:768px){
          .enquiry-card{
            padding: 20px 0px;
          }
       .enquiry-content {
      padding: 10px 0px;
    }

    .enquiry-content h2 {
      font-size: 20px;
    }

    .enquiry-content p {
      font-size: 12px;
      text-align: justify;
    }

    .enquiry-content ul {
      padding-left: 0px;
    }

    .enquiry-content ul li {
      list-style: none;
      line-height: normal;
      font-size: 12px;
    }
    }
/* enquiry page style end */


/* sub page banner design start */
.sub-page {
  padding: 120px 0px;
  background: linear-gradient(to left, #21225bd0, #000), url(../images/banner/sub-page-banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.sub-page .sub-page-text span {
  font-size: 30px;
  color: #fff;
}

.sub-page .sub-page-text p {
  font-size: 14px;
  color: #fff;
}

@media(max-width:768px) {
  .sub-page {
    padding: 80px;

  }
}
@media(max-width:524px) {
  .sub-page {
    padding: 40px 5px;

  }
  .sub-page .sub-page-text span {
    font-size: 20px;
    color: #fff;
  }
  .sub-page .sub-page-text p {
    font-size: 12px;
    color: #fff;
  }
}
/* sub page banner design end */

.compilance{
  padding: 50px 0px;
}






/* responsive-section */
@media(max-width:768px) {
  .about-us {
    padding: 30px 0px;
  }

  .why-us {
    padding: 30px 0px;
  }
  .contact-us {
    padding: 30px 0px;
  }
  .services {
    padding: 30px 0px;
  }
  .blogs {
    padding: 30px 0px;
  }
  .faq {
    padding: 50px 0px;
  }

  .faq-content {
    padding: 20px 10px;
  } 
  .related-products{
    padding: 30px 0px;
  }
  .enquiry{
    padding: 30px 0px;
  }
  .blog-content{
  padding: 30px 0px;
}
.compilance{
  padding: 30px 0px;
}

}
/* responsive-section */