/* ====== Colors ====== */
:root {
  --primary-color: #30b3fc;
  --Secondary-color: #d145b5;
  --dark: #000000;
  --white: #fff;
  --grey: #808080;
  --bg-color: #e3f1f8;
}

/* ====== Font ====== */
* {
  font-family: "Poppins", sans-serif;
}

a {
  color: var(--primary-color);
}

::selection {
  background-color: var(--primary-color);
  color: var(--dark);
}

a:hover {
  text-decoration: none;
}

/* ====== header-section-start ====== */

/*========== menu bar =========*/

.header-section .menu-bar {
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.096);
}

.header-section .is-sticky-menu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 3px;
  animation: slideInDown 0.5s ease-in;
  padding: 10px 0;
  background-color: var(--white);
  padding: 0;
}

.header-section .navbar-brand img {
  width: 100px;
  height: auto;
}

.header-section .menu-bar .nav-link {
  margin: 0px 5px;
  text-transform: capitalize;
  color: var(--dark);
  font-weight: 500;
  font-size: 16px;
  position: relative;
}

.header-section .nav-link::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background-color: var(--primary-color);
  transition: 1.5s;
  bottom: 0;
  left: 50%;
  right: 0;
}

.header-section .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.header-section .dropdown-menu {
  background-color: var(--white);
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  padding-top: 15px;
  display: none;
  border: 1px solid white;
  overflow: hidden;
  border: 0;
}

.header-section .dropdown:hover .dropdown-menu {
  display: block;
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.103);
}

.header-section .sibar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
}

.header-section .dropdown-menu .dropdown-item {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.header-section .dropdown i {
  transition: 0.6s;
}

.header-section .dropdown:hover i {
  transform: rotate(180deg);
  transition: 0.6s;
}

.header-section .dropdown-menu .dropdown-item:hover {
  color: var(--white);
  background-color: var(--primary-color);
  animation-duration: 2s;
}

.header-section .navbar-toggler {
  background-color: var(--dark);
  color: var(--white);
  margin: 0px;
  line-height: 28px;
  border-radius: 5px;
  border: none;
  padding: 2px 10px;
  border: 1px solid white;
}

.header-section .offcanvas-header {
  background-color: var(--primary-color);
}

.header-section .navbar-toggler:focus {
  box-shadow: none;
}

.header-section .sibar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
  font-size: 16px;
  padding: 3px 8px;
}

.header-section .nav-link:hover:after {
  width: 100%;
  transition: 0.5s;
  left: 0;
}

.header-section .nav-link:hover {
  color: var(--primary-color);
  transition: 0.5s;
}

.header-section .conatact-btn {
  color: var(--white);
  text-decoration: none;
  background-color: var(--primary-color);
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: ease-in-out 0.5s;
  margin: 0px 10px;
}

.header-section .conatact-btn:hover {
  background-color: var(--Secondary-color);
  color: var(--white);
  transition: ease-in-out 0.5s;
}

.header-section .conatact-link {
  color: var(--white);
  background-color: var(--dark);
  padding: 4px 10px;
  border-radius: 5px;
  display: none;
  margin-left: 10px;
  border: 1px solid white;
}

.header-section .offcanvas-header .btn-close {
  color: var(--white);
  opacity: 1;
  background-image: none;
  line-height: 10px;
  border-radius: 5px;
  border: none;
  border: 1px solid white;
  font-size: 16px;
  padding: 6px 8px;
  background-color: var(--dark);
}

/* ====== header-section-end ====== */

/* ====== hero-section-start ====== */

.hero-section {
  padding: 90px 0px;
  position: relative;
  background-color: #0082be1c;
  overflow: hidden;
}

.hero-section .hero-caption {
  margin: 10px 0px 25px 0px;
}

.hero-section .hero-caption h1 {
  font-size: 40px;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
}

.hero-section .hero-caption h1 img {
  width: 200px;
  height: 50px;
  object-fit: contain;
}

.hero-section .hero-caption p {
  font-size: 16px;
  color: var(--dark);
  font-weight: 400;
  margin: 20px 0px;
  text-align: justify;
}

.hero-section .hero-image {
  position: relative;
}

.hero-section .hero-image img {
  height: 500px;
}

