/*
Theme Name: Visual Composer Starter Child
Theme URL: https://visualcomposer.com/visual-composer-starter-theme/
Description: Visual Composer Starter Child Theme
Theme Author: Visual Composer
Author URL: https://visualcomposer.com/
Template: visual-composer-starter
Version: 1.0.0
Text Domain: visual-composer-starter-child
*/
.hide_on_desktop {
  display: none;
}

.hide_on_mobile {
  display: block;
}

@media screen and (max-width: 767px) {
  .mobile_text_align_center * {
    text-align: center !important;
  }

  .hide_on_desktop {
    display: block !important;
  }

  .hide_on_mobile {
    display: none;
  }

  .mobile_small_text * {
    font-size: 30px !important;
  }

  .vce-faq-toggle-title,
  .vce-faq-toggle-text-block {
    padding-left: 0px !important;
  }
}

.content-wrapper {
  padding: 0px !important;
}

.main-content {
  padding-bottom: 0px !important;
}

.custom_toggle_content .vce-faq-toggle-title {
  position: relative;
  text-align: center;
  margin-bottom: 70px;
}

.custom_toggle_content .vce-faq-toggle-title-text {
  position: relative;
  z-index: 1;
}

.custom_toggle_content .vce-faq-toggle-icon {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.custom_icon_button .vce-call-to-action-button-description {
  display: none !important;
}

.custom_icon_button .vce-call-to-action-button {
  display: flex !important;
  align-items: center !important;
  flex-direction: row-reverse !important;
  justify-content: center !important;
}

.custom_icon_button .vce-call-to-action-button-icon-wrapper {
  margin-left: 8px !important;
  margin-right: 0 !important;
}



/* Custom Marquee Effect Section CSS Start */

/* * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
} */

/* body {
  height: 100%;
  font-family: "Roboto Mono", sans-serif;
  background-color: #e4e4e4;
  color: #000;
  font-size: 16px;
  line-height: 120%;
  font-weight: 300;
  text-align: left;
} */

/* img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
} */

.spacer-100 {
  width: 100px;
  height: 100px;
}

.spacer-60 {
  width: 60px;
  height: 60px;
}

.spacer-30 {
  width: 30px;
  height: 30px;
}

.spacer-15 {
  width: 15px;
  height: 15px;
}

.marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 600px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
}

.marquee-horizontal {
  position: relative;
  z-index: 200;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 60px;
  justify-content: flex-start;
  align-items: center;
  background-color: #000000;
}

.track-horizontal {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-horizontal 40s linear infinite;
}

.marquee-horizontal-large {
  position: relative;
  z-index: 200;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 90px;
  justify-content: flex-start;
  align-items: center;
  flex: 0 0 auto;
}

.marquee-text {
  margin-right: 8vw;
  flex: 0 0 auto;
  color: #ffffff;
  text-transform: uppercase;
}

.track-horizontal-alt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.track-horizontal-alt {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-horizontal-alt 40s linear infinite;
}

.icon-container {
  display: flex;
  width: 210px;
  height: 15vw;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  background-color: #ffffff;
}

.icon-container-alt {
  display: flex;
  /*   width: 250px; */
  height: 60px;
  padding-right: 0px;
  padding-left: 0px;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
}

.icon {
  width: 98%;
}

.col {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
}

.col.small {
  width: 41%;
  flex: 0 0 auto;
}

.header-quaternary {
  max-width: 100%;
  font-size: 14px;
  letter-spacing: 1px;
  color: #000000;
  padding: 2px 4px;
}

.header-secondary {
  max-width: 100%;
  font-size: 40px;
  line-height: 120%;
}

.custom-container {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}

.flex-vertical {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-horizontal {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-horizontal.flex-left {
  justify-content: flex-start;
}

.marquee-cover-horizontal {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 10;
}

@keyframes marquee-vertical {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes marquee-vertical-alt {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0%);
  }
}

@keyframes marquee-horizontal {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-horizontal-alt {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0%);
  }
}

/* Custom Marquee Effect Section CSS End */
/* Projects Gallery CSS Start */
#custom_section {
  text-align: center;
  width: 100%;
  /* max-width: 800px; */
  margin: auto;
}

.slider-single img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  /* border-radius: 8px; */
}

.slider-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 10px;
}

.slider-nav {
  width: 70%;
}

.slider-nav .slick-slide {
  padding: 5px;
}

.slider-nav img {
  width: 100%;
  max-width: 100%;
  height: 150px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
  text-align: center;
  margin: 0 auto;
}

.slider-nav .slick-slide.slick-current img {
  opacity: 1;
  border: 5px solid #3498db;
}

/* Arrows */
.slick-prev,
.slick-next {
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 0px;
}

.slick-prev {
  padding-right: 10px;
}

.slick-next {
  padding-left: 10px;
}

.slick-next:before,
.slick-prev:before {
  color: #0164a8;
}

