/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Description: A child theme for Hello Elementor
Author: Your Name
Author URI: https://yourwebsite.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-child
*/

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: #2B0948;
    border-radius: 20px;
}


* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
  direction: rtl;
}

.service-box {
    background: linear-gradient(12deg, #471e6a, #532044);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide .e-con-inner {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
}

.form .wpforms-title {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
}

.form .wpforms-field {
    padding: 10px !important;
}


div.wpforms-container-full select:not([multiple])>option:not(.placeholder):checked {
    font-weight: 500 !important;
}

.contact-form select {
    -webkit-appearance: none !important;
}

.form .wpforms-field-large {
    border: none !important;
    background-color: #f0f0f1 !important;
    color: #322a2a;
    font-weight: 500 !important;
    font-size: 14px;
    appearance: auto;
}

.form .wpforms-field-large:focus {
    box-shadow: none !important;
}

.form .wpforms-submit-container {
    width: 100%;
    padding-right: 10px;
}

.form button {
    width: 100% !important;
}

@media only screen and (max-width: 600px) {
    .form .wpforms-field-label {
        font-size: 13px !important;
    }
}

@media only screen and (max-width: 600px) {
    .form .wpforms-field-large {
        font-size: 13px !important;
    }
}

.book-page {
    display: none;
    width: 100%;
}
.book-page.active-page {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.book {
    position: relative;
    width: 100%;
    height: 350px;
    z-index: 9999;
    border-radius: 10px 10px 0 0;
    background-color: #fff;
    transform: preserve-3d;
    perspective: 2000px;
    display: flex;
    justify-content: center;
    color: #000;
    text-align: center;
}

.content {
    width: 100%;
    padding: 27px 35px;
    border-radius: 0 10px 10px 0;
    box-shadow: 8px 8px 16px rgba(174, 179, 204, 0.7),
                -8px -8px 16px rgba(255, 255, 255, 0.8),
                inset 1px 1px 0px rgba(255, 255, 255, 0.5);
}

.cover {
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;  
    background: linear-gradient(45deg, #471e6a, #532044);
    background-size: cover;
    transform-origin: left; 
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transition: transform 0.5s ease;
    cursor: grab;
    transform: rotateY(0deg);
        z-index: 999;
}

.cover h2 {
    color: white;
    font-size: 24px;
}

.cover p {
    color: white;
    padding: 0 15px;
}

.content .book-page p {
    text-align: justify;
    line-height: 2rem;
    color: var(--e-global-color-text);
}

.content .book-page h2 {
    font-size: 19px;
    text-align: justify;
    color:var( --e-global-color-accent );
    line-height: 2.3rem;
}

.cover > h2 > span {
    color: #1076c9;
    font-size: 28px;
    font-weight: bolder;
    position: absolute;
    bottom: 20px;
    color: white;
}

.content > p {
    margin-bottom: 10px;
}

.book-navigation {
    text-align: center;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.book-navigation button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d1d9e0;
    background-color: #ffffff;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.book-navigation button:hover:not(:disabled) {
    background-color: #0a2a43;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.book-navigation button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.book-navigation button:disabled {
    background-color: #f0f3f5;
    color: #b0b8c0;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.list-header .elementor-icon-list-icon {
    background: #3A6C8E;
    padding: 8px 5px 8px 7px;
    border-radius: 5000px;
}

@media (max-width: 768px) {
    .book {
        height: auto;
        min-height: 400px; 
        perspective: 1500px;
    }
    
    .list-header .elementor-icon-list-items {
        gap: 25px 0;
        justify-content: space-between;
    }

    .content {
        padding: 20px; 
    }

    .content .book-page h2 {
        font-size: 17px;
        line-height: 1.8rem;
    }

    .content .book-page p {
        line-height: 1.7rem;
    }

    .cover h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .book {
        min-height: 350px;
    }

    .content {
        padding: 15px; 
    }

    .content .book-page h2 {
        font-size: 16px;
        line-height: 1.6rem;
    }

    .content .book-page p {
        font-size: 15px;
        line-height: 1.6rem;
    }
    
    .cover h2 {
        font-size: 1.3rem;
    }

    .cover p {
        font-size: 0.9rem;
    }

    .book-navigation {
        margin-top: 20px;
    }
    .hidden-book {
            overflow: hidden !important;
    }
    .box-services:last-child {
  grid-column: span 2;
}
}
.posts h2 {
    color: var( --e-global-color-primary ) !important;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 20px;
}

.posts h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8em;
    margin-bottom: 5px;
	color: #FF7400;
}

.posts h4 {
    color: #000 !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6em;
    margin-bottom: 0;
    margin-top: 20px;
}

.posts h5 {
    color: #000 !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6em;
    margin-bottom: 0;
    margin-top: 20px;
}

.posts p[style*="text-align: center"] {
    background-color: #f2f5f5;
    border-right: 6px solid var(--e-global-color-primary);
    margin: 10px 0;
    border-radius: 5px;
    padding: 6px;
    text-align: right !important;

}

.posts p:has(img) {
    display: flex
;
    flex-direction: column;
    align-items: center;
}

.posts p[style*="text-align: center"] span {
    background-color: transparent !important;

}

.posts img {
    border-radius: 10px !important;
	  margin-bottom: 10px;
}

.posts p {
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 2.4rem;
	  margin-block-end: unset;
	  margin-bottom:5px;
}

.posts p span {
	font-size: 16px !important;
}

.posts a {
	font-size: 17px;
    color: var( --e-global-color-accent );
    font-weight: 600;
    background-color: transparent !important;
}

.posts ul {
    padding: 0px 7px 0px 7px;
    display: flex;
    flex-direction: column;
}

table {
    margin-top: 20px;
}

table thead {
    background: #4CAF50;
    color: white;
}

.posts ol {
	  padding: 0px 7px 0px 7px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media only screen and (max-width: 600px) {
    .posts h2 {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.7em;
        margin-bottom: 0px;
        text-align: center;
        margin-top: 3px;

    }
}

@media only screen and (max-width: 600px) {
    .posts h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 0px;
        margin-right: -4px;
        margin-left: -17px;
    }
}

@media only screen and (max-width: 600px) {
    .posts h4 {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.5em;
        margin-bottom: 0px;
        margin-right: -4px;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 600px) {
    .posts p {
        margin-bottom: 0px;
        margin-top: 3px;
    }

    .posts p[style*="text-align: center"] span {
        font-size: 12px !important;
        font-weight: 700;
    }
    .posts p[style*="text-align: center"] a {
        font-size: 14px !important;
    }
}

.posts ul li {
    display: flex;
    align-items: baseline;
    position: relative;
    padding: 5px 0px 5px 0px;
}

.posts ul li b {
	    color: black;
}
.posts ol li {

    align-items: baseline;
    position: relative;
    padding: 5px 0px 5px 0px;
}

.posts ul li:before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #FE0207;
    border-radius: 50%;
    margin-left: 10px;
    border: 2px solid #FE0207;
}

#ez-toc-container {
	display:none;
}

