/*
Theme Name: Convoedge
Theme URI: https://example.com/convoedge
Author: Converted Theme
Author URI: https://example.com
Description: Converted from an HTML template to a minimal WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: convoedge
*/

/* Import any theme styles if needed (optional). The template's CSS files are kept in /assets/css/ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Noto+Sans:wght@400;500;600;700&display=swap');

:root {
    --font-title: 'Barlow', sans-serif;
    --font-body: 'Noto Sans', sans-serif;
    --font-poppins: 'Barlow', sans-serif;
    --font-roboto: 'Noto Sans', sans-serif;
    --font-courgette: 'Barlow', sans-serif;
    --font-billy-ohio: 'Barlow', sans-serif;
}

body,
body p,
p,
span,
li,
div,
label,
input,
textarea,
button,
.section-title p,
.single-contact .content span,
.single-contact .content a,
.language-area .language-btn span,
.search-bar .search-input .quick-search ul li,
.search-bar .search-input .quick-search ul li a,
.form-inner input,
.form-inner2 input,
.menu-list li a,
.main-menu > ul > li > a,
.main-menu > ul > li ul.sub-menu > li > a,
.mega-menu .menu-row .menu-single-item ul li > a {
    font-family: var(--font-body) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title h2,
.section-title h3,
.site-title,
.site-branding,
.main-navigation a,
.menu a,
nav a,
.main-menu > ul > li > a,
.main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title h5,
.menu-list > li > a,
.menu-list li a.drop-down {
    font-family: var(--font-title) !important;
}

/* Pixel-perfect CoachHub Scroll Section Design */
.coachhub-works-section {
      position: relative;
    /* background-color: #cfdbff; */
    overflow: clip;
    background-image: url(https://moarapps.com/convoedgev4/wp-content/themes/convoedge/assets/media/lines.png), linear-gradient(113deg, #15183d 27%, #0035aa 72%);
    background-size: cover,auto;
    justify-content: space-between;
}
.coachhub-works-section .container-fluid-custom {
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
}

.coachhub-works-section .is-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    background-color: #fedad3;
    color: #fc5139;
}

.coachhub-works-section .section-title-sticky h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    color: #110f0f;
    letter-spacing: -1px;
    font-family: 'Outfit', sans-serif;
}

/* Right side Scroll Wrap */
.coachhub-works-section .home-scroll_section {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
}

/* Left part of Right side - Scrolling Text Items */
.coachhub-works-section .home-scroll_content {
    width: 55%;
    display: flex;
    flex-direction: column;
}

.coachhub-works-section .home-scroll_text-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: opacity 0.4s ease-in-out;
    opacity: 0.4;
}

.coachhub-works-section .home-scroll_text-item:last-child {
    border-bottom: none;
    padding-bottom: 150px;
}

.coachhub-works-section .home-scroll_text-item.step-active {
    opacity: 1;
}

.coachhub-works-section .text-item-description {
    display: flex;
    gap: 24px;
}

.coachhub-works-section .number-flex {
    background-color: #feb516;
    width: 2rem;
    height: 2rem;
    color: var(--pure-white);
    border-radius: 100%;
    flex: none;
    justify-content: center;
    align-items: center;
    display: flex;
}

.coachhub-works-section .home-scroll_text-item.step-active .number-flex {
    opacity: 1;
    color: #fff;
}

.coachhub-works-section .item-content {
    flex: 1;
}

.coachhub-works-section .action-btn:hover {
    color: #1a0e9f;
    transform: translateX(4px);
}

.coachhub-works-section .action-btn svg {
    transition: transform 0.3s ease;
}

.coachhub-works-section .action-btn:hover svg {
    transform: translateX(4px);
}

/* Right part of Right side - Sticky Visual Container */
.coachhub-works-section .home-scroll_visual {
    width: 45%;
    position: -webkit-sticky;
    position: sticky;
    top: 140px;
    align-self: start;
    height: 480px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stacked images container */
.coachhub-works-section .home-scroll_img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    z-index: 2;
}

.coachhub-works-section .home-scroll_img-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coachhub-works-section .home-scroll_img-item.is-active {
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 2;
}

.coachhub-works-section .home-scroll_img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* Pink background graphic frame behind images */
.coachhub-works-section .features-decor {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    z-index: 1;
    pointer-events: none;
}

.coachhub-works-section .features-decor_frame {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coachhub-works-section .features-decor_image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
}

/* Compliance styles */
.enterprise-compliance-section-new {
    padding: 100px 0;
    background-color: #ffffff;
}

.enterprise-compliance-section-new .logos-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.enterprise-compliance-section-new .compliance-logo-wrap {
    flex: 0 0 calc(33.33% - 40px);
    max-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}

