@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --blue: #061538;
  --lite-blue: #C7E7FE;
  --red: #E01425;
}





a {
  text-decoration: none;
}

p {
  font-size: 16px;
  margin-bottom: 0px;
  text-align: justify;
}


ul {
  padding: 0px;
  margin: 0;
}

ul li {
  list-style: none;
}



section {
  padding: 50px 0px;
}

@media(max-width: 767px) {
  section {
    padding: 20px 0px;
  }

  p {
    font-size: 12px;
    text-align: justify;
  }
}



/* fixed icon css start */

.fix-icons .whatsapp-icon {
  position: fixed;
  top: 80%;
  right: 2%;
  z-index: 999999;
}

.fix-icons .phone-icon {
  position: fixed;
  top: 80%;
  left: 2%;
  z-index: 999999;
}

.fix-icons .whatsapp-icon a {
  color: #fff;
  font-size: 24px;
  background: #026BAE;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: rgba(0, 195, 255, 0.226) 0px 0px 5px 5px;
}

.fix-icons .phone-icon a {
  color: #fff;
  font-size: 24px;
  background: #026BAE;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: rgba(0, 195, 255, 0.226) 0px 0px 5px 5px;

}

@media screen and (max-width: 767px) {
  .fix-icons .whatsapp-icon a {
    font-size: 16px;
    padding: 6px 10px;
  }

  .fix-icons .phone-icon a {
    font-size: 16px;
    padding: 7px 10px;
  }
}

/* end of fixed icons css */



/* top bar css start */


.topbar {
  background-color: var(--blue);
  padding: 12px;
}

.topbar-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.topbar-email a,
.topbar-no a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-right: 4px;
}

@media(max-width: 1200px) {

  .topbar-email a,
  .topbar-no a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-right: 4px;
  }
}

@media(max-width: 991px) {

  .topbar-email a,
  .topbar-no a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-right: 4px;
  }
}

@media(max-width: 767px) {
  .topbar {
    display: none;
  }
}

/* top bar css end */


/* navbar css start */

.navbar {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: sticky;
  padding: 12px;
}

.navbar-brand img {
  height: 70px;
}

.navbar-nav .nav-item .nav-link {
  color: #000;
  font-weight: 500;
  transition: 0.1s ease-in-out;
  padding: 5px 10px;
  font-size: 16px;
}

.navbar-nav .nav-item .nav-link:hover {
  background-color: var(--blue);
  color: #fff;
  padding: 5px 10px;
}


.nav-soical-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.nav-soical-icon a i {
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 18px;
  padding: 12px 12px;
  border-radius: 50%;
  transition: 0.4s ease-in-out;

}

.nav-soical-icon a i:hover {
  background-color: var(--blue);
  color: #fff;
}


.dropdown-menu .dropdown-item {
  font-weight: 500;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--blue);
  color: #fff;
}



.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 25px !important;
}

.carousel-item img {
  width: 100%;
}





@media(max-width: 1200px) {
  .navbar-brand img {
    height: 50px;
  }

  .navbar-nav .nav-item .nav-link {
    color: #000;
    font-weight: 500;
    transition: 0.1s ease-in-out;
    padding: 5px 10px;
    font-size: 14px;
  }

  .nav-soical-icon a i {
    border: 1px solid var(--blue);
    color: var(--blue);
    font-size: 16px;
    padding: 5px;
    border-radius: 50%;
    transition: 0.4s ease-in-out;

  }
}



@media(max-width: 767px) {
  .navbar-brand img {
    height: 40px;
  }

  .navbar-nav .nav-item .nav-link {
    color: #000;
    font-weight: 500;
    transition: 0.1s ease-in-out;
    padding: 5px 10px;
    font-size: 14px;
  }


  .nav-soical-icon {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 7px;
  }

  .nav-soical-icon a i {
    border: 1px solid var(--blue);
    color: var(--blue);
    font-size: 12px;
    padding: 8px 8px;
    border-radius: 50%;
    transition: 0.4s ease-in-out;

  }

  .px-2 {
    padding-left: 0px !important;
  }

  .navbar-toggler-icon {
    width: 1rem !important;
    height: 1rem !important;
  }

  .navbar-toggler {
    border: 2px solid var(--blue);
  }
}

