/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Carousel */
/* Overall Carousel Container */
.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding-left: 80px;
/*   padding-bottom: 80px; */
  box-sizing: border-box;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-content {
  position: relative;
  z-index: 4;
  color: #fff;
  max-width: 40%;
  text-align: left;
}

.carousel-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 0;
}

.carousel-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  opacity: 1;
  margin-bottom: 0;
}

/* Navigation Buttons Container */
.carousel-nav {
  position: absolute;
  right: 40px; 
  display: flex;
  flex-direction: column; 
  gap: 10px; 
  z-index: 10; 
/*   top: 50%;  */
  transform: translateY(-50%);
}

/* Individual Navigation Buttons */
.carousel-nav button {
  width: 40px;
  height: 40px;
  border: none;
  background: white; 
  color: black; 
  border-radius: 50%; 
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2); 
  padding: 0; 
  display: flex; 
  align-items: center;
  justify-content: center;
}

.carousel-nav button:hover {
  background: #f0f0f0; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Image within Navigation Buttons */
.carousel-nav button img {
    width: 16px;
    height: 16px;
    object-fit: contain; 
    filter: brightness(0.2); 
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .carousel {
    padding-left: 30px;
    padding-bottom: 40px;
  }
  .carousel-content {
    max-width: 80%;
  }
  .carousel-content h1 {
    font-size: 36px;
  }
  .carousel-content p {
    font-size: 14px;
  }
  .carousel-nav {
    right: 20px;
  }
}

#industries-ctn {
  width: 125% !important;
  overflow-x: hidden !important;
}

/* Custom Carousel Buttons */
.custom-carousel-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.custom-carousel-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: #fff;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.custom-carousel-nav button:hover,
.custom-carousel-nav button:focus-visible {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  outline: none;
}

.custom-carousel-nav button:active {
  transform: translateY(0);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.12);
}

.custom-carousel-nav button img {
  width: 14px;
  height: 14px;
}

.elementor-element-3553f9e .elementor-swiper-button-prev,
.elementor-element-3553f9e .elementor-swiper-button-next {
  display: none !important;
}

/* Testimonial */
.elementor-element-912ac4f {
  position: relative;
  padding-left: 70px;
  padding-right: 70px;
}

.elementor-element-912ac4f .elementor-testimonial__text {
  color: #1D1D1D;
  font-family: sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
}

.elementor-element-912ac4f .elementor-testimonial__footer {
  text-align: center;
}

.elementor-element-912ac4f .elementor-testimonial__cite {
  font-style: normal;
}

.elementor-element-912ac4f .elementor-testimonial__name {
  display: inline-block;
  position: relative;
  color: #1D1D1D;
  font-family: sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.elementor-element-912ac4f .elementor-testimonial__name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #F40000;
}

.elementor-element-912ac4f .elementor-testimonial__title {
  display: block;
  color: #888;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 400;
}

/* Testimonial Nav */
.elementor-element-912ac4f .elementor-swiper-button svg {
  display: none;
}

.elementor-element-912ac4f .elementor-swiper-button {
  background-color: #f5f5f5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  transition: background-color 0.3s ease;
}

.elementor-element-912ac4f .elementor-swiper-button:hover {
  background-color: #e9e9e9;
}

.elementor-element-912ac4f .elementor-swiper-button-prev {
  background-image: url('https://everest-group.thinktankinfotech.com/wp-content/uploads/2025/09/left-arrow.png');
}

.elementor-element-912ac4f .elementor-swiper-button-next {
  background-image: url('https://everest-group.thinktankinfotech.com/wp-content/uploads/2025/09/right-arrow.png');
}

