@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');


/* General Styling */
:root {
  --primary-color: #df6951;
  --primary-color-two: #fd751d;
  --text-color: #000;
  --heading: #2d2d2d;
  --red-dark: #c15134;
  --blue-light: #c15134;
  /* --red-dark: #fd4a18;
  --blue-light: #fd4a18; */
  --blue-dark: #0066ff;
  --purple-blue: #c15134;
  --yellow-dark: #faa200;
  --orange-dark: #fc7561;
  --black-dark: #2d2d2d;
  --light-gray: #f7f8f9;
}

body {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}

p,
span,
div,
a,
li,
ul,
ol,
blockquote,
cite {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}


a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

/* Header */
header .logo {
  font-weight: bold;
  font-size: 30px;
  color: var(--primary-color);
  /* Brand color */
  text-decoration: none;
}

.nav-link {
  color: #333;
}

.header-top-bar .social-link li a {
  color: #333;
}

.nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */

.hero-section {
  overflow: hidden;
  position: relative;
  padding-top: 120px;
}

.hero-section .hero-sub-heading {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
}

.hero-section .hero-heading {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2em;
  margin-top: 10px;
  margin-bottom: 20px;
}

.hero-section .description {
  font-size: 18px;
}

.hero-section .bg-image {
  background-image: url(../assets/images/top\ header\ bg\ image.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: -1;
  right: -49vh;
  top: -10px;
  overflow: hidden;
}

/* Other parts section */

.about-us-section {
  position: relative;
}

/* .about-us-section ul li:before {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: black;
  margin-right: 15px;

} */

/* Comparison Section */

.comparison-section .comparison-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  margin: 10px 0px;
}

.comparison-section .header-container {
  border-radius: 50%;
  text-align: center;
  padding: 10px;
  background-color: #0299c2;
  color: black;
  width: 150px;
  height: 150px;
}

.comparison-section .inner-container {
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  background-color: white;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
}

.comparison-section .comparison-row {
  display: flex;
  justify-content: center;
  background: linear-gradient(to right, #0299c2 50%, #139420 50%);
  padding: 4px;
  border-radius: 8px;
  align-items: center;
  margin: 100px 0px;
}

.comparison-section .comparison-border-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eef5ff;
  padding: 10px 6px;
  border-radius: 8px;
  width: 100%;
  position: relative;
  text-align: center;
}


.comparison-section .center-card {
  font-size: 16px;
  color: white;
  background-color: #3a556a;
  border-radius: 50%;
  height: 160px;
  width: 180px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4),
    inset 0px 4px 4px rgba(0, 0, 0, 0.5);

  /* Centering adjustments */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,
      -50%);
  /* Centers both horizontally and vertically */
  z-index: 1;
  /* Ensures it appears on top */
}

/* Stages Section */

.stages-section .stage-step-container {
  border-radius: 50%;
  width: 230px;
  height: 230px;
}

.stages-section .stage-step-innercontainer {
  background-color: white;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  margin-left: 8px;
  box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 20px 10px;
}

.stages-section .stage-step-innercontainer .step {
  font-size: 14px;
  color: white;
  border-radius: 50%;
  /* padding: 4px; */
  width: 70px;
  height: 70px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stages-section .stage-step-innercontainer .highlight {
  font-weight: bold;
}

.stages-section .stage-step-innercontainer .title {
  margin-top: 4px;
  font-size: 16px;
  font-weight: bold;
  color: black;
}

.stages-section .stage-step-innercontainer .description {
  font-size: 14px;
  color: black;
}

/* Why Choose Us Section */
.why-choose-us-section {
  border-radius: 14px;
  padding: 14px;
  background-image: url(../assets/images/chooseus.jpg);
  background-position: center;
  position: relative;
}

.why-choose-us-section .content {
  position: relative;
  z-index: 2;
}

.why-choose-us-section .section-heading {
  color: rgba(255, 255, 255, 0.663);
}

.why-choose-us-section .section-sub-heading,
.why-choose-us-section .section-description {
  color: rgba(255, 255, 255, 0.901);
}

.why-choose-us-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000c7;
  /* Adjust the color and opacity as needed */
  z-index: 0;
  border-radius: 14px;
}