/* navbar css end */


/* sub-page start */
.sub-page {
  background-color: var(--blue);
  color: #fff;
  display: flex;
  padding: 100px 0px;
}

.sub-page-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.sub-page-name h1 {
  font-size: 30px;
  font-weight: 600;
  /* text-transform: uppercase; */
}

.sub-page-name p a {
  color: #fff;
  font-weight: 600;
}

@media(max-width: 767px) {
  .sub-page {
    background-color: var(--blue);
    color: #fff;
    display: flex;
    padding: 30px 0px;
  }

  .sub-page-name h1 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
  }
}

/* sub-page css end */




/* about css start */

.about-content {
  background: linear-gradient(#1a2039ee), url(../image/about/about-bg-img-powerbank.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 60px;
  padding: 50px 50px;
}

.about-heading {
  color: #fff;
  margin-bottom: 100px;
}

.about-heading h1 {
  font-size: 24px;
  font-weight: 600;
}

.about-heading h2 {
  font-size: 100px;
  font-weight: 600;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  border-top: 4px solid #fff;
}

.about-heading h3 {
  font-size: 18px;
  font-weight: 600;
}


.about-btn a {
  background-color: #fff;
  color: #000;
  padding: 20px 40px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.5s ease-out;
}

.about-btn a:hover {
  background-color: #000;
  color: #fff;
}




.about-paragraph {
  color: #fff;
  margin-bottom: 40px;
}

.about-paragraph h3 {
  background-color: #ffffff;
  color: #000;
  display: inline-block;
  padding: 5px;
  font-size: 40px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 30px;
}

.about-paragraph h3 span {
  font-size: 18px;
}

.about-author {
  text-align: end;
  color: #fff;
}

.about-author h4 {
  font-size: 20px;
  font-weight: 600;
}

.about-author span {
  font-size: 14px;
  font-weight: 500
}

.loan-provid-bank {
  margin-top: 20px;
}

.banner-blew-img img {
  border-radius: 20px;
}



@media(max-width: 767px) {
  .about-content {
    padding: 15px 15px;
    border-radius: 10px;
  }

  .about-heading {
    color: #fff;
    margin-bottom: 30px;
  }

  .about-heading h1 {
    font-size: 16px;
  }

  .about-heading h2 {
    font-size: 30px;
    border-bottom: none;
    border-right: none;
    border-top: none;
  }

  .about-heading h3 {
    font-size: 13px;
  }

  .about-btn a {
    padding: 12px 15px;
    font-size: 13px;
  }

  .about-paragraph h3 {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .about-paragraph h3 span {
    font-size: 13px;
  }

  .about-author h4 {
    font-size: 17px;
    font-weight: 600;
  }

  .about-author span {
    font-size: 12px;
    font-weight: 500
  }

  .about-paragraph {
    color: #fff;
    margin-bottom: 25px;
  }


}

/* about css end */


/* products css start */

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);

}

.section-title h2::before,
.section-title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background-color: var(--blue);
}

.section-title h2::before {
  left: -70px;
}

.section-title h2::after {
  right: -70px;
}

.section-title p {
  font-weight: 600;
  text-align: center;
}

.product-main-card {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 10px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}

.product-post img {
  border-radius: 10px;
  transition: 0.5s ease-out;
}

.product-main-card:hover .product-post img {
  transform: scale(1.04);
  cursor: pointer;
}

.pro-content {
  padding: 20px 10px;
}

.pro-card-name {
  margin-bottom: 15px;
}

.pro-card-name h3 {
  color: var(--blue);
  font-size: 22px;
  /* text-wrap: auto; */
  font-weight: 600;
}

.pro-card-para p {
  color: #000;
}

.pro-card-para {
  margin-bottom: 20px;
}

