/*
Theme Name: wabi-sabi-child
Template: wabi-sabi
Description: A custom child theme.
Author: Moomen Ata
Version: 1.0.0
*/
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("./css/webfonts/fa-solid-900.woff2"),
       url('./css/webfontsfa-solid-900.ttf') format('truetype'); ❌
}
/* Add your custom styles here */
.map-wrapper{
    overflow: hidden;
    box-sizing: border-box;
    padding: 54px 16px 8px;
}
#worldMap {
    width: 100%;
    height: auto;
  }
  
  #worldMap circle {
    transition: fill 0.2s ease, r 0.2s ease;
    cursor: pointer;
  }
  
  #worldMap circle:hover {
    fill: #000;
  }
  
  

  /* الكلاس الأساسي للنبض */
.pulse-circle {
    transform-origin: center; /* التأكد من أن النبض يبدأ من المركز */
    animation: pulse-animation 2s infinite; /* مدة الحركة ثانيتين وتتكرر للأبد */
}

@keyframes pulse-animation {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4; /* تخفيف الإضاءة في المنتصف */
        transform: scale(1.5); /* تكبير الدائرة قليلاً */
        filter: blur(1px); /* إضافة غبش بسيط لتعزيز تأثير الضوء */
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes ripplePulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(255,0,0, 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(255,0,0, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,0,0, 0);
    }
  }
/* إضافة تأثير توهج (Glow) إضافي */
.glow {
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.7));
}

  
/* تأثير النبض المتفجر من خلف الدائرة */
@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(6); opacity: 0; }
}

.ripplePulse {
    transform-origin: center;
    transform-box: fill-box;
    animation: ripple 1.5s ease-out infinite;
    pointer-events: none; /* عشان ما يغطيش على الماوس وهو بيعمل هوفر */
}

/* تنسيق الـ Tooltip المطور */
#tooltip {
    
    position: fixed;
    /* إلغاء أي قيم left/top افتراضية */
    transform: translateX(-50%); 
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid #00c853;
    cursor: pointer;
}
#tooltip::after {
    content: "";
    position: absolute;
    top: -6px; 
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #00c853; 
}
/********************************************************************************************/
.style-line i {
    font-family: "Font Awesome 6 Free" !important; /* تأكد من كتابة الاسم صح */
    font-weight: 900; /* ضروري جداً لتظهر الأيقونات الـ Solid */
    display: inline-block;
}

/* تنسيق الـ span الحاضن */
.style-line {
    position: relative;
    display: block;
}

/* تنسيق أيقونات Font Awesome داخل الـ span */
.style-line i {
    position: absolute;
    left: 12px;
    top: 0;
    padding-top: 16px;
    transform: translateY(0%);
    z-index: 9;
    color: #ccc; /* يمكنك تغيير اللون حسب تصميمك */
}

/* لضبط مكان الأيقونة في النصوص الطويلة (textarea) */
.style-line i.fa-clipboard-question, 
.style-line i.fa-message {
    top: 20px;
    transform: none;
}

/* تأكد من وجود مسافة للنص داخل الحقول */
.style-line input, 
.style-line select, 
.style-line textarea {
    padding-left: 40px !important;
}




/*********************************************************************************************/
.darkBg .style-line input{
	color: white
}
/* الليبل */
.darkBg .style-line label,
.darkBg label {
    color: #fff;
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
}

/* تنسيق الحقول */
.darkBg .style-line input,
.darkBg .style-line select,
.darkBg .style-line textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #555;
    background: transparent;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* لون البليس هولدر */
.darkBg .style-line input::placeholder,
.darkBg .style-line select::placeholder,
.darkBg .style-line textarea::placeholder {
    color: #bbb;
    transition: color 0.3s ease;
}

/* لما يهوفر على الفيلد — البليس هولدر يبقى أبيض */
.darkBg .style-line input:hover::placeholder,
.darkBg .style-line select:hover::placeholder,
.darkBg .style-line textarea:hover::placeholder {
    color: #fff;
}

/* لما يعمل فوكس */
.darkBg .style-line input:focus,
.darkBg .style-line select:focus,
.darkBg .style-line textarea:focus {
    border-color: #fff;
    outline: none;
}
.darkBg br{
	display: none;
}
.darkBg p label{
	display: none;
}
.darkBg input[type="checkbox"] + .wpcf7-list-item-label:before{
	
	border: 1px solid #e11f1f;
}
.darkBg input[type="checkbox"]:checked + .wpcf7-list-item-label:before{
	color: #e11f1f;
	border: 1px solid #e11f1f;
}

header:has(.c1header){
	position: fixed;
    width: 100%;
    backdrop-filter: blur(10px);
	background-color: transparent !important;
}
.c1header{
	background-color: transparent !important;
}

.c1header .sc_layouts_row_type_compact .sc_layouts_item a:not(.sc_button):not([class*="button"]), [class*="scheme_"].sc_layouts_row_type_compact .sc_layouts_item a:not(.sc_button):not([class*="button"]) , .c1header .search_modern > .search_submit{
    color: white !important;
}
.c1header .menu_hover_zoom_line .sc_layouts_menu_nav > li.current-menu-item > a , .c1header [class*="scheme_"].sc_layouts_row_type_compact .sc_layouts_item a:not(.sc_button):not([class*="button"]){
    color: #e32a26 !important;
}
header.blackBg{
    background-color: #5151515c !important;
}
header.blackBg .menu_hover_zoom_line .sc_layouts_menu_nav > li:not(.menu-collapse) > a:after {
    background-color: #e32a26;
}