.why-choose-us-section .section-container {
  border-radius: 20px;
  border: 3px solid rgba(255, 255, 255, 0.901);
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2),
    inset 0px 4px 10px rgba(255, 255, 255, 0.2);
  padding: 8px;
  /* width: 40%; */
  margin: 10px auto;
}

.why-choose-us-section .section-container .count {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.901);
  margin: 4px 0px 0px 0px;
  font-weight: bold;
}

.why-choose-us-section .section-container .title {
  color: rgba(255, 255, 255, 0.901);
  font-size: 16px;
  margin: 4px 0px;
}

.carousel-control-prev,
.carousel-control-next {
  filter: invert(1);
}

/* Footer */
.footer {
  background-color: #f8f9fa;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
  background-color: #191919;
}

.footer:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../assets/images/footer-map.png) no-repeat center;
  background-size: cover;
  z-index: -1;
}

/* .list-style-dot li a {
  margin-left: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #a1a1a1;
  transition: all 0.3s;
} */

/* .list-style-dot li a:before {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  margin-right: 15px;
} */

/* Footer Widget */
.footer-widget .widget h4.widget-title {
  position: relative;
  font-size: 25px;
  margin-bottom: 30px;
}

.footer-widget .widget.about-widget .about-content h4 {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 26px;
  line-height: 37px;
}

.footer-widget .widget.about-widget .about-content .footer-logo {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 26px;
  line-height: 37px;
}

.footer-widget .widget.about-widget .about-content ul li {
  margin-bottom: 13px;
}

.footer-widget .widget.about-widget .about-content ul li span a:hover {
  text-decoration: none;
}

.footer-widget .widget.footer-nav-widget ul li a {
  margin-bottom: 10px;
  color: #fff;
}

.footer-widget .widget.about-widget .about-content ul li i {
  font-size: 18px;
  margin-right: 10px;
}

.footer-widget .widget.about-widget .about-content ul li span {
  font-size: 17px;
}

.footer-widget .widget.recent-post-widget ul.post-widget-list li.post-item {
  display: flex;
  align-items: flex-start;
}

.footer-widget .widget.recent-post-widget ul.post-widget-list li.post-item img {
  flex: 0 0 70px;
  max-width: 70px;
  margin-right: 20px;
}

.footer-widget .widget.recent-post-widget ul.post-widget-list li.post-item {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
}

.footer-widget .widget.recent-post-widget ul.post-widget-list li.post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-widget .widget.recent-post-widget ul.post-widget-list li.post-item .post-title-date {
  margin-top: -3px;
}

.footer-widget .widget.recent-post-widget ul.post-widget-list li.post-item .post-title-date h3.title {
  font-size: 18px;
  line-height: 22px;
}

.footer-widget .widget.recent-post-widget ul.post-widget-list li.post-item .post-title-date span.posted-on {
  font-size: 14px;
  line-height: 15px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer-copyright .social-link li {
  margin-left: 30px;
}

/* ul.social-link li {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
}

ul.social-link li a {
  color: rgba(255, 255, 255, 0.6);
}
 */
/* Footer Default */
.footer {
  color: rgba(255, 255, 255, 0.6);
}

.footer .footer-widget .widget.about-widget .about-content ul li i {
  color: var(--red-dark);
}

.footer .footer-widget .widget.footer-nav-widget ul li a:hover {
  color: var(--red-dark);
}

.footer .footer-widget .widget.about-widget .about-content ul li span a:hover {
  color: var(--red-dark);
}

.footer .footer-widget .widget.about-widget .about-content ul li span a {
  text-decoration: none;
  color: inherit;
}

.footer .footer-widget .widget.footer-nav-widget ul li a:after {
  background-color: var(--red-dark);
}

.footer .footer-widget .widget.about-widget .about-content h4,
.footer .footer-widget .widget h4.widget-title {
  color: #fff;
}

.footer .footer-copyright ul.social-link li a:hover {
  color: var(--red-dark);
}

.footer .footer-widget .widget.footer-nav-widget ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  transition: all 0.3s;
}