.pro-card-btn {
  background-color: var(--blue);
  padding: 7px;
  border-radius: 5px;
  font-weight: 500;
}

.pro-card-btn a {
  color: #fff;
  font-size: 15px;
}




@media(max-width: 576px) {

  .section-title h2::before,
  .section-title h2::after {
    width: 30px;
    left: -40px;
    right: -40px;
  }
}







@media(max-width: 991px) {
  .product-card-main {
    margin-bottom: 25px;
  }
}


@media(max-width: 767px) {

  .section-title {
    margin-bottom: 25px;
  }

  .section-title h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
  }

  .section-heading p {
    font-weight: 600;
    font-size: 12px;
  }

  .pro-content {
    padding: 10px 10px;
  }

  .pro-card-name h3 {
    font-size: 17px;
  }

  .pro-card-name {
    margin-bottom: 10px;
  }

  .pro-card-btn {
    padding: 3px;
  }

  .pro-card-btn a {
    font-size: 12px;
  }




}




.pro-list ul li {
  line-height: 2;
}

.pro-list ul li i {
  color: var(--blue);
}

.pro-list ul li a {
  color: #000;
  font-weight: 500;
}

.pro-list ul li a:hover {
  color: var(--blue);
}

@media(max-width: 767px) {

  .pro-list ul li a {
    color: #000;
    font-weight: 500;
    font-size: 12px;
  }

  .pro-list ul li {
    line-height: 1.7;
  }
}

/* products css end */


/* why choose css start */

.why-choose {
  background: url(../image/why/bg-power.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.why-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.why-heading h2 {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  display: inline-block;
}

.why-heading h2 span {
  color: #000;
}

.why-card {
  display: flex;
  gap: 20px;
}

.why-line {
  background-color: #fff;
  height: 1px;
  width: 100%;
  display: inline-block;
}

.why-card img {
  width: 60px;
  height: 60px;

}

.why-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.why-card p {
  color: #fff;
}

.why-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.why-btn1 {
  background-color: #fff;
  color: #000;
  border: 1px solid #bdbaba;
  padding: 15px 70px;
  font-weight: 500;
  font-size: 20px;
  border-radius: 20px;
}

.why-btn1:hover {
  background-color: #1b1b1b;
  border: none;
  color: #fff;
  text-decoration: underline;
}

.why-btn2 {
  background-color: var(--lite-blue);
  color: #000;
  border: 1px solid #bdbaba;
  padding: 15px 70px;
  font-weight: 500;
  font-size: 20px;
  border-radius: 20px;
}

.why-btn2:hover {
  background-color: #fff;
  color: #000;
  text-decoration: underline;
}



@media(max-width: 991px) {}


@media(max-width: 767px) {
  .why-choose {
    background-image: none;
    background: var(--blue) !important;
  }

  .why-card {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .why-card img {
    width: 40px;
    height: 40px;
  }

  .why-heading {
    margin-bottom: 30px;
  }

  .why-heading h2 {
    font-size: 20px;
  }



  .why-btn {
    /* flex-direction: column; */
    margin-top: 15px;
  }






  .why-btn1,
  .why-btn2 {
    padding: 5px 15px;
    font-size: 12px;
  }
}

/* why chosse css end */


/* choose us start */
.choose-card {
  border: 2px dotted var(--blue);
  padding: 10px;
  text-align: center;
}

.choose-icon {
  margin-bottom: 20px;
}

.choose-icon img {
  width: 80px;
  height: 80px;
}

.choose-name h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.choose-name p {
  text-align: center;
}

@media(max-width: 991px) {
  .choose-card {
    margin-bottom: 15px;
  }
}

@media(max-width: 767px) {
  .choose-card {
    margin-bottom: 15px;
  }

  .choose-name h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
  }
}

/* end */


/* blogs css start */

.blogs-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 10px;
  border-radius: 20px;
  overflow: hidden;
}

.blog-post img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.blogs-content {
  padding: 15px;
}

.blog-post {
  margin-bottom: 13px;
}

.blog-date {
  margin-bottom: 13px;
}

.blog-date span {
  font-size: 14px;
  font-weight: 500;
  color: #868585;
}

.blog-name {
  margin-bottom: 15px;
}

.blog-name h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
}

