/* 
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 */

:root {
  --mps-padding-top: 2rem;
  --mps-padding-right: 1rem;
  --mps-padding-bottom: 2rem;
  --mps-padding-left: 1rem;

  --mps-bg-gradient: linear-gradient(102.64deg, #264289 0%, #10235b 100%);

  --content-container-width: 100%;
  --image-container-width: 100%;
  --main-container-gap: 2rem;
}

@media (min-width: 1024px) {
  :root {
    --mps-padding-top: 5rem;
    --mps-padding-bottom: 5rem;

    --content-container-width: 70%;
    --image-container-width: calc(100% - var(--content-container-width, 1rem));
    --main-container-gap: 4rem;
  }
}

.container {
  padding-top: var(--mps-padding-top);
  padding-right: var(--mps-padding-right);
  padding-bottom: var(--mps-padding-bottom);
  padding-left: var(--mps-padding-left);
}

@media (min-width: 768px) {
  :root {
    --mps-padding-top: 4.5rem;
    --mps-padding-bottom: 4.5rem;
  }
}

.main-bg {
  background-image: var(--mps-bg-gradient);
}

.mp-section.elementor-element.e-con {
  padding-inline-end: var(--mps-padding-right);
  padding-inline-start: var(--mps-padding-left);

  & > div.e-con-inner {
    padding-block-start: var(--mps-padding-top);
    padding-block-end: var(--mps-padding-bottom);
  }
}

.overflow-x-clip {
  overflow-x: clip !important;
}

.overflow-y-clip {
  overflow-y: clip !important;
}

#nav-container {
  transition: transform 0.3s ease-in-out;

  &.hide-nav {
    transform: translateY(-10rem);
  }
}

.text-green {
  color: var(--e-global-color-154357b);
}

.text-blue {
  color: var(--e-global-color-secondary);
}

.text-bold {
  font-weight: 700;
}

.text-stroke-green {
  -webkit-text-stroke: 1px var(--e-global-color-c4e536a);
  text-stroke: 1px var(--e-global-color-c4e536a);
}

.text-stroke-blue {
  -webkit-text-stroke: 1px #0073b5;
  text-stroke: 1px #0073b5;
}

.uc_material_accordion .uc-heading[role='button'] {
  transition: 300ms;
}

/* Footer CopyRight Start */
a.mp-copyright-link {
  position: relative;

  & .mp-copyright-img {
    background-color: #ffffff;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 24px 0px #8b0dbb;
    max-width: 120px;
    /* top: 1rem; */
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    transition: all 200ms ease-in-out;
    opacity: 0;
    visibility: hidden;
  }

  &:hover .mp-copyright-img {
    visibility: visible;
    opacity: 1;
  }
}
/* Footer CopyRight End */


/* Vertical Bar Generator Starts */
.vertical-bars {
  width: 100%;
  height: 100%;

  & .bars-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;

    & .bar {
      /* background-color: red; */
      height: 100%;
      width: auto;
      flex: 1;
      background: linear-gradient(
        269deg,
        rgba(22, 22, 24, 0.4) 1.07%,
        rgba(0, 0, 0, 0.4) 17.36%,
        rgba(26, 26, 29, 0) 98.79%
      );
      box-shadow: 0 2px 4px 0 rgba(255, 255, 255, 0.16) inset;
      backdrop-filter: blur(75px);
    }
  }
}
/* Vertical Bar Generator Ends */

/* Cursor Effects Start */
.elementor-element.has-cursor-fx.e-parent:has(.vertical-bars) {
  & > .e-con-inner {
    z-index: 1;
  }
}
.has-cursor-fx > *:not(.cursor-fx-dot) {
    z-index: 1;
}

.has-cursor-fx {
  position: relative;
  overflow: clip;

  & .cursor-fx-dot {
    position: absolute;
	  
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition:
      opacity 0.2s ease-out,
      transform 0.08s linear; /* small easing for smoother movement */

    border-radius: 50%;
	z-index: 0;
  }

  &.type-1 .cursor-fx-dot {
    border-radius: 22.125rem;
    background: linear-gradient(180deg, #87c6ff 0%, #0f60ff 100%);
    width: 20rem;
    height: 20rem;
    backdrop-filter: blur(70px);
    opacity: 0;
  }
  &.type-2 .cursor-fx-dot {
	width: 32rem;
	height: 32rem;
	border-radius: 40rem;
	opacity: 1;
	background: linear-gradient(180deg, var(--e-global-color-0b7eb5c) 12.49%, #157B4F 98.57%);
	filter: blur(10rem);
	animation-name: cursor-fx-type-2;
	animation-duration: 2s;
	animation-direction: alternate-reverse;
	animation-timing-function: ease-in-out;
	animation-fill-mode: both;
	animation-iteration-count: infinite;
  }
  &.type-3 .cursor-fx-dot {
	background: rgba(0, 0, 0, 0.8);
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
  }
}
@keyframes cursor-fx-type-2 {
    from {
        width: 32rem;
        height: 32rem;
        opacity: 0.5rem;
		filter: blur(5rem);
    }
    to {
        width: 24rem;
        height: 24rem;
        opacity: 1rem;
		filter: blur(10rem);
    }
}
/* Cursor Effects End */


/*  Glassy Background */
.glassy-box {
  background: linear-gradient(115.58deg, rgba(255, 255, 255, 0.2) 2.6%, rgba(184, 219, 255, 0.1) 97.03%);
  /* Light white background with some transparency */
  border-radius: 20px;
  /* Rounded corners */
  padding: 20px;
  /* Box width */
  backdrop-filter: blur(10px);
  /* Glass blur effect */
  box-shadow: 0 2px 2px rgba(255, 255, 255, 0.1) inset;
  /* Slight shadow for depth */
}

/* Faq Style */
.elementor-accordion {
  h3.mp-faq-title {
    display: none !important;
  }

  .elementor-accordion-item {
	&:not(:last-child) {
	  margin-bottom: 1rem !important;
	}
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
    background: linear-gradient(115.58deg, rgba(255, 255, 255, 0.2) 2.6%, rgba(184, 219, 255, 0.1) 97.03%) !important;
    padding: 1rem;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
	  
	  & .elementor-tab-title {
/* 		  display:flex; */
/* 		  align-items:center; */
	  }

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);

      &:hover,
      &:focus,
      &.active {
        /*        background-color: #6be6b1 !important;   */
        color: #fff;
      }
    }

    .mp-faq-question {
      color: var(--e-global-color-0df10e8);
      font-size: 1rem !important;
      font-weight: 400 !important;
      cursor: pointer;
      width: 100%;
      text-align: left;
      padding: 0.5rem 1rem;
      transition:
        background-color 0.3s,
        color 0.3s;

      &:hover,
      &:focus,
      &.active {
        background-color: transparent !important;
        color: #fff;

      }
    }

    .mp-faq-answer {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s ease;
      margin: 0px !important;
      color: var(--e-global-color-0df10e8);

      &.active {
        display: block;
        max-height: 1000px;
        transition: max-height 0.5s ease-in-out;
      }
    }
  }
}

/* End Faq */

/*  Reviews*/
.swiper-wrapper {

	
	.review-item {
  height: 380px;
  border-radius: 15px;
  background: linear-gradient(144.73deg, #ebfef4 2.03%, #d7eaff 98.51%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  flex: 1;
  padding: 32px 24px;

  .text-review {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
	


  .author {
    display: flex;
    align-items: center;
    gap: 1rem;

    img {
      width: 40px;
      height: 40px;
    }
  }
}
}

.swiper-pagination{
	display:none!important;
}