.hero-section .hero-caption .contact-btn {
  margin-top: 40px;
}

.hero-section .hero-caption .contact-btn a {
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
  margin: 30px 0px;
  background-color: var(--primary-color);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.5s;
}

.hero-section .hero-caption .contact-btn a:hover {
  background-color: var(--Secondary-color);
  transition: 0.5s;
}

/* ====== hero-section-end ====== */

.about-section {
  padding: 90px 0px;
  background-color: var(--white);
}

.about-section .about-caption,
.about-section .about-image {
  margin-bottom: 25px;
}

.about-section .about-caption .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--Secondary-color);
  position: relative;
}

.about-section .about-caption .title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 3px;
  background-color: var(--Secondary-color);
  width: 50px;
}

.about-section .about-caption h2 img {
  width: 200px;
  height: 50px;
  object-fit: contain;
}

.about-section .about-caption h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
  color: var(--dark);
}

.about-section .about-caption p {
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0px;
  color: var(--dark);
}

.about-section .about-caption .learn-btn {
  margin-top: 40px;
}

.about-section .about-caption .learn-btn a {
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
  margin: 30px 0px;
  background-color: var(--primary-color);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.5s;
}

.about-section .about-caption .learn-btn a:hover {
  transition: 0.5s;
  background-color: var(--Secondary-color);
}

/* ====== service-section-start ====== */

.service-section {
  padding: 90px 0px;
  background-color: var(--bg-color);
}

.service-section .section-title {
  margin: 0px 100px 45px 100px;
  text-align: center;
}

.service-section .section-title .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--Secondary-color);
  position: relative;
}

.service-section .section-title .title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 3px;
  background-color: var(--Secondary-color);
  width: 70px;
}

.service-section .section-title h2 span {
  font-size: 30px;
  font-weight: 700;
}

.service-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
  color: var(--dark);
}

.about-section .about-caption p {
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0px;
  color: var(--dark);
  text-align: justify;
}

.service-section .section-title p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  margin-top: 20px;
}

.service-section .container {
  display: flex;
  gap: 25px; /* Optional spacing */
  flex-wrap: wrap; /* Makes it responsive */
  padding: 10px;
}

.service-section .service-item {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.8s;
  padding: 40px 20px;
  background-color: var(--white);
  position: relative;
  z-index: 1;
  transition: 0.5s;
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.service-section .service-item:hover {
  transform: translateY(-10px);
  transition: 0.5s;
}

.service-section .service-item::before {
  position: absolute;
  content: "";
  border-radius: 10px;
  inset: 0;
  background-color: var(--primary-color);
  z-index: -1;
  opacity: 0;
  transition: 0.8s;
  transform: translateY(100%);
}

.service-section .service-item:hover::before {
  opacity: 1;
  transition: 0.5s;
  transform: translateY(0);
}

.service-section .service-item:hover h3 {
  color: var(--white);
  transition: 1s;
}

.service-section .service-item .service-image {
  padding: 0px 10px 20px 10px;
  height: 80px;
  width: 80px;
  border-radius: 10px;
  background-color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
}

.service-section .service-item:hover .service-image {
  background-color: var(--white);
  transition: 0.5s;
}

.service-section .service-item .service-image img {
  margin-top: 10px;
}

.service-section .service-content {
  margin: 5px 0px;
}

.service-section .service-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-section .service-item p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
}

/* ====== service-section-end ====== */

/* ====== how-we-work-start ====== */

.how-we-work {
  padding: 90px 0px;
  background-color: var(--white);
}

.how-we-work .howwe-work-image,
.how-we-work .howwe-work-content {
  margin-bottom: 25px;
}

.how-we-work .howwe-work-content .section-title .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--Secondary-color);
  position: relative;
}

.how-we-work .howwe-work-content .section-title .title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 3px;
  background-color: var(--Secondary-color);
  width: 70px;
}

.how-we-work .howwe-work-content .section-title h2 span {
  font-size: 30px;
  font-weight: 700;
}

.how-we-work .howwe-work-content .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
  color: var(--dark);
}

.how-we-work .howwe-work-content p {
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0px;
  color: var(--dark);
}