.blog-name h3:hover {
  color: var(--blue);
  cursor: pointer;
}

.blog-para {
  margin-bottom: 20px;
}

.blog-btn a {
  background-color: var(--blue);
  color: #fff;
  font-weight: 600;
  padding: 8px 15px;
  transition: 0.5s ease-out;
  border-radius: 15px;
  font-size: 14px;
}

.blog-btn a:hover {
  background-color: var(--blue);
  color: #fff;
}


@media(max-width: 767px) {
  .blog-date {
    margin-bottom: 9px;
  }

  .blog-date span {
    font-size: 12px;
  }

  .blog-name {
    margin-bottom: 11px;
  }

  .blog-name h3 {
    font-size: 17px;
  }

  .blog-para p {
    font-size: 12px;
  }

  .blog-btn a {
    padding: 7px 10px;
    font-size: 12px;
  }
}

/* blogs css end */


/* blog detail css start */
.blog-detail-post {
  margin-bottom: 20px;
}

.name-blog-detail h2 {
  font-size: 29px;
  font-weight: 600;
}

.related-blog {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 5px;
  border-bottom: 1px solid #000;
  margin-bottom: 15px;
}

.related-blog a {
  text-decoration: none;


}

.related-blog .realted-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;

}

.related-blog .realted-img img {
  height: 100%;
  width: 100%;
}

.related-blog .related-blog-content {
  padding: 5px 5px 5px 0px;
}

.related-blog .related-blog-content h2 {
  font-size: 16px;
  color: #000;
}

.related-blog .related-blog-content p {
  color: #000;
}



@media(max-width: 767px) {
  .name-blog-detail h2 {
    font-size: 20px;
  }

  .detail-blog {
    margin-bottom: 25px;
  }
}

/* blog detail css end */




/* mission css start */
.mission-vision-section {
  position: relative;
  padding: 100px 0;
  background: #f8f9fc;
  overflow: hidden;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #272f7f;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #272f7f, #8dc6ff);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header p {
  color: #555;
  font-size: 16px;
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mv-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mv-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #272f7f, #8dc6ff);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #272f7f, #8dc6ff);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(39, 47, 127, 0.3);
}

.mv-card:hover .mv-icon {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(39, 47, 127, 0.4);
}

.mv-card h3 {
  font-size: 22px;
  color: #272f7f;
  font-weight: 600;
  margin-bottom: 15px;
}

.mv-card p {
  color: #555;
  line-height: 1.8;
  /* font-size: 15px; */
}

.floating-shape {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(199, 231, 254, 0.4), transparent);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .mv-card {
    margin-top: 20px;
  }

  .section-header h2 {
    font-size: 18px;
  }

  .mv-icon {
    width: 70px;
    height: 70px;
    font-size: 26px;
  }

  .mv-card h3 {
    font-size: 18px;
  }

  .section-header p {
    font-size: 12px;
  }
}

/* mission css end */



/* contact css start */
.contact-section {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: #f7f7f7;
}

.contact-heading {
  margin-bottom: 25px;
}

.contact-heading h2 {
  font-size: 19px;
  font-weight: 600;
  color: var(--blue);
}

.contact-heading h3 {
  font-size: 40px;
  font-weight: 600;

}

.contact-para {
  margin-bottom: 25px;
}

.contact-para p {
  font-weight: 500;
  color: #807f7f;
}

