/*
Theme Name: Hello Child
Theme URI: http://loxley.com/hello-child
Description: Child theme for the Hello theme
Author: Your Name
Author URI: http://loxley.com
Template: hello-elementor
Version: 1.0.0
*/

/* Import the parent theme's style.css */
@import url("../hello-elementor/style.css");
@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
#animate{
	transform: translateX(-80px);
  animation: fadeInFromLeft 1s forwards;
	    transition: cubic-bazier;
}

i.eicon-chevron-right,.eicon-chevron-left {
    width: 60px;
    height: 60px;
    border: 1px solid #B89B5E;
    border-radius: 100% !important;
}
.eicon-chevron-right:before {
    content: ""!important;
    display: inline-block;
    width: 26px;
    height: 17px;
    background-color: #A2AAAD;
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26.161 16.826'><path d='M0 8h25.455' stroke='black' stroke-width='1' fill='none'/><path d='M17 0l8.06 8.061-8.06 8.059' stroke='black' stroke-width='1' fill='none'/></svg>");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-size: contain;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	transition: background-color 0.3s ease;

}
.eicon-chevron-left:before{
	content: ""!important;
    display: inline-block;
    width: 26px;
    height: 17px;
    background-color: #A2AAAD;
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26.161 16.826'><path d='M0 8h25.455' stroke='black' stroke-width='1' fill='none'/><path d='M17 0l8.06 8.061-8.06 8.059' stroke='black' stroke-width='1' fill='none'/></svg>");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-size: contain;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
	transition: background-color 0.3s ease;
}
i.eicon-chevron-right:hover,.eicon-chevron-left:hover {
    background-color: #B89B5E;
	transition: background-color 0.3s ease;
}
i.eicon-chevron-right:hover:before, i.eicon-chevron-left:hover:before
 {
    background-color: #fff;
}
.vertical-line{
	background-color: #00000078;
    opacity: .3;
    width: 1px;
    height: 100%;
}
.background-layer-left > .elementor-widget-image {
    justify-content: end;
    display: flex;
}
@keyframes wheel-up-down {
    0% {
        margin-top: 2px;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        margin-top: 20px;
        opacity: 0;
    }
}

.mouse {
    position: absolute;
    z-index: 95;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
}

.mouse .mouse-icon {
    display: block;
    width: 26px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    text-align: center;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}

.mouse .mouse-wheel {
    height: 6px;
    margin: 2px auto 0;
    display: block;
    width: 6px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-animation: 1.6s ease infinite wheel-up-down;
    -moz-animation: 1.6s ease infinite wheel-up-down;
    animation: 1.6s ease infinite wheel-up-down;
}

body {
    --sb-track-color: #ffffff;
    --sb-thumb-color: #b89b5e;
    --sb-size: 8px;
}

body::-webkit-scrollbar {
    width: var(--sb-size)
}

body::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 2px;
}

body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 2px;

}

@supports not selector(::-webkit-scrollbar) {
    body {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

#menu {
    background-color: rgba(16, 24, 32, 1);
    transition: background-color 0.5s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2)
}

#menu.is-visible {
    background-color: rgba(16, 24, 32, 1);
    transition: background-color 0.5s ease;
}

.elementor-button {
    background-size: 200% 100%;
    background-position: 0% 50%;
    transition: background-position 0.5s ease;
}

.elementor-button:hover {
    background-position: 200% 50%;
}

ul.uvp {
    list-style: none;
    padding-left: 1.5rem;
}

ul.uvp li {
    position: relative;
    margin-bottom: 0.5rem;
}

ul.uvp li::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 0.60em;
    width: 8px;
    height: 8px;
    background-color: #b89b5e;
    border-radius: 2px;
}

.marquee {
    overflow: hidden;
    width: 100%;
    background: transparent;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 75s linear infinite;
}

.marquee-track img {
    height: 350px;
    /* responsive height */
    width: auto;
    margin-right: 3rem;
    object-fit: contain;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

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

/* Pause on hover */
.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee {
    mask-image: linear-gradient(to right,
            transparent,
            black 5%,
            black 95%,
            transparent);
}

/* Lightbox overlay */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 6px;
}

/* Open state */
.lightbox:target {
    opacity: 1;
    pointer-events: auto;
}

/* Click outside to close */
.lightbox-close {
    position: absolute;
    inset: 0;
}

