/**
* Template Name: BizPage
* Template URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Manrope",  system-ui, -apple-system, "Segoe UI", Manrope, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #666666; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #232323; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1084d0; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #1084d0; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #666666; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1084d0; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
  --call-to-action: #1084d0;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  font-family: "Manrope", sans-serif;
  color: var(--default-color);
  background-color: var(--background-color);
  user-select: none;
}
::-webkit-scrollbar {
  width: 6px;   /* vertical scrollbar */
  height: 6px;  /* horizontal scrollbar */
}

/* Thumb */
::-webkit-scrollbar-thumb {
  background: #0a9be2;
  border-radius: 10px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 18px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .container-fluid {
  padding: 0 50px;
}

.header .logo {
  line-height: 1;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.header .logo:focus-visible {
  border: none;
  outline: none;
}

.header .logo img {
  max-height: 52px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 8px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.quote_text {
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 16px 26px 18px;
  border-radius: 40px;
}
.quote_text:hover {
  color: #fff;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.9);
  animation: sticky 1s;
}

@keyframes sticky {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.Get_a_quote_btn {
  margin-left: 30px;
}
.navmenu .quote_text {
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 40px;
}
.navmenu .quote_text:focus {
  padding: 12px 24px;
  transition: none;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  position: relative;
  background-color: var(--background-color);
}

.footer-section-obj1 {
    position: absolute;
    bottom: 0px;
    width: 430px;
    left: -55px;
    opacity: 0.12;
    z-index: 0;
    animation: float-obj-y infinite 3s;
}

@keyframes float-obj-y {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-20px);
  }  
}

.footer .footer-top {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 20px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-color);
  color: #8A8C94;
}
.footer .footer-about p > i {
  margin-right: 10px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  margin-bottom: 30px;
  position: relative;
}
.footer h4::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: -15px;
  width: 58px;
  height: 4px;
  background: #1b6bbe;
  border-radius: 6px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  display: flex;
  align-items: center;
}
.footer .footer-links ul li + li {
  margin-top: 22px;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
  color: #8A8C94;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .copyright ul {
  padding-left: 0;
  margin: 0;
}
.footer .copyright ul li {
  display: inline-block;
  position: relative;
}
.footer .copyright ul li a {
  color: #8A8C94;
}
.footer .copyright ul li + li {
  padding-left: 10px;
  margin-left: 10px;
}
.footer .copyright ul li + li::before {
  position: absolute;
  content: "|";
  left: -4px;
  top: 0;
  color: #8A8C94;
}
.footer .copyright p {
  color: #8A8C94;
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  transition: all 0.4s;
}
.scroll-top.bottomTop {
  bottom: 70px;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
.whatsApp_top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  transition: all 0.4s;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 85px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}
.section-title h5 {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(45deg, #1b6bbe, #0a9be2);
  border-radius: 40px;
  padding: 6px 24px;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.paddingZero {
  padding: 0;
}
.hero {
  padding: 0;
}
.bannerImg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.bg-video {
  width: 100%;
}
.bannerImg img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.bannerImg::before {
  position: absolute;
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  inset: 0;
  z-index: 2;
}

.bannerImg .carousel-container {
  position: absolute;
  width: 50%;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  z-index: 3;
}
.carousel-container h1{
  font-size: 55px;
  font-weight: 800;
}
.btn-get-started {
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 50px;
  border-radius: 40px;
}
.btn-get-started:hover {
  color: #fff;
}
.autoTypedText {
  color: #1084d0;
}
.typed-cursor {
  color: #1084d0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: #EFF3FA;
}
.about .aboutBody_wrapper {
  padding: 0 15px;
}
.about .aboutUs_content {
  padding: 0 0px 45px;
  border-bottom: 1px solid #00194C1F;
  margin-bottom: 47px;
}
.about .aboutUs_content h2 {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: var(--heading-color);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
  padding-left: 26px;
  position: relative;
}
.about .aboutUs_content h2:before {
    font-size: 20px;
    position: absolute;
    left: -1px;
    line-height: 22px;
    right: auto;
    content: "\f005";
    font-family: 'Font Awesome 5 Free';
    color: var(--accent-color);
    animation: flipInY 1s linear infinite alternate;
    -webkit-animation: flipInY 1s linear infinite alternate;
}
@keyframes  flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0.5;
    animation-timing-function: ease-in;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
.about .aboutUs_content h3 {
  font-size: 54px;
  line-height: 70px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}
.about .aboutUs_content h3 > span {
  position: relative;
    display: inline-block;
    vertical-align: top;
    border-bottom: 3px solid var(--heading-color)
}
.about .aboutUs_content p {
  line-height: 28px;
  margin-bottom: 0;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.aboutBody_wrapper ul li {
  display: flex;
  align-items: baseline;
}
.aboutBody_wrapper ul li .about_icon {
  padding-right: 15px;
}
.aboutBody_wrapper ul li .about_icon i {
  color: var(--accent-color);
  font-size: 23px;
  margin-right: 0;
  vertical-align: bottom;
  transition: 0.8s all;
}
.aboutBody_wrapper ul li:hover .about_icon i {
    transform: rotateY(360deg);
}
.aboutBody_wrapper ul li .icon_details h4 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    color: var(--heading-color);
}
.aboutBody_wrapper ul li + li {
  margin-top: 20px;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 40px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}
.about .about_banner_img {
  height: 100%;
}
.about .about_banner_img img {
  object-fit: cover;
  border-radius: 10px;
  height: 100%;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background: url('../img/service_bg_4.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 6px 30px rgba(192, 192, 192, 0.25);
  border-radius: 20px;
  transition: box-shadow 0.3s ease;
}
.services .service-item:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.services .service-item img {
  margin-bottom: 15px;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq.section {
  background: #fff;
}
.faq_detail_wrapper .faq_left_content h2{
  font-size: 46px;
  color: var(--heading-color);
  font-weight: 800;
  margin-bottom: 30px;
}
.faq_detail_wrapper .faq_left_content h2 > span {
  color: #1b6bbe;
}
.faq_detail_wrapper .faq_left_content p {
  line-height: 28px;
  margin-bottom: 30px;
}
.faq_detail_wrapper .faq_left_content .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 40px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.faq_detail_wrapper .faq_left_content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}
.faq_detail_wrapper .faq_left_content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}
.faq_detail_wrapper .faq_left_content .read-more:hover i {
    margin-left: 10px;
}
.faq_right_img img {
  width: 100%;
  height: 350px;
  max-height: 350px;
  object-fit: cover;
}
.accordion .accordion-button {
  border-radius: 0;
  background: #f1f3f8;
  padding: 24px 20px 20px 70px;
  color: #000;
  font-size: 18px;
}
.accordion .accordion-button:focus {
  background: #f1f3f8;
}
.accordion-button:not(.collapsed), .accordion-button:focus {
  background: #f1f3f8;
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
  background-color: #f1f3f8;
}
.accordion-button::after {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 20px;
    content: "\f061";
    color: #fff;
    background: var(--accent-color);
    text-align: center;
    line-height: 30px;
    font-family: 'Font Awesome 5 Free';
}
.accordion-button:not(.collapsed)::after {
  background-image: none;
  content: '\f063';
  transform: unset;
}
.accordion .accordion-body {
  border-top: 1px solid #f1ede9;
  padding: 20px;
  background: #f1f3f8;
}
.accordion .accordion-body p {
  margin-bottom: 0;
  color: var(--default-color);
  line-height: 28px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact_us_wrapper {
  background: url('../img/contactUsBG.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.contact_us_wrapper .contact_address {
  margin: 30px 0 70px;
}
.contact_us_wrapper .info-item {
  background: #f1f3f8;
  padding: 30px;
  border: 1px solid #ece9e3;
}
.contact_us_wrapper .info-item i {
    width: 60px;
    height: 60px;
    background: #1084d0;
    text-align: center;
    line-height: 60px;
    display: inline-block;
    border-radius: 6px;
    color: #fff;
    font-size: 24px;
}
.contact_us_wrapper .info-item .inner_detail {
  width: calc(100% - 60px);
  padding-left: 30px;
}
.contact_us_wrapper .info-item .inner_detail h5 {
  font-size: 20px;
  font-weight: 800;
}
.contact_us_wrapper .info-item .inner_detail p {
  font-size: 14px;
  margin-bottom: 0;
}
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.contact .get_in_touch_header {
  text-align: left;
}
.contact .get_in_touch_header h5 {
  font-size: 18px;
  color: #1084d0;
  font-weight: 700;
}
.contact .get_in_touch_header h2 {
  font-size: 70px;
  margin-bottom: 10px;
  font-weight: 800;
}
.contact .iti {
  width: 100%;
}

.contact .php-email-form {
  margin-top: 30px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 16px;
  padding: 15px 20px;
  box-shadow: none;
  border: 1px solid #ece9e3;
  border-radius: 0px;
  color: var(--heading-color);
  background: #f1f3f8;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
  color: #666;
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Contact us Banner */
.contactus_banner {
  background-image: url('../img/talk-bg.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(35, 35, 35, 1);
  background-blend-mode: overlay;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.contact_details {
  text-align: center;
}
.contact_details span {
  font-size: 16px;
  font-weight: 700;
  color: #0a9be2;
}
.contact_details h2 {
  max-width: 560px;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}
.contact_details .contactBtn {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 40px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact_details .contactBtn span {
  color: #fff;
  font-weight: 500;
}
.contact_details .contactBtn i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}
.contact_details .contactBtn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.contact_details .contactBtn:hover i {
    margin-left: 10px;
}
/* Contact us Banner */

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 0;
  display: flex;
  align-items: center;
}
.service-details ul li + li {
  margin-top: 10px;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}
.service_detail_header {
  text-align: left;
}
.service_detail_header .breadcrumbs ol {
  justify-content: flex-start;
}
.service_nav_tabs li a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    padding: 20px 30px;
    border-radius: 5px;
    border: 2px solid #e6ecf7;
    color: #454545;
}
.service_nav_tabs li a.active {
  border: 2px solid var(--accent-color)
}
.service_nav_tabs li a:after {
    color: #8e959b;
    content: "\f061";
    font-size: 16px;
    font-weight: 700;
    margin-left: auto;
    font-family: 'Font Awesome 5 Free';
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/* Technology Styles */
.technology_marquee_wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marquee-right-to-left 20s linear infinite;
}
.technology_marquee_wrapper.left-to-right {
  animation: marquee-left-to-right 20s linear infinite;
}
.tech_card {
    min-height: 54px;
    max-height: 54px;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
    background-color: #f7f7f7;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 8px 24px;
}
.tech_card img {
  max-width: 40px;
  object-fit: contain;
}
.tech_card span{
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: #000;
}

@keyframes marquee-right-to-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-left-to-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/* Technology Styles */

/* Terms & Conditions Styles */
.terms_condition_wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.terms_condition_wrapper p {
  font-size: 16px;
  color: var(--default-color);  
  margin-bottom: 15px;
}
.terms_condition_wrapper ul li {
  font-size: 16px;
  color: var(--default-color);  
  margin-bottom: 5px;
}
/* Terms & Conditions Styles */

.error {
    color: red;
    font-size: 12px;
}

.input-error {
    border: 2px solid red;
}

/* ========Industries Sections =============*/
.industries_wrapper {
  background: #EFF3FA;
}
.industries_wrapper .row> * {
  padding-right: 0;
  padding-left: 0;
  margin-top: 0;
}
.industries_wrapper .service-item img {
  width: 64px;
  margin-bottom: 15px;
}
.industries_wrapper .service-item {
  border-right: 1px solid #00194C1F;
  border-bottom: 1px solid #00194C1F;
  padding-bottom: 15px;
  padding-right: 15px;
  padding-left: 15px;
}
.industries_wrapper .col-sm-12:nth-child(3) .service-item {
  border-right: 0;
}
.industries_wrapper .col-sm-12:nth-child(4) .service-item {
  padding-top: 15px;
  border-bottom: 0;
}
.industries_wrapper .col-sm-12:nth-child(5) .service-item {
  padding-top: 15px;
  border-bottom: 0;
}
.industries_wrapper .col-sm-12:nth-child(6) .service-item {
  padding-top: 15px;
  border-bottom: 0;
  border-right: 0;
}
.industries_wrapper .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}
.industries_wrapper .service-item .title > a {
  color: var(--heading-color);
}
.industries_wrapper .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}
/* =======Testimonial Wrapper============ */
.testimonial_main {
  display: none;
}
.testimonial_content {
  position: relative;
  background: #fff;
  text-align: center;
  padding: 0px 30px 45px;
  margin: 54px 0 20px;
} 
.testimonial_wrapper .slick-slide {
  margin: 0 15px;
}
.testimonial_content .client_img {
  position: relative;
  z-index: 1;
  display: inline-block;
  transform: translateY(-50px);
}
.testimonial_content .client_img::before {
  position: absolute;
  content: '';
  width: 104%;
  height: 50%;
  left: -2px;
  bottom: -4px;
  z-index: -1;
  background: var(--accent-color);
  transition: 500ms;
}
.testimonial_content .client_img::after {
  position: absolute;
  content: url('../img/quote.png');
  left: 0px;
  top: 50%;
  opacity: 0.1;
  transform: scale(1.4) rotate(180deg) translateY(-50%);
}
.testimonial_content:hover .client_img::before {
  width: 104%;
  height: 106%;
}
.testimonial_content .client_img img {
  width: 90px;
  max-width: 110px;
  margin: 2px 2px 0;
  border: 5px solid #fff;
}
.testimonial_content .client_text p {
  font-style: italic;
  line-height: 28px;
}
.testimonial_content .client_text h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.testimonial_content::after {
  position: absolute;
  content: '';
  bottom: 0;
  width: 30%;
  height: 4px;
  opacity: 0.3;
  background: var(--accent-color);
  transition: 0.5s;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.testimonial_content:hover::after {
  width: 100%;
  opacity: 1;
}