.how-we-work .howwe-work-content p span {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

/* ====== how-we-work-end ====== */

/* ====work-process-section-start=====*/

.work-process-section {
  background-color: var(--bg-color);
  padding: 90px 0px;
}

.work-process-section .section-title {
  margin: 0px 100px 45px 100px;
  text-align: center;
}

.work-process-section .section-title .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--Secondary-color);
  position: relative;
}

.work-process-section .section-title .title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 3px;
  background-color: var(--Secondary-color);
  width: 70px;
}

.work-process-section .section-title h2 span {
  font-size: 30px;
  font-weight: 700;
}

.work-process-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
  color: var(--dark);
}

.work-process-section .about-caption p {
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0px;
  color: var(--dark);
}

.work-process-section .section-title p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  margin-top: 20px;
}

.work-process-section .arrow-image {
  margin-bottom: 30px;
}

.work-process-section .work-process span {
  text-align: center;
  background-color: var(--white);
  color: var(--dark);
  height: 50px;
  padding: 5px 15px;
  width: 100%;
  border-radius: 40px;
  border: 1px solid var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  transition: 0.5s;
}

.work-process-section .work-process:hover span {
  background-color: var(--primary-color);
  color: var(--white);
  transition: 0.5s;
}

.work-process-section .work-process {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
  background-color: var(--white);
  transition: 0.5s;
  margin-bottom: 25px;
  height: 520px;
  max-height: auto;
}

.work-process-section .work-process:hover {
  transform: translateY(-10px);
  transition: 0.5s;
}

.work-process-section .work-process:hover .work-process-image {
  transform: translateY(-10px);
  transition: 0.5s;
}

.work-process-section .work-process .work-process-image {
  margin: 30px auto;
  background-color: var(--dark);
  height: 100px;
  width: 100px;
  text-align: center;
  border-radius: 50%;
  transition: 0.5s;
}

.work-process-section .work-process .work-process-image img {
  margin-top: 20px;
}

.work-process-section .work-process .work-process-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}

.work-process-section .work-process .work-process-content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey);
  text-align: center;
}

/* ====== work-process-section-end ====== */

/* ====== why-choose-section-start ====== */

.why-choose-section {
  padding: 90px 0px;
  background-color: var(--white);
}

.why-choose-section .why-choose-image,
.why-choose-section .why-choose-content {
  margin-bottom: 25px;
}

.why-choose-section .why-choose-content .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--Secondary-color);
  position: relative;
}

.why-choose-section .why-choose-content .title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 3px;
  background-color: var(--Secondary-color);
  width: 70px;
}

.why-choose-section .why-choose-content h2 span {
  font-size: 30px;
  font-weight: 700;
}

.why-choose-section .why-choose-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
  color: var(--dark);
}

.why-choose-section .why-choose-content p {
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0px;
  color: var(--dark);
}

.why-choose-section .why-choose-content span {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.why-choose-section .why-choose-content img {
  background-color: var(--primary-color);
  padding: 5px;
  height: 50px;
  width: 50px;
  margin-right: 10px;
  border-radius: 5px;
}

.why-choose-section .why-choose-points {
  display: flex;
  justify-content: space-between;
}

/* ====== why-choose-section-end ====== */

/* ====our-nextwork-section-start=====*/

.our-nextwork-section {
  padding: 45px 0px;
  background: url(../images/network-bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.our-nextwork-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.87);
  z-index: -1;
}

.our-nextwork-section .section-title {
  text-align: center;
  margin: 0px 200px 45px 200px;
}

.our-nextwork-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-color);
}

.our-nextwork-section .section-title p {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-top: 20px;
}

.our-nextwork-section .our-network {
  padding: 20px;
}

.our-nextwork-section .our-network span {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
}

.our-nextwork-section .our-network p {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

/* ====our-nextwork-section-end=====*/

/* ===== testimonial-section-start ===== */

.testimonial-section {
  padding: 90px 0px;
  background-color: var(--bg-color);
  overflow: hidden;
}

.testimonial-section .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.testimonial-section .section-title .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--Secondary-color);
  position: relative;
}

.testimonial-section .section-title .title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 3px;
  background-color: var(--Secondary-color);
  width: 70px;
}

.testimonial-section .section-title h2 span {
  font-size: 30px;
  font-weight: 700;
}

.testimonial-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
  color: var(--dark);
}

