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

html,
body {
    font-family: ui-sans-serif, system-ui, sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol',
        'Noto Color Emoji' !important;
    color: #111;
    color: oklch(0.145 0 0);
}

/* ===== Headings ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: inherit !important;
    font-weight: 600;
}
.elementor-widget-container p {
    font-family: ui-sans-serif, system-ui, sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol',
        'Noto Color Emoji' !important;
}

/* ===== Buttons ===== */
button,
.elementor-button {
    font-family: inherit !important;
}

/* ===== Forms ===== */
input, textarea, select {
    font-family: inherit !important;
}

/* ===== Elementor specific fix ===== */
.elementor-icon i,
.elementor-icon svg,
.elementor-icon *,
.fa,
.elementor-section [class*="fa-"] {
    font-family: "Font Awesome 5 Free" !important;
}
.eicon,
[class*="eicon"] {
    font-family: "eicons" !important;
}
.elementor-widget-heading *,
.elementor-widget-text-editor *,
.elementor-widget-icon-box *,
.swiper-slide-contents * {
    font-family: inherit !important;
}

.zigzag-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 40px 15px;
}

/* Row */
.zigzag-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

/* Alternate */
.zigzag-row.reverse {
    flex-direction: row-reverse;
}

/* Image */
.zigzag-img {
    flex: 1;
}

.zigzag-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Content */
.zigzag-content {
    flex: 1;
}

.zigzag-content .icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.zigzag-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.zigzag-content p {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 15px;
}

/* Button */
.zigzag-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #1e3a5f;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .zigzag-row,
    .zigzag-row.reverse {
        flex-direction: column;
    }
}

.custom-breadcrumb {
    font-size: 14px;
    border-radius: 6px;
    color: #4a5565;
}

.custom-breadcrumb a {
    color: #4a5565;
    text-decoration: none;
}

.custom-breadcrumb a:hover {
    color: #0A2647;
}

.custom-breadcrumb .current {
    color: #0A2647;
    font-weight: 400;
}

.quote-popup {
    display: none;
    position: fixed;
    inset: 0;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.quote-box {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    z-index: 2;
}

.quote-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content strong, .post-content b {
    font-weight: 600;
    color: #1F2937;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Row layout */
.form-row {
    display: flex;
    gap: 15px;
}

/* Group */
.form-group {
    flex: 1;
}

/* Full width */
.form-group.full {
    width: 100%;
}

/* Inputs */
.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: #f9fafb;
    transition: all 0.3s ease;
}

/* Focus */
.form-control:focus {
    border-color: #1e3a5f;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
    outline: none;
}

/* Textarea */
textarea.form-control {
    resize: none;
}

/* Button */
.premium-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1e3a5f, #2b6cb0);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30,58,95,0.2);
}

/* Error */
.wpcf7-not-valid {
    border-color: #dc2626 !important;
}

/* Error text */
.wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
}

/* Success message */
.wpcf7-response-output {
    margin-top: 10px;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

.home-slider .elementor-swiper-button.elementor-swiper-button-prev, .home-slider .elementor-swiper-button.elementor-swiper-button-next {
    position: absolute;
    top: 50%;
    background: #ffffffcf;
    z-index: 9;
    border-radius: 50%;
    padding: 0px 6px;
    cursor: pointer;
}
.home-slider .elementor-swiper-button.elementor-swiper-button-prev{
    left: 10px;
}
.home-slider .elementor-swiper-button.elementor-swiper-button-next{
    right: 10px;
}
.home-slider .swiper-slide-inner .swiper-slide-contents {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 10px;
}
.faq-contact .ekit-wid-con .elementskit-single-faq {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    margin-bottom: 15px;
    border-radius: 10px;
}
.our-gallery a.elementor-item.elementor-gallery-title:before {
    border-radius: 50px;
}
.service-parent ul.sub-menu.elementor-nav-menu--dropdown {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    background: #fff;
    border-radius: 10px;
    width: 200px !important;
}
.service-parent ul.sub-menu.elementor-nav-menu--dropdown a.elementor-sub-item {
    border: 0 !important;
    color: #364153;
}
.service-parent ul.sub-menu.elementor-nav-menu--dropdown a.elementor-sub-item:hover {
    color: #0A2647;
    background: #f6f3f4;
}
li.services-child.menu-item.menu-item-type-custom a.elementor-sub-item {
    background: #2C74B3 !important;
    color: #fff !important;
}
.home-slider a.elementor-button:after {
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    padding-left: 14px;
}
.custom-arrow{
    padding-left: 5px;
    font-weight: 400;
}
.elementor-posts .elementor-post__read-more{
    font-weight: 400;
}
.printing-service .elementor-post__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.equal-box .elementor-row {
    display: flex;
}
.equal-box .elementor-column {
    display: flex;
}
.equal-box .elementor-widget-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.equal-box .elementor-widget {
    flex: 1;
}
.equal-box .elementor-column {
    display: flex;
}
.equal-box .elementor-widget-wrap {
    display: flex;
}
.equal-box .elementor-widget-icon-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.2);
}
.custom-list {
    list-style: none;
    padding-left: 0;
}
.custom-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
}
.custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c74b3' stroke-width='2'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'/%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}