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

p {
	font-family: "Noto Sans", sans-serif !important;
}
.customcarousel .e-con-inner .elementor-element:before {
    z-index: 1;
}
.teamcustom_tabs .e-n-tabs-heading {
    padding-left: 64px;
}
.page.page-id-378 header.elementor.elementor-26.elementor-location-header {
    background: var( --e-global-color-secondary );
}

.page.page-id-378 header.elementor.elementor-26.elementor-location-header .elementor-widget-theme-site-logo img {
    filter: brightness(0) invert(1);
}



.page.page-id-378 header.elementor.elementor-26.elementor-location-header .elementor-icon-box-icon span.elementor-icon svg {
  filter: brightness(0) invert(1);
}

.page.page-id-378 header.elementor.elementor-26.elementor-location-header .elementor-icon-box-content p.elementor-icon-box-description {
    color: #fff;
}

.timings ul.elementor-icon-list-items li.elementor-icon-list-item .elementor-icon-list-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


.referral__form .e-form__indicators .e-form__indicators__indicator label.e-form__indicators__indicator__label {
    width: 220px;
    text-align: left;
}

.referral__form  .e-form__indicators__indicator {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.referral__form  .e-form__indicators__indicator__number {
    margin: 0;
}

.e-form__indicators__indicator__separator {
    display: none;
}

.referral__form  .e-form__indicators__indicator.e-form__indicators__indicator--state-active label.e-form__indicators__indicator__label {
    color: var( --e-global-color-secondary );
}

.referral__form input{
    padding: 16px 16px 16px 60px;
}
.referral__form textarea {
    padding: 16px;
}

.referral__form  .e-form__buttons {
    margin-top: 40px;
}

.referral__form .e-form__indicators__indicator.e-form__indicators__indicator--state-completed label.e-form__indicators__indicator__label {
	 color: var( --e-global-color-secondary );
}

/* Checkboxes Styling */
.referral__form  .elementor-field-type-checkbox .elementor-field-subgroup {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.referral__form .elementor-field-type-checkbox .elementor-field-option:has(input[type="checkbox"]:checked) {
    background: var( --e-global-color-accent );
    color: #fff;
}

.referral__form .elementor-field-type-checkbox .elementor-field-option {
    display: flex;
    align-items: center;
    padding: 18px 16px;
    gap: 16px;
	border: 1px solid var(--e-global-color-accent);
}

.referral__form .elementor-field-type-checkbox .elementor-field-option:has(input[type="checkbox"]:checked) label{color:#fff;}

/* Hide native checkbox */
.referral__form .elementor-field-type-checkbox .elementor-field-option input[type="checkbox"] {
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
     border: 1px solid #a18970;
     background-color: transparent;
     box-sizing: border-box; 
     display: inline-block;
     position: relative;
     vertical-align: middle;
     cursor: pointer;
     transition: all 0.3s ease;
     width: 32px;
     height: 32px;
     padding: 0 !important;
     border-radius: 100px;
		
}

/* When checked — show filled circle (golden) */
.referral__form .elementor-field-type-checkbox .elementor-field-option input[type="checkbox"]:checked {
    background-color: #a18970;
    border-color: #a18970;
}
/* Inner white tick or dot (choose one style below) */
.referral__form .elementor-field-type-checkbox .elementor-field-option input[type="checkbox"]:checked::after {
    content: "✔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: 18px;
    color: #a18970;
    background:#fff;
    width: 32px;
    height: 32px;
    border-radius: 100px;
    text-align: center;
    line-height: 32px;
}

/* Checkboxes Styling end */


/* Radio group horizontal layout */
.referral__form .elementor-field-type-radio .elementor-field-subgroup {
    display: flex;
    gap: 12px;
}

/* Each radio option looks like a button */
.referral__form .elementor-field-type-radio .elementor-field-subgroup span.elementor-field-option {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border: 1px solid #4C4D4F80;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 145px;
}

/* Hide native radio input */
.referral__form .elementor-field-type-radio .elementor-field-subgroup span.elementor-field-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    padding: 0;
    height: 100%;
}

/* Label styling */
.referral__form .elementor-field-type-radio .elementor-field-subgroup span.elementor-field-option label {
    color: var( --e-global-color-text );
    cursor: pointer;
    transition: color 0.3s ease;
}

/* When selected — highlight button */
.referral__form .elementor-field-type-radio .elementor-field-subgroup span.elementor-field-option input[type="radio"]:checked + label {
    color: #fff;
}

/* Change button background when checked (via :has) */
.referral__form .elementor-field-type-radio .elementor-field-subgroup span.elementor-field-option:has(input[type="radio"]:checked) {
    background-color: #a18970;
    border-color: #a18970;
}

/* Hover effect */
.referral__form .elementor-field-type-radio .elementor-field-subgroup span.elementor-field-option:hover {
    border-color: #8e735d;
}



/* file field stying */

/* ===== Custom Upload Box ===== */
.custom-file-upload {
  border: 2px dashed #A18970;
  background-color: #f7f3ef;
  text-align: center;
  padding: 40px 20px;
  border-radius: 0;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover effect */
.custom-file-upload:hover {
  background-color: #f4ede7;
  border-color: #8e735d;
}

/* Upload icon */
.custom-file-upload .upload-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

/* Heading */
.custom-file-upload h4 {
  font-size: 20px;
  font-weight: 700;
  color: #4C4D4F;
  margin: 16px 0;
var(
  --e-global-typography-text-font-family ), font-family: sans-serif;
}

/* Subtext */
.custom-file-upload p {
  font-size: 16px;
  color: #4C4D4F;
  margin-bottom: 20px;
  font-family: var( --e-global-typography-text-font-family ), sans-serif;
  margin-bottom: 16px;
}

/* Browse button */
.custom-file-upload .browse-btn {
  display: inline-block;
  background-color: #4C4D4F;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-file-upload .browse-btn:hover {
  background-color: #333;
}

/* Hide actual file input */
.custom-file-upload input[type="file"] {
  display: none;
}

/* Drag-over effect */
.custom-file-upload.dragover {
  border-color: #4C4D4F;
  background-color: #f1ede9;
}

.custom-file-upload .uploaded-file-name {
  display: block;
  margin-top: 15px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  word-break: break-word;
}

.elementor-field-type-upload.elementor-field-group-field_6610757 {
    display: none;
}

/* file upload end */

.doublegrid .e-n-accordion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}


.doublegrid .e-n-accordion-item-title-text {
    display: flex;
    align-items: center;
    gap: 10px;
}
.custom_menu nav.elementor-nav-menu--dropdown.elementor-nav-menu__container li.menu-item a {
    padding: 0;
    align-items: center;
    line-height: 42px;
}
.custom_menu nav.elementor-nav-menu--dropdown.elementor-nav-menu__container li.menu-item a span:first-child {
    color: #fff;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-right: 15px;
}
.custom_menu nav.elementor-nav-menu--dropdown.elementor-nav-menu__container li.menu-item a span.sub-arrow {
    margin-top: 0;
}
.custom__tabs .e-n-tabs-heading button[aria-selected="true"] span.e-n-tab-title-text {
    font-weight: 600;
}

.custom__gallery .elementor-main-swiper.swiper.elementor-thumbnails-swiper {
    position: relative;
}
.custom__gallery  .elementor-swiper-button {
    padding: 2px;
    background: #fff;
    border-radius: 5px;
}

.custom__gallery .elementor-swiper-button i {
    color: #98826d;
}
.custom__gallery .elementor-main-swiper.swiper.elementor-thumbnails-swiper:before {
    content: "";
    position: absolute;
    left: -1px;
    top: 0;
    height: 100%;
    width: 150px;
    background: linear-gradient(90deg, rgba(242, 237, 232, 0.12) 0%, #F2EDE8 100%);
    z-index: 2;
	transform: rotateY(175deg);
}

.custom__gallery .elementor-main-swiper.swiper.elementor-thumbnails-swiper:after {
content: "";
    position: absolute;
    right: -1px;
    top: 0;
    height: 100%;
    width: 150px;
    background: linear-gradient(90deg, rgba(242, 237, 232, 0.12) 0%, #F2EDE8 100%);
    z-index: 2;
}

.team___box:before {
    z-index: 1;
    transition: linear 0.3s;
	pointer-events: none;
}

/* .team___box:hover:before {
    z-index: 0;
    transition: linear 0.3s;
} */

.team___box {
    transition: linear 0.3s;
}
.dynamic_content p {
    margin-bottom: 22px;
}

.dynamic_content p strong {
    color: #a18970;
}


/* ===== Form Field Icons ===== */
.referral__form .elementor-form .elementor-field-group {
  position: relative;
}

.referral__form .elementor-form .elementor-field-group input {
  padding-left: 40px !important;
}

/* Icon Base Style */
.referral__form .elementor-form .elementor-field-group::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 55%;
  /* transform: translateY(-48%); */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #000;
  font-size: 16px;
  pointer-events: none;
}

/* Full Name */
.referral__form .elementor-form .elementor-field-group-field_b3eb7dc::before,
.referral__form .elementor-form .elementor-field-group-field_86b70b2::before {
  content: "\f007"; /* user icon */
}

/* Phone */
.referral__form .elementor-form .elementor-field-group-field_c29b502::before,
.referral__form .elementor-form .elementor-field-group-field_5a3aa9c::before {
  content: "\f095"; /* phone icon */
}

/* Address */
.referral__form .elementor-form .elementor-field-group-field_b984c0c::before,
.referral__form .elementor-form .elementor-field-group-field_a72bd0e::before {
  content: "\f3c5"; /* map-marker-alt icon */
}

/* Email */
.referral__form .elementor-form .elementor-field-group-field_c71ec60::before,
.referral__form .elementor-form .elementor-field-group-field_06e9a31::before {
  content: "\f0e0"; /* envelope icon */
}




@media (min-width: 1025px) {
.custom_menu nav.elementor-nav-menu--dropdown {
    overflow: visible !important;
}

.custom_menu nav.elementor-nav-menu--dropdown.elementor-nav-menu__container li.menu-item > .sub-menu {
	position: fixed;
    left: 50% !important;
    top: 200px !important;
    width: 450px !important;
}

.custom_menu nav.elementor-nav-menu--dropdown.elementor-nav-menu__container li.menu-item > .sub-menu li.menu-item {
    border: 0;
}
	
	
	
}
@media (min-width: 1024px) and (max-width: 1440px){

}
@media (min-width: 768px) and (max-width: 1023px){
.doublegrid .e-n-accordion {
    grid-template-columns: 1fr;
    gap: 15px;
}
}
@media (min-width: 0px) and (max-width: 767px){
	.sub-menu li a {
		font-size: 16px !important;
		line-height: 24px !important;
	}
.custom_tabs .e-n-tabs-heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.custom_tabs .e-n-tabs-heading button {
    margin: 0 !important;
}
	.teamcustom_tabs .e-n-tabs-heading {
    padding-left: 0px;
}
.referral__form .e-form__indicators .e-form__indicators__indicator label.e-form__indicators__indicator__label {
    width: max-content;
    text-align: center;
}

.referral__form .e-form__indicators__indicator {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.referral__form  .e-form__indicators.e-form__indicators--type-number_text {
    margin-bottom: 30px;
    gap: 0 !important;
}

.referral__form .elementor-field-type-checkbox .elementor-field-subgroup {
    grid-template-columns: repeat(2, 1fr);
}

.referral__form .elementor-field-type-checkbox .elementor-field-option {
    padding: 10px;
    gap: 10px;
}

.referral__form .elementor-field-type-checkbox .elementor-field-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.referral__form .elementor-field-type-checkbox .elementor-field-option input[type="checkbox"]:checked::after {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 13px;
}	
.doublegrid .e-n-accordion {
    grid-template-columns: 1fr;
    gap: 15px;
}	
.doublegrid .e-n-accordion-item-title-text {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
}	
.custom__tabs .e-n-tabs-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.custom__tabs .e-n-tabs-heading button {
    margin: 0 !important;
    padding: 0;
    display:block;
}
.dynamic_content p {
    margin-bottom: 15px;
}

.custom__gallery .elementor-main-swiper.swiper.elementor-thumbnails-swiper:before {
    width: 110px;
}

.custom__gallery .elementor-main-swiper.swiper.elementor-thumbnails-swiper:after {
    width: 110px;
}

.referral__form .elementor-form .elementor-field-group::before {
  top: 58%;
}

}