.testimonial-section .testimonial-item {
  background-color: var(--white);
  margin-bottom: 25px;
  padding: 25px 20px;
  border-radius: 10px;
  height: auto;
  max-height: 400px;
}

.testimonial-section .slide-item {
  margin: 0px 15px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: relative;
  transition: 0.5s;
}

.testimonial-section .slide-item:hover {
  transform: translateY(-10px);
  transition: 0.5s;
}

.testimonial-section .testimonial-item img {
  height: 60px;
  width: 60px;
}

.testimonial-section .testimonial-item p {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey);
  margin: 0;
}

.testimonial-section .testimonial-item i {
  font-size: 26px;
  color: #30b5fcbe;
  margin: 0px 10px;
}

.testimonial-section .testimonial-item .testimonial-content h2 {
  font-size: 18px;
  color: var(--dark);
  font-weight: 600;
}

.testimonial-section .testimonial-content .rating {
  display: flex;
  list-style: none;
  justify-content: start;
  padding: 0;
}

.testimonial-section .testimonial-content .rating li i {
  font-size: 16px;
  color: #ffa600;
  margin: 2px;
}

/* ===== testimonial-section-end ===== */

/* ===== footer-section-start ===== */

.footer {
  padding-top: 90px;
  background-color: var(--dark);
}

.footer .footer-item {
  position: relative;
  margin-bottom: 40px;
}

.footer .footer-item img {
  width: 150px;
  object-fit: cover;
}

.footer .footer-item h2 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 0px 15px 0px;
  margin: 0;
  position: relative;
}

.footer .footer-item h3 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  padding-top: 15px;
  margin: 0;
  position: relative;
}

.footer .footer-item h2::before {
  content: "";
  position: absolute;
  bottom: 3px;
  height: 4px;
  width: 50px;
  background-color: var(--Secondary-color);
}

.footer .footer-item p {
  color: #cac8c8;
  font-size: 16px;
  padding: 20px 20px 0px 0px;
  margin: 0;
}

.footer .footer-item .social-icon {
  display: flex;
  list-style: none;
  margin-top: 15px;
}

.footer .footer-item .social-icon li {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: var(--primary-color);
  margin-right: 10px;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  transition: 0.5s;
  border: 1px solid rgba(255, 255, 255, 0.432);
}

.footer .footer-item .social-icon li:hover {
  background-color: var(--primary-color);
  transition: 0.5s;
  transform: translateY(-5px);
}

.footer .footer-item .social-icon li:hover a {
  color: var(--dark);
  transition: 1s;
}

.footer .footer-item .social-icon li a {
  color: var(--white);
  text-decoration: none;
}

.footer .footer-item .about-list {
  list-style: none;
  padding: 0;
}

.footer .footer-item .about-list li {
  margin: 10px 0px;
  font-size: 16px;
  transition: 1s;
}

.footer-item .about-list li:hover {
  transition: 1s;
  padding-left: 5px;
}

.footer .footer-item .about-list li a {
  color: var(--white);
  text-decoration: none;
}

.footer .footer-item .about-list li i {
  color: var(--primary-color);
  padding-right: 5px;
}

.footer .footer-item .service-links {
  list-style: none;
  padding: 0;
}

.footer .footer-item .service-links li {
  margin: 15px 0px;
  font-size: 16px;
  color: var(--white);
  transition: 1s;
}

.footer .footer-item .service-links li:hover {
  padding-left: 5px;
  transition: 1s;
}

.footer .footer-item .service-links li a {
  color: var(--white);
  text-decoration: none;
}

.footer .footer-item .service-links li i {
  color: var(--primary-color);
  padding-right: 5px;
}

.footer .footer-item .contact-list {
  list-style: none;
  padding: 0;
}

.footer .footer-item .contact-list li {
  margin: 15px 0px;
  font-size: 16px;
  color: var(--white);
  transition: 1s;
}

.footer .footer-item .contact-list li:hover {
  padding-left: 5px;
  transition: 1s;
}

.footer .footer-item .contact-list li a {
  color: var(--white);
  text-decoration: none;
}

.footer .footer-item .contact-list li i {
  color: var(--primary-color);
  padding-right: 5px;
}

.footer .footer-main {
  border-top: 1px solid rgba(255, 255, 255, 0.164);
  margin-top: 25px;
}