.enterprise-compliance-section-new .compliance-logo-wrap:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.enterprise-compliance-section-new .compliance-logo {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

/* Custom label wrapper for Compliance */
.custom-pill-label {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background-color: #fedad3;
    color: #fc5139;
}

.custom-pill-label.blue-pill {
    background-color: rgba(66, 81, 164, 0.1);
    color: var(--primary-color1);
}

@media (max-width: 991px) {
    .coachhub-works-section {
        padding: 60px 0;
    }
    
    .coachhub-works-section .container-fluid-custom {
        flex-direction: column;
        gap: 30px;
    }
    
    .coachhub-works-section .section-title-sticky {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }
    
    .coachhub-works-section .section-title-sticky h2 {
        font-size: 32px;
    }
    
    .coachhub-works-section .home-scroll_section {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }
    
    .coachhub-works-section .home-scroll_content {
        width: 100%;
    }
    
    .coachhub-works-section .home-scroll_visual {
        display: none !important;
    }
    
    .coachhub-works-section .home-scroll_text-item {
        min-height: auto;
        padding: 30px 0;
        opacity: 1 !important;
    }
    
    .coachhub-works-section .mobile-scroll-img {
        display: block !important;
        width: 100%;
        max-height: 280px;
        object-fit: contain;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        margin-bottom: 24px;
    }
    
    .enterprise-compliance-section-new .compliance-logo-wrap {
        flex: 0 0 calc(50% - 40px);
    }
}

/* Premium Contact Us Section Styles */
.premium-contact-section {
    position: relative;
    background-image: url(https://moarapps.com/convoedgev4/wp-content/themes/convoedge/assets/media/lines.png), linear-gradient(113deg, #15183d 27%, #0035aa 72%);
    border-radius: 40px;
    /*padding: 80px 60px;*/
    margin: 0 15px 100px 15px;
    overflow: hidden;

}


/* Background light blobs for modern feel */
.premium-contact-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(254, 181, 22, 0.12) 0%, rgba(254, 181, 22, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.premium-contact-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(66, 81, 164, 0.25) 0%, rgba(66, 81, 164, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.premium-contact-section .container-fluid {
    position: relative;
    z-index: 2;
}

/* Contact Pill */
.contact-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #feb516;
    margin-bottom: 24px;
}

.contact-pill-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #feb516;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(254, 181, 22, 0.7);
    animation: contact-pulse 1.6s infinite;
}

@keyframes contact-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(254, 181, 22, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(254, 181, 22, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(254, 181, 22, 0);
    }
}

/* Modern inputs */
.premium-contact-section .form-control {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    padding: 16px 24px !important;
    color: #fff !important;
    font-size: 15px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.premium-contact-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.premium-contact-section .form-control:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(254, 181, 22, 0.6) !important;
    box-shadow: 0 0 20px rgba(254, 181, 22, 0.15) !important;
    outline: none !important;
}

/* Submit Button */
.premium-submit-btn {
    background: #feb516;
    color: #111430 !important;
    padding: 8px 8px 8px 30px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(254, 181, 22, 0.3);
}

.premium-submit-btn .btn-arrow-circle {
    background: #111430;
    color: #feb516;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-submit-btn:hover {
    background: #fff;
    color: #feb516 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

.premium-submit-btn:hover .btn-arrow-circle {
    background: #feb516;
    color: #fff;
    transform: rotate(45deg);
}

/* Image container with floating card */
.premium-image-container {
    position: relative;
    border-radius: 30px;
    overflow: visible;
    height: 100%;
}

/*.premium-image-container .contact-img-wrapper {*/
/*    border-radius: 30px;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);*/
/*    border: 1px solid rgba(255, 255, 255, 0.05);*/
/*    height: 100%;*/
/*}*/

.premium-image-container img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-image-container:hover img {
    transform: scale(1.03);
}

/* Floating Status Card over the Image */
.floating-status-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: #151548;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.floating-status-card:hover {
    transform: translateY(-5px);
}

.floating-status-card .status-icon {
    width: 42px;
    height: 42px;
    background: rgba(254, 181, 22, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #feb516;
    font-size: 18px;
}

.floating-status-card .status-info h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 3px 0;
}

.floating-status-card .status-info p {
    color: rgba(255, 255, 255, 0.60);
    font-size: 12px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.floating-status-card .pulse-green {
    width: 8px;
    height: 8px;
    background-color: #2ec4b6;
    border-radius: 50%;
    animation: pulse-green-glow 1.5s infinite;
}

@keyframes pulse-green-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(46, 196, 182, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0);
    }
}

@media (max-width: 991px) {
    .premium-contact-section {
        /*padding: 50px 25px;*/
        margin-bottom: 60px;
    }
    .floating-status-card {
        position: static;
        margin-top: 20px;
        width: 100%;
        box-sizing: border-box;
    }
}