.contact-icon-add {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-icon span i {
  background-color: var(--blue);
  color: #fff;
  padding: 15px;
  font-size: 20px;
  border-radius: 7px;
}

.icon-add h3 {
  font-size: 18px;
  font-weight: 600;
}

.icon-add p {
  font-weight: 500;
  color: #807f7f;
}


.navbar-form {
  background-color: var(--blue);
  padding: 40px;
}


.contact-form {
  background-color: #fff;
  padding: 40px;
  /* border-radius: 30px; */
}

.cont-btn {
  background-color: var(--blue);
  color: #fff;
  font-weight: 600;
}

.cont-btn:hover {
  background-color: var(--blue);
  color: #fff;
}


.map-power-bank iframe {
  width: 100%;
  height: 450px;
}




.cont-div {
  background-color: var(--blue);
  padding: 30px;
}

.massage-main {
  display: flex;
  gap: 30px;
  align-items: center;
  color: #fff;
}

.msg-icon img {
  width: 80px;
}

.msg-name h2 {
  font-size: 30px;
  font-weight: 600;
}

.msg-name h3 {
  font-size: 16px;
  font-weight: 600;
}

.msg-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.msg-btn a {
  background-color: #fff;
  padding: 15px 40px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  transition: 0.5s ease-out;
}

.msg-btn a:hover {
  background: none;
  border: 2px solid #fff;
  color: #fff;
}




@media(max-width: 767px) {
  .contact-heading {
    margin-bottom: 15px;
  }


  .contact-heading h3 {
    font-size: 24px;
    font-weight: 600;

  }

  .contact-para p {
    font-size: 12px;
    color: #807f7f;
  }

  .icon-add p {
    font-size: 12px;
  }

  .navbar-form {
    background-color: var(--blue);
    padding: 10px;
  }

  .contact-form {
    padding: 10px;
  }

  .map-power-bank iframe {
    width: 100%;
    height: 200px;
  }


  .massage-main {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
  }

  .msg-icon img {
    width: 60px;
  }

  .cont-div {
    background-color: var(--blue);
    padding: 13px;
  }

  .msg-name h2 {
    font-size: 23px;
  }

  .msg-name h3 {
    font-size: 13px;
  }

  .msg-btn a {
    padding: 10px 30px;
  }
}



/* captcha start */
.captchasep1 {
  display: flex;
}

.captchasep1 input {
  width: 100% !important;
  margin-top: 0 !important;
  height: 36px;
  font-size: 14px;
}

.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;
  font-weight: bolder !important;
}

.captchasep1 .captcha-codes-sec p {
  margin-bottom: 0;
  letter-spacing: 9px;
  font-style: italic;
  font-size: 14px;
  padding: 5px;
  height: 100%;
  /* color: #fff; */
  font-weight: bolder !important;
}

@media (max-width: 768px) {
  .captchasep1 .captcha-codes-sec p {
    font-size: 24px;
  }

  .captchasep1 {
    margin-bottom: 10px;
  }
}

@media (max-width: 992px) {
  .captchasep1 .captcha-codes-sec p {
    font-size: 18px;
  }
}

.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: 3px;
  border-radius: 6px;
}

@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;
  }
}

/* contact css end */





/* enq page css start */
.enq-post {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;

}

.enq-post img {
  border-radius: 5px;
}

.enq-detail {
  margin-bottom: 20px;
}

.enq-detail h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.enq-detail ul {
  padding-left: 10px;
}

.enq-detail ul li {
  list-style: disc;
}

.enq-btn button {
  background-color: var(--blue);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.enq-form-btn {
  background-color: var(--blue);
  color: #fff;
}

.enq-form-btn:hover {
  background-color: var(--blue);
  color: #fff;
}


@media(max-width: 767px) {
  .enq-detail ul li {
    font-size: 12px;
    line-height: 2;
  }

  .enq-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .enq-post img {
    margin-bottom: 12px;
  }

}

/* enquire page css end */



/* our client section start here */
.client-card {
  border: 1px solid var(--blue);
  text-align: center;
  padding: 5px;
  margin-bottom: 10px;
}

.client-card img {
  transition: transform 0.3s ease;
}

.client-card:hover img {
  transform: scale(1.04);
}

/* our client section end here */



/* faq-section style start */


.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(../image/logo/plus-faq.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: 600;
  color: var(--blue);
}

@media(max-width: 767px) {
  .faq-content {
    padding: 0px;
  }

  .accordion-item p {
    font-size: 14px;
  }
}



/* faq-section style end */


/* Testimonial Section */
.testimonial-section {
  background: #f8faff;
  position: relative;
}



.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 5px solid #272f7f;
  height: 100%;
  min-height: 370px;
  max-height: 370px;
  margin: 10px;
}