.footer .copy-right {
  margin-top: 20px;
}

.footer .copy-right p {
  color: var(--white);
  font-size: 14px;
  text-align: center;
  font-weight: 300;
}

.footer .copy-right a {
  color: var(--white);
  font-size: 14px;
  text-align: center;
  font-weight: 300;
  text-decoration: none;
}

.footer .top-button .top {
  background-color: var(--primary-color);
  height: 35px;
  width: 35px;
  border: none;
  border-radius: 8px;
  color: white;
  right: 1em;
  bottom: 0;
  position: fixed;
  font-size: 25px;
  line-height: 36px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  transition: 1s;
}

.footer .top-button .top {
  animation: pulse infinite;
  animation-duration: 1s;
}

.footer .top-button .top:hover {
  background-color: var(--primary-color);
  transition: 1s;
}

.footer .calling-button .call-btn {
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 8px;
  color: white;
  right: 1.1em;
  bottom: 7.3rem;
  position: fixed;
  font-size: 20px;
  line-height: 42px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  transition: 5s;
}

.footer .whatsapp-button .whatsapp-chat {
  background-color: #08bf3f;
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 8px;
  color: white;
  right: 1.1em;
  bottom: 3.5rem;
  position: fixed;
  font-size: 20px;
  line-height: 42px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  transition: ease-in-out 1s;
}

/* ===== footer-section-end===== */

/*===destination-timing-start===*/

.destination-timing {
  padding: 45px 0px;
}

.destination-timing .clock {
  padding: 5px 0 0 0;
  text-align: center;
}

.destination-timing .clock #world-clock {
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.164);
  border-bottom: 1px solid rgba(255, 255, 255, 0.164);
  margin: 0;
}

.destination-timing .clock li {
  display: inline-block;
  margin: 15px 30px 15px 30px;
}

.destination-timing .clock li strong {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
}

.destination-timing .clock li img {
  height: 40px;
  width: 100px;
  object-fit: contain;
  border-radius: 2px;
  margin-bottom: 20px;
}

.destination-timing .clock span {
  font-size: 17px;
  color: var(--white);
}

/*===destination-timing-end===*/

/*===breadcrumb-section-start===*/

.breadcrumb-section {
  padding: 50px 0px;
  position: relative;
  background: url(../images/breadcrumb-bg.jpg);
  background-size: cover;
  background-position: center;
  z-index: 1;
  height: 300px;
  display: flex;
  align-items: center;
}

.breadcrumb-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-color: #00070a44;
  z-index: -1;
}

.breadcrumb-section .breadcrumb-heading h2 {
  font-size: 30px;
  color: var(--white);
  font-weight: 600;
  z-index: 1;
  margin: 0;
  text-align: center;
}

.breadcrumb-section .breadcrumb {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.breadcrumb-section .breadcrumb li {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  z-index: 1;
  padding: 5px 10px;
}

.breadcrumb-section .breadcrumb li a {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
}

.breadcrumb-section .breadcrumb li a:hover {
  color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
}

.breadcrumb-section .breadcrumb-box {
  background-color: #30b5fcd3;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
}

/*===breadcrumb-section-end===*/

/*===vision-mission-section-start===*/

.vision-mission {
  padding: 90px 0px;
  background-color: var(--bg-color);
}

.vision-mission .our-mission,
.vision-mission .our-vision,
.vision-mission .our-values {
  margin-bottom: 25px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
  border-radius: 10px;
  transition: 0.5s;
  background-color: var(--white);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.vision-mission .our-mission::before,
.vision-mission .our-vision::before,
.vision-mission .our-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary-color);
  transform: translateY(-100%);
  transition: 0.5s;
  z-index: -1;
}

.vision-mission .our-mission:hover::before,
.vision-mission .our-vision:hover::before,
.vision-mission .our-values:hover::before {
  background-color: var(--primary-color);
  transform: translateY(0);
  transition: 0.5s;
}

.vision-mission .our-mission:hover p,
.vision-mission .our-vision:hover p,
.vision-mission .our-values:hover p {
  color: var(--white);
  transition: 0.5s;
}

.vision-mission .our-mission h3,
.vision-mission .our-vision h3,
.vision-mission .our-values h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--dark);
  font-weight: 600;
}

