/* 
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 */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #0073aa;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
#back-to-top.show {
    opacity: 1;
    visibility: visible;
}
#back-to-top:hover {
    transform: scale(1.1);
}
.client-rating {
    font-size: 24px;
    color: gold; 
    letter-spacing: 3px; 
}
/****single review***/
.rtl.client_testimonial-template-default.single.single-client_testimonial,
.rtl.portfolio-template-default.single.single-portfolio{
    background: #06080c;
}



.partners-logo img {
    width: 300px;
    height: 60px;
    object-fit: contain;
}

/*****portfoli gallery *****/
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.portfolio-gallery a {
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.portfolio-gallery img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.portfolio-gallery a:hover img {
    transform: scale(1.05);
}


/****comments****/
h2#reply-title,span.required-field-message,p.logged-in-as,#commentform > p.comment-form-comment > label {
    color: #f7f7f7 !important;
}
#commentform > p.logged-in-as > a {
    color: #0775a8;
}

input#submit{
display: inline-block;
    color: #cfcfcf !important;
    border: 1px solid #0775a8 !important;
    float:left;
    border-radius:5px !important;
}
input#submit:hover{
  border-color: #31e921 !important;
  background-color:transparent !important;
}