li.elementor-icon-list-item {
    border-bottom: 1px solid #000;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    /* WhatsApp green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

#git input,
#git select {
    border: 1px solid #0000;
    border-radius: 3px;
    height: auto;
    margin-bottom: 0;
    padding: 1rem;
    font-family: "Montserrat", Sans-serif;
    font-size: 1rem;
    transition: box-shadow .2s;
    color: #0006;
}

input::placeholder {
    color: #0006;
}

input::-webkit-input-placeholder {
    color: #0006;
}

input::-moz-placeholder {
    color: #0006;
}

input:-ms-input-placeholder {
    color: #0006;
}

#git input[type="submit"] {
    font-family: Monsserrat, Sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #b89b5e;
	letter-spacing:1px;
    border-radius: 30px;
    width: 100%;
    color: #fff;
	padding-top:1.1rem;
	padding-bottom:1.1rem;
}

#git select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(https://loxley.ae/wp-content/uploads/2026/02/chevron.svg);
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

#git input:hover,
#git select:hover {
    border-color: #B89B5E;
}

#git select:focus,
#git input:focus {
    border-color: 1px solid #B89B5E;
    color: #3D3D3D;
    outline: 0;
}

#git p {
    margin-bottom: 0;
}

span.wpcf7-spinner {
    display: none;
}

ul.menu {
    display: flex;
    height: 100%;
    white-space: nowrap;
    margin: 0 !important;
    padding: 0;
    list-style: none;
    gap: 16px;
}

ul.menu a {
    font-family: "Montserrat", Sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.5;
    color: #fff;
    font-weight: 400;
    font-size: .8rem;
}

.hamburger {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: #bababa;
    /* Change to your text color */
    border-radius: 2px;
    transition: all 0.3s ease;
}

li.menu-item span svg {
    height: 12px;
    margin-right: 4px
}

li.menu-item a span {
    position: relative;
    display: flex;
    align-items: center;
}

li.menu-item:hover a span:after {
    transform: scaleX(1);
}

li.menu-item a span:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.menu-close {
    display: none;
}

li.elementor-icon-list-item {
    border: none !important;
}


.line.bg-primary{
	border-radius: 6px;
    width: 100px;
    height: 1px;
    margin-right: 20px;
    background-color: #B89B5E;
}
#teamModal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  width: 900px;
  max-width: 95%;
  height: 500px;
  background: white;
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
border: 1px solid #777;
}

.modal-left {
  flex: 1;
}

.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-right {
  flex: 1;
  padding: 40px;
  overflow-y: auto;
}

.modal-right h4 {
  color: brown;
  margin-top: 10px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #B89B5E;
}
.team-member .learn-more {
    position: unset;
}
.learn-more span{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
    z-index: 101;
	color:#fff;
    transition: all 0.4s ease;
}
.team-member{
	cursor:pointer;
}
.team-member:hover .learn-more span{
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
.team-member:hover::before {
    opacity: 0.75!important;
}
.team-member::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #af9061, #b89b5e);
    opacity: 0!important;
    transition: opacity 0.4s ease;
    z-index: 100;
}
h2#modalName {
    font-family: "Average Sans", Sans-serif;
}
p#modalBio {
    font-family: 'Montserrat', sans-serif;
}
/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .modal-content {
    flex-direction: column;
	  max-width: 85%;
    height: 600px;
  }

  .modal-left {
    width: 100%;
    height: 320px; /* You can adjust */
  }

  .modal-left img {
    width: 100%;
    height: 320px!important;
    object-fit: cover;
  }

  .modal-right {
    width: 100%;
    padding: 25px;
  }
	.menu-close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 2rem;
        color: #000;
        /* Match your text color */
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Optional: Hover effect */
    .menu-close:hover {
        color: #666;
    }

    .hamburger {
        display: flex;
    }

    /* Hide menu by default on mobile */
    .main-nav .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #fff;
        /* Change to your background */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav .menu li {
        margin: 15px 0;
    }

    .main-nav .menu a {
        font-size: 1.2rem;
        color: #000;
        /* Match your design */
    }

    /* Show menu when active */
    .main-nav.menu-open .menu {
        right: 0;
    }

    /* Animate hamburger to 'X' */
    .main-nav.menu-open .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .main-nav.menu-open .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .main-nav.menu-open .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .marquee-track img {
        height: 250px;
        margin-right: 2rem;
    }

}