.testimonial-card:hover {
  box-shadow: 0 10px 25px rgba(39, 47, 127, 0.2);
}

.testimonial-content p {
  color: #444;
  font-size: 14px;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  margin-top: 20px;
  border-top: 1px dashed #ddd;
  padding-top: 15px;
}

.testimonial-author h5 {
  color: #272f7f;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-author span {
  font-size: 14px;
  color: #777;
}

@media (max-width: 767px) {
  .section-heading h2 {
    font-size: 26px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-content p {
    font-size: 14px;
  }
}

/* testimonail css end */




/* success style start */
.success-form {
  padding: 50px 0;
}

.success-form .success-head {
  text-align: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 50px 10px;
}

.success-form .success-head i {
  color: #87bd48;
  font-size: 100px;
  border: 10px solid #87bd48;
  border-radius: 50%;
  padding: 15px 22px;
}

.success-form .success-head h1 {
  color: #155391;
  margin: 13px 0 0;
}

.success-form .success-head p {
  margin-bottom: 28px !important;
}

.success-form .success-head a {
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
}

/*success style end */





/* footer css start */
.footer {
  background-color: #111111;
  padding: 100px 0px;
  color: #8a8989;

}

.footer-heading {
  margin-bottom: 20px;
}

.footer-heading h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.footer-cont-add h3 {
  font-size: 18px;
  font-weight: 600;
  color: #8a8989;
}

.footer-cont-add p {
  color: #8a8989;
}

.footer-cont-list {
  margin-bottom: 25px;
}

.footer-cont-list p,
a {
  color: #8a8989;

}

.footer-cont-list p {
  border-bottom: dotted;
  display: inline-block;
  line-height: 2;
}

.footer-icon {
  display: flex;
  gap: 15px;
}

.footer-icon a {
  background-color: #fff;
  color: #000;
  padding: 10px 15px;
  border-radius: 50%;
}

.footer-icon a:hover {
  background-color: var(--blue);
  color: #fff;
}

.links-ul li a {
  line-height: 2;
}

.links-ul li a i {
  padding-right: 4px;
}

.links-ul li a:hover {
  color: var(--lite-blue);
}

.footer-para p {
  line-height: 1.8;
}

@media(max-width: 991px) {
  .footer-div {
    margin: 0px !important;
    margin-bottom: 20px !important;
  }
}

@media(max-width: 767px) {
  .footer {
    padding: 40px 0px;
  }

  .footer-heading {
    margin-bottom: 0px;
  }

  .footer-heading h2 {
    font-size: 18px;
  }

  .footer-cont-add h3 {
    font-size: 14px;
  }

  .footer-icon a {
    padding: 5px 10px;
  }

  .footer-div {
    margin: 0px !important;
    margin-bottom: 20px !important;
  }

  .links-ul li a {
    line-height: 1.5;
    font-size: 12px;
  }
}


/* copyright */
.copyright-section {
  background-color: #141414;
  padding: 20px;
}

.main-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.right-side p,
.left-side p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0px;
}

.left-side p a {
  text-decoration: none;
  color: var(--lite-blue);
}

@media (max-width: 767px) {
  .copyright-section {
    background-color: #141414;
    padding: 0px;
  }

  .footer-line {
    margin-bottom: 10px;
  }

  .main-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .right-side p {
    text-align: center;
  }

  .logo-icon {
    margin-bottom: 20px;
  }

  .right-side p,
  .left-side p {
    color: #fff;
    font-size: 12px;
    margin-bottom: 0px;
  }
}

/* footer css end */