.category-button {
  display: inline-block;
  color: #000;
  border: 2px solid #E89F49;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 25px;
  text-decoration: none;
  background-color: transparent;
  font-weight: bold;
  transition: border-color 0.3s ease-in-out;
}

.category-button:hover {
  border-color: #0164a8;
  text-decoration: none;

}


.project-nav-btn {
  display: inline-block;
  padding: 10px 15px;
  margin: 5px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  border: 2px solid #E89F49;
  border-radius: 25px;
  background-color: transparent;
  transition: border-color 0.3s ease-in-out;
}

.project-nav-btn:hover {
  border-bottom: none !important;
  color: #000 !important;
}


.related-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3-column layout */
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

.related-project-item {
  text-decoration: none;
  border: 2px solid #E89F49;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  display: block;
  padding: 10px;
  text-align: center;
}

.related-project-item:hover {
  border-color: #0164a8;
  transform: scale(1.05);
  border-bottom: none !important;
}

.related-project-img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #E89F49;
}

.related-project-title {
  font-size: 18px;
  font-weight: bold;
  padding-top: 10px;
  margin: 10px 0;
  color: #000;
}

.related-project-excerpt {
  font-size: 14px;
  color: #333;
}

/* Responsive: Adjust to 2 columns on smaller screens */
@media (max-width: 900px) {
  .slider-single img {
    height: 300px !important;
  }

  .slider-nav img {
    height: 60px !important;
  }

  .related-projects {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: Adjust to 1 column on mobile */
@media (max-width: 600px) {
  .related-projects {
    grid-template-columns: repeat(1, 1fr);
  }
}



/* Projects Gallery CSS End */
.custom_toggle_content p {
  text-align: justify !important;
}








/* Contact us form css start */
:root {
  --gradientColorOne: rgb(142, 173, 249);
  --gradientColorTwo: rgb(12, 103, 171);
}

.custom-contact-form {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px;
}

.custom-contact-form .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 0px;
  flex-wrap: wrap;
}

.custom-contact-form .form-field {
  flex: 1 1 48%;
}

.custom-contact-form input,
.custom-contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
}

.custom-contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
  color: #777;
}

.custom-contact-form input[type="submit"] {
  width: 100%;
  padding: 14px;
  margin-top: 20px;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background-image: linear-gradient(to right, var(--gradientColorOne), var(--gradientColorTwo));
  transition: background-image 0.3s ease;
}

.custom-contact-form input[type="submit"]:hover {
  background-image: linear-gradient(to right, var(--gradientColorTwo), var(--gradientColorOne));
}

@media (max-width: 900px) {
  .custom-contact-form {
    padding: 0px;
  }
}

/* Contact us form css end */


/* careers page form css start*/
.custom-job-form {
  position: relative;
  color: #fff;
}

.custom-job-form select {
  width: 100%;
  padding: 14px;
  padding-right: 40px;
  /* space for arrow */
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  background-color: #fff;
  color: #000;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
}

/* Wrapper to help position the arrow */
.custom-job-form .select-wrapper {
  position: relative;
}

/* Arrow using pseudo-element */
.custom-job-form .select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #999;
  transform: translateY(-50%);
}

.custom-job-form p {
  color: #fff !important;
}