.vision-mission .our-mission .icon,
.vision-mission .our-vision .icon,
.vision-mission .our-values .icon {
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  height: 80px;
  width: 80px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 1px solid var(--dark);
}

.vision-mission .our-mission .icon img,
.vision-mission .our-vision .icon img,
.vision-mission .our-values .icon img {
  margin-top: 6px;
}

.vision-mission .our-mission p,
.vision-mission .our-vision p,
.vision-mission .our-values p {
  text-align: justify;
}

/*===vision-mission-section-end===*/

.about-work-process {
  background-color: var(--white);
}

/* services-features-section-start */

.service-features {
  padding: 90px 0px;
  background-color: var(--white);
}

.service-features .service-features-item {
  margin-bottom: 25px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
  border-radius: 10px;
  transition: 0.5s;
  background-color: var(--bg-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-features .service-features-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary-color);
  transform: translateY(-100%);
  transition: 0.5s;
  z-index: -1;
}

.service-features .service-features-item:hover::before {
  background-color: var(--primary-color);
  transform: translateY(0);
  transition: 0.5s;
}

.service-features .service-features-item:hover p {
  color: var(--white);
  transition: 0.5s;
}

.service-features .service-features-item h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--dark);
  font-weight: 600;
}

.service-features .service-features-item .icon {
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  height: 80px;
  width: 80px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 1px solid var(--dark);
}

.service-features .service-features-item .icon img {
  margin-top: 6px;
}

/* ===services-features-section-end=== */

/*===local-charges-section-start===*/

.local-charges table {
  width: 100%;
  border-collapse: collapse;
  margin: 0px 0 40px 0;
  text-align: center;
  font-size: 18px;
  overflow-x: auto;
  border: 1px solid var(--grey);
}

.local-charges thead th {
  background-color: var(--primary-color);
  color: var(--white);
}

.local-charges th,
td {
  border: 1px solid #ddd;
  padding: 8px;
}

.local-charges {
  background-color: var(--bg-color);
  padding: 90px 0px;
}

.local-charges label {
  display: block;
  font-size: 14px;
  text-align: left;
  color: var(--dark);
  font-weight: bold;
}
.local-charges label span {
  color: red;
}

.local-charges .nav-pills li a {
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  transition: 0.3s;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

.local-charges .nav-pills li a.active {
  background-color: #317cbf;
  color: #fff;
}

/* .local-charges .nav-pills li a:hover,
.local-charges .nav-pills li a:focus {
  text-decoration: none;
} */

.local-charges .nav-pills li {
  margin: 0 15px;
}

.local-charges select {
  border: 1px solid #ced4da;
  height: 35px;
  padding: 5px;
  font-size: 12px;
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}
.local-charges .tab-content {
  margin-top: 40px;
  padding: 30px;
  background-color: var(--white);
  border-radius: 6px;
}
.local-charges table {
  text-align: left;
  font-size: 9px !important;
}

.local-charges .custom-bold {
  font-weight: bold;
}

/*===local-charges-section-end===*/

/*===conatact-section-start===*/

.conatact-section {
  padding: 90px 0px;
  background-color: var(--white);
}

.conatact-section .section-title {
  margin: 0px 100px 45px 100px;
  text-align: center;
}

.conatact-section .section-title .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--Secondary-color);
  position: relative;
}

.conatact-section .section-title .title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 3px;
  background-color: var(--Secondary-color);
  width: 70px;
}

.conatact-section .section-title h2 span {
  font-size: 30px;
  font-weight: 700;
}

.conatact-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
  color: var(--dark);
}

.conatact-section .contact-item {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px;
  margin-bottom: 25px;
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
}

.conatact-section .contact-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.conatact-section .contact-item .icon {
  height: 70px;
  width: 70px;
  background-color: var(--primary-color);
  text-align: center;
  border-radius: 50%;
}

.conatact-section .contact-item i {
  font-size: 30px;
  color: var(--dark);
  line-height: 70px;
}

.conatact-section .contact-item p,
.conatact-section .contact-item a {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  margin: 0;
}

.conatact-section .map iframe {
  width: 100%;
}

/*===conatact-section-end===*/

/*Loading Screen*/