.footer .footer-widget .widget.footer-nav-widget ul li a:hover:after {
  width: 100%;
}

/* Proven Path Section */
.proven-path-section {
  padding: 10px 16px;
}

.proven-path-section .proven-container {
  /* flex-direction: column; */
  /* display: flex;
  justify-content: space-around;
  align-items: center; */
  margin-bottom: 18px;
  box-shadow: 0 0 20px #0000001a;
  border-radius: 8px;
  padding: 40px 15px 35px 15px;
  background-color: white;
}

.proven-path-section .proven-container .title {
  font-size: 26px;
  font-weight: 500;
  /* font-weight: bold; */
  color: black;
}

.proven-path-section .proven-container .description {
  font-size: 16px;
  color: black;
}

/* Call to Action Section */
.call-to-action-section .section-container {
  background-color: black;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  /* margin: 20px 0; */
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.call-to-action-section .text {
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
}

.call-to-action-section .custom-btn-primary {
  font-size: 16px;
  padding: 10px 20px;
}

/* Testimonials Section */
.testimonials-section blockquote {
  font-size: 1.25rem;
  color: #333;
  font-style: italic;
}

.testimonials-section cite {
  display: block;
  margin-top: 0.5rem;
  color: #555;
}

/* Common Styles */

.section-heading {
  font-size: 18px;
  color: #5e6282;
  margin: 0px;
}

.section-sub-heading {
  font-size: 36px;
  color: black;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .section-sub-heading {
    font-size: 28px;
  }
}

.section-description {
  font-size: 16px;
  color: black;
}

.custom-btn-primary {
  background-color: var(--primary-color-two);
  color: white;
  padding: 10px;
  margin: 0px;
}

.custom-btn-primary:hover {
  box-shadow: 0px 10px 10px rgba(241, 165, 1, 0.2),
    inset 0px 10px 10px rgba(241, 165, 1, 0.2);
  background-color: #ffae00;
  color: white;
}

/* Utility Classes for Background Colors */
.bg-first {
  background-color: #97af0d;
}

.bg-second {
  background-color: var(--primary-color);
}

.bg-third {
  background-color: #0585a8;
}

.bg-fourth {
  background-color: #35b013;
}

.contact-info-section,
.schedule-page-main-section {
  padding-top: 140px;
}



@media (max-width: 1199px) {


  .footer .contact-wrapper .information-item {
    flex-direction: column;
  }

  .footer .contact-wrapper .information-item .text {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget .widget.about-widget .about-content ul li i {
    font-size: 14px;
    margin-right: 5px;
  }

  .footer-widget .widget.about-widget .about-content ul li span {
    font-size: 14px;
  }

  .list-style-one li {
    font-size: 14px;
  }
}

/* Responsive  */
@media (max-width: 768px) {
  .infoService {
    position: static !important;
  }

  header .logo {
    font-size: 12px;
  }

  .hero-section .hero-sub-heading {
    font-size: 18px;
    /* text-align: center; */
  }

  .hero-section .hero-heading {
    font-size: 34px;
  }

  .hero-section .description {
    font-size: 16px;
  }

  /* .hero-section .custom-btn-primary {
    display: block;
    margin: 20px auto;
    text-align: center;
  } */

  .hero-section .bg-image {
    right: -11vh;
    top: -261px;
  }

  .comparison-section .comparison-row {
    background: linear-gradient(to bottom, #62c7f9 50%, #139420 50%);
    margin: 14px 0px;
  }

  .comparison-section .center-card {
    position: relative;
    left: 0px;
    right: 0px;
    transform: none;
    margin: 4px auto;
  }

  .comparison-section .header-container {
    width: 120px;
    height: 120px;
  }

  .comparison-section .inner-container {
    font-size: 15px;
  }

  .proven-path-section .proven-container {
    margin: 8px 0px;
  }

  .call-to-action-section .section-container {
    flex-direction: column;
  }

  .why-choose-us-section .section-container {
    width: 100%;
    height: 100%;
  }

  .footer-copyright .text,
  .footer-copyright ul.social-link {
    text-align: center;
  }

  .footer-copyright .social-link {
    margin-top: 10px;
  }

  .footer-copyright .social-link li {
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero-section {
    padding-top: 150px;
  }
}

.custom-animate {
  opacity: 1;
  /* Fade in */
  transform: translateX(0);
  /* Move to original position */
  animation: left-to-right 0.4s ease forwards;
  /* Add left-to-right effect */
}

@keyframes left-to-right {
  0% {
    transform: translateX(-40px);
  }

  100% {
    transform: translateX(0px);
  }
}

.infoService {
  position: sticky;
}



/* Breadcrumbs CSS */
.breadcrumbs-wrapper {
  position: relative;
  z-index: 1;
  padding: 165px 0 170px;
  background-repeat: no-repeat;
  background-size: cover;
}

.breadcrumbs-wrapper:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: -1;
}

.breadcrumbs-wrapper .page-title-text h1 {
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
}

.breadcrumbs-wrapper .page-title-text ol.breadcrumbs-link li {
  display: inline-block;
  font-size: 19px;
}


.breadcrumbs-wrapper .page-title-text ol.breadcrumbs-link li:last-child:after {
  display: none;
}

.breadcrumbs-wrapper .page-title-text ol.breadcrumbs-link li a {
  color: #fff;
}



/* Contact Information css */

.contact-information-style-one .information-wrapper {
  background-color: #f8f8f8;
  padding: 80px 90px 10px;
}

.contact-information-style-one .information-wrapper .information-item {
  display: flex;
}

.contact-information-style-one .information-wrapper .information-item .icon {
  margin-right: 25px;
}

.contact-information-style-one .information-wrapper .information-item .icon i {
  font-size: 50px;
  line-height: 1;
  /* color: var(--blue-light); */
}

.contact-information-style-one .information-wrapper .information-item .text h5 {
  margin-bottom: 3px;
}

.contact-information-style-one .information-wrapper .information-item .text p span {
  font-weight: 100;
  color: var(--black-dark);
  margin-right: 10px;
}

.contact-information-style-one .information-cta {
  background-color: #141d38;
  padding: 40px 50px 20px;
  /* border-left: 7px solid var(--blue-light); */
}

.contact-information-style-one .information-cta .information-box h3 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 15px;
}

.contact-information-style-one .information-cta .information-box h5 {
  /* font-family: var(--roboto); */
  font-weight: 400;
  color: #fff;
}

.contact-information-style-one .information-cta .information-box h5.st-close {
  color: #ffb400;
  margin-top: 5px;
}

.contact-information-style-one .information-cta .information-box p {
  color: #fff;
  margin-bottom: 20px;
}

.contact-information-style-one .information-cta .information-box .main-btn {
  padding: 5px 20px;
}

.contact-page-map .map-box iframe {
  height: 600px;
}

/*---=========================
  End Contact css 
=========================---*/



textarea.form_control {
  padding-top: 15px;
}

/* Contact Two css */
/* .contact-style-two .contact-wrapper {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: -80px;
  background-color: rgb(255, 255, 255);
  padding: 70px 0 120px;
} */

.contact-style-two .section-title h2 {
  margin-bottom: 5px;
}

.contact-style-two .section-title h5 {
  color: #6d6d6d;
  font-weight: 500;
}

.contact-style-two .contact-form form .form_control {
  height: 60px;
  background-color: rgba(20, 29, 56, 0.05);
  padding: 0 30px;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 100;
  /* font-family: var(--roboto); */
  transition: all .3s;
  border: none;
  color: #000;
  outline: none;
}

.contact-style-two .contact-form form textarea.form_control {
  padding-top: 15px;
  height: 150px;
}

.contact-style-two .contact-form form .form_control:focus {
  /* background-color: var(--blue-light); */
  /* border: 1px solid var(--blue-light); */
}

.contact-style-two .contact-form form .form_control::placeholder {
  color: #1b1d21;
}

.contact-style-two .contact-form form .main-btn {
  justify-content: center;
}

/* Contact Information css */