.custom-job-form input[type="submit"],
.custom-job-form button[type="submit"] {
  /* background-color: #e89f49; */
  background-image: linear-gradient(to right, #d77e1f, #e89f49);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-job-form input[type="submit"]:hover,
.custom-job-form button[type="submit"]:hover {
  /* background-color: #d78c34; */
  background-image: linear-gradient(to right, #e89f49, #d77e1f);
  /* slightly darker on hover */
}


/* careers page form css end*/



.home .custom_cta_section,
.page-id-181 .custom_cta_section {
  display: none !important;
}

.custom_services_box_wrapper .vce-text-block-wrapper p {
  overflow: hidden;
  max-height: 4.5em;
  transition: max-height 0.5s ease;
  position: relative;
}

.custom_services_box_wrapper .vce-text-block-wrapper p.expanded {
  max-height: 1000px;
}

.custom_services_box_wrapper .learn-more-toggle {
  color: #007bff;
  cursor: pointer;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}

.custom_services_box_wrapper .vce-single-image-container {
  width: 95px !important;
  height: 95px !important;
  margin-bottom: 15px !important;
}


@media (max-width: 767px) {
  .custom_services_box_wrapper .vce-row-content {
    gap: 15px !important;
  }

  .custom_services_box_wrapper * {
    text-align: center !important;
    margin: 0 auto !important;
  }
}

.custom_home_services_box_wrapper .vce-single-image-container {
  width: 70px !important;
  height: 70px !important;
  margin-bottom: 15px !important;
}

.custom_home_services_box_wrapper h4 {
  font-size: 20px !important;
}


/* Services custom Shortcode CSS Start */
.custom-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.custom-service-box {
  background-color: #f8f8f8;
  box-shadow: 0 0 4px 2px rgba(85, 85, 85, 0.5);
  padding: 50px 30px;
  border-radius: 0px;
  text-align: left;
}

.custom-service-thumb {
  margin-bottom: 10px;
}

.custom-service-thumb img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 4px;
}

.custom-service-content h4 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 700 !important;
}

.custom-service-content p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.service-content-text p.collapsed {
  max-height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.service-content-text p.expanded {
  max-height: none;
}


/* Services custom Shortcode CSS End */


/* Home Services Custom Scroll css start */

.custom_services_scroll {
  overflow: hidden;
  position: relative;
}

.custom_services_scroll .custom-services-grid {
  display: flex !important;
  gap: 20px !important;
  flex-wrap: nowrap;
  width: max-content;
  animation: scrollAllServices 100s linear infinite;
}

.custom_services_scroll .custom-service-box {
  flex: 0 0 auto;
  width: 280px;
  margin-right: 5px;
  padding: 30px 30px;
}

.custom_services_scroll .custom-service-thumb img {
  width: 60px;
  height: 60px;
}

.custom_services_scroll .custom-service-content h4 {
  font-size: 18px !important;
  margin-bottom: 3px !important;
}

.custom_services_scroll .custom-service-content .learn-more-toggle,
.custom_services_scroll .custom-service-content p {
  line-height: 20px !important;
  font-size: 14px !important;
  margin-bottom: 3px !important;
}

@keyframes scrollAllServices {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Optional pause on hover */
.custom_services_scroll .custom-services-grid:hover {
  animation-play-state: paused;
}

.custom_services_scroll .custom-services-grid.dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.custom_services_scroll .custom-services-grid {
  cursor: grab;
  cursor: -webkit-grab;
}


/* Home Services Custom Scroll css end */


/* Blue Box Gradient Effecr CSS Start */
.custom_blue_box_hover_effect .vce-col {
  background: linear-gradient(to bottom, #88cbfc, #0563a7);
  transition: background 0.5s ease;
  padding: 20px;
  position: relative;
  overflow: hidden;
  height: 400px;
  /* Fixed height */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.custom_blue_box_hover_effect .vce-col:hover {
  background: linear-gradient(to top, #88cbfc, #0563a7);
}

.custom_blue_box_hover_effect .vce-col p {
  display: none;
  margin-top: 10px;
}

.custom_blue_box_hover_effect .vce-col h4 {
  cursor: pointer;
  color: #000 !important;
}

.custom_blue_box_hover_effect .vce-col:hover h4 {
  color: #000 !important;
}

/* Blue Box Gradient Effecr CSS End */

/*Team Box Hover Effect CSS Start*/
.custom_team_hover_effect .vce-tall-hoverbox-inner {
  justify-content: flex-end !important;
}

/* Parent container */
.custom_team_hover_effect {
  position: relative;
  overflow: hidden;
  border-radius: 15px !important;
}

/* .custom_team_hover_effect .vce-tall-hoverbox-wrapper {
  background-size: contain;
} */

/* Gradient overlay - start hidden at bottom */
.custom_team_hover_effect .vce-tall-hoverbox-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 99, 167, 0.95), rgba(255, 255, 255, 0));
  padding: 15px;
  margin-bottom: 0px !important;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Slide up to show full overlay on hover */
.custom_team_hover_effect:hover .vce-tall-hoverbox-inner {
  transform: translateY(0%);
}

/* Text inside overlay */
.custom_team_hover_effect .vce-tall-hoverbox-description {
  z-index: 2;
}

@media (max-width: 1600px) {

  .custom_blue_box_hover_effect .vce-col {
    height: 450px;
  }

}

@media (max-width: 600px) {

  .custom_blue_box_hover_effect .vce-col {
    height: 350px;
  }

}

/*Team Box Hover Effect CSS End*/




/*Project Category Custom Boxes CSS Start*/
/* Grid Layout */
.custom-project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Parent container */
.custom_team_hover_effect {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  height: 350px;
}

.custom_team_hover_effect:hover h3 {
  color: #E89F49 !important;
}

/* Background Image */
.custom-box-image {
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: relative;
}

/* Gradient overlay - now ALWAYS visible */
.custom_team_hover_effect .vce-tall-hoverbox-inner-new {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 99, 167, 0.95), rgba(255, 255, 255, 0));
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

/* Text styling */
.custom_team_hover_effect h3 {
  margin: 0 0 10px;
  font-size: 1.5em;
  color: #fff !important;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 5);
}

.custom_team_hover_effect p {
  margin: 0;
  font-size: 1em;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .custom_team_hover_effect .vce-tall-hoverbox-inner {
    transform: translateY(0%) !important;
  }
}

/*Project Category Custom Boxes CSS End*/
