/*!
Theme Name: Ohio-Child
Theme URI: http://ohio.colabr.io/
Author: Colabrio
Author URI: http://colabr.io/
Description: Ohio is a WordPress theme bundled with premium plugins to build a modern and functional website.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: ohio
Text Domain: ohio-child
Tags: ajax, customizer, ecommerce, portfolio, minimal, page builder, responsive, multipurpose, shop, store, woocommerce, wpml

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/* Generic Gradient Text Class - Can be used anywhere */
.gradient-text {
    background: linear-gradient(135deg, #ACA465 0%, #248EC9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-icon {
    background: linear-gradient(135deg, #ACA465 0%, #248EC9 100%);
    background-clip: text;
}

/* Icon Box Icon Gradient */
.icon-box .icon-box-icon i {
    background: linear-gradient(135deg, #ACA465 0%, #248EC9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-size:70px;
}

.border-padding {
    padding: 15px;
    border: 1px solid;
    margin: 0 auto;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
}

/* Benefits Section - Three Column Layout with Numbered Cards */
.benefits-section {
    padding: 30px 0;
    background-color: #ffffff;
}

.benefits-section .benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.benefits-section .benefits-heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

.benefits-section .benefits-heading .gradient-text {
    background: linear-gradient(135deg, #008080 0%, #001f3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.benefits-section .benefits-intro {
    text-align: center;
    margin-bottom: 50px;
    color: #333333;
    font-size: 18px;
    line-height: 1.6;
}

.benefits-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefits-section .benefit-card {
    position: relative;
    border-top: 1px solid #008080;
    border-right: 1px solid #008080;
    border-bottom: 1px solid #008080;
    border-left: none;
    border-radius: 0;
    padding: 25px 20px 25px 15px;
    background-color: #ffffff;
}

.benefits-section .benefit-card::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: #008080;
    border-radius: 50%;
}

.benefits-section .benefit-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 50%;
    background-color: #008080;
}

.benefits-section .benefit-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.benefits-section .benefit-number {
    font-size: 140px;
    font-weight: 700;
    background: linear-gradient(135deg, #ACA465 0%, #248EC9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin-top: -10px;
}

.benefits-section .benefit-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 5px;
}

.benefits-section .benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.benefits-section .benefit-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.sam-contact-form {
    width: 70%;
    color: #fff;
    margin: 0 auto;
}

.sam-contact-form button.btn.btn-brand {
    border-radius: 50px;
    padding: 10px 30px;
}

/* Responsive Design */
@media (max-width: 992px) {

    .benefits-section .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .benefits-section .benefit-number {
        font-size: 120px;
    }
    
    .benefits-section .benefit-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {

    .sam-contact-form {
        width: 100%;
    }

    .benefits-section {
        padding: 40px 0;
    }
    
    .benefits-section .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-section .benefit-card {
        padding: 20px 18px;
    }
    
    .benefits-section .benefit-title {
        font-size: 20px;
    }
    
    .benefits-section .benefit-description {
        font-size: 14px;
    }
    
    .benefits-section .benefits-heading {
        font-size: 28px;
        margin-bottom: 15px;
        color: #000000;
    }
    
    .benefits-section .benefits-heading .gradient-text {
        background: linear-gradient(135deg, #008080 0%, #001f3f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .benefits-section .benefits-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .benefits-section .benefit-content {
        gap: 12px;
    }
    
    .benefits-section .benefit-number {
        font-size: 100px;
    }
    
    .benefits-section .benefit-title {
        font-size: 18px;
    }
    
    .benefits-section .benefit-description {
        font-size: 14px;
    }
    
    .benefits-section .benefits-grid {
        gap: 20px;
    }
}

/* Global Reach, Diverse Expertise Section */
.global-reach-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.global-reach-section .global-reach-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.global-reach-section .global-reach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.global-reach-section .global-reach-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.global-reach-section .global-reach-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.global-reach-section .global-reach-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.global-reach-section .global-reach-subsection {
    margin-bottom: 25px;
}

.global-reach-section .global-reach-subsection-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.global-reach-section .global-reach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.global-reach-section .global-reach-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 8px;
    padding-left: 0;
}

.global-reach-section .global-reach-list li:before {
    content: "•";
    color: #248EC9;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 8px;
}

.global-reach-section .global-reach-list li.with-emoji:before {
    content: "";
    width: 0;
    margin-right: 0;
}

.global-reach-section .global-reach-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
}

.global-reach-section .client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    min-height: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.global-reach-section .client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.global-reach-section .client-logo-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 992px) {
    .global-reach-section .global-reach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .global-reach-section .global-reach-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .global-reach-section {
        padding: 40px 0;
    }
    
    .global-reach-section .global-reach-title {
        font-size: 28px;
    }
    
    .global-reach-section .global-reach-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .global-reach-section .client-logo-item {
        padding: 15px;
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .global-reach-section .global-reach-title {
        font-size: 24px;
    }
    
    .global-reach-section .global-reach-intro {
        font-size: 15px;
    }
    
    .global-reach-section .global-reach-subsection-title {
        font-size: 16px;
    }
    
    .global-reach-section .global-reach-list li {
        font-size: 15px;
    }
    
    .global-reach-section .global-reach-logos {
        display: grid !important;
        grid-auto-flow: row;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }
    
    .global-reach-section .client-logo-item {
        display: flex !important;
    }
}

/* Logo ticker */
.reach-logos {
    position: relative;
    overflow: hidden;
    padding: 24px 0;
    border-top: 1px solid #e4e7ec;
    border-bottom: 1px solid #e4e7ec;
    background: transparent;
}

  .reach-logos-track {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    animation: reachTicker 28s linear infinite;
  }

  .reach-logos-track > * {
    flex: 0 0 auto;
  }

  .logo-tile {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
    min-height: 120px;
    min-width: 160px;
    filter: grayscale(1);
  }

.logo-tile img,
.reach-logos img {
    max-height: 120px;
    width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: opacity 0.2s ease;
}

@keyframes reachTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Testimonial slider adjustments */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.testimonial-slider .clb-slider-outer-stage {
    overflow: hidden;
}

.testimonial-slider .clb-slider-stage {
    overflow: visible;
}

.testimonial-slider .clb-slider-nav-btn {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 12px;
}

.testimonial-slider .clb-slider-nav-btn .btn-round {
    pointer-events: all;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(9, 24, 45, 0.14);
    box-shadow: 0 15px 40px rgba(10, 20, 35, 0.15);
    color: #0b1f33;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.testimonial-slider .clb-slider-nav-btn .btn-round:hover {
    transform: translateY(-2px);
    background: #0b1f33;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(10, 20, 35, 0.25);
}

.testimonial-slider .clb-slider-nav-btn svg {
    stroke: currentColor;
}

.testimonial-slider .clb-slider-nav-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-slider .clb-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: none;
    background: #d2d6e1;
    transition: width .2s ease, background .2s ease;
}

.testimonial-slider .clb-slider-dot.active {
    width: 32px;
    background: linear-gradient(135deg, #ACA465 0%, #248EC9 100%);
}

.testimonial-slider .clb-slider-dot svg {
    display: none;
}

/* Contact form */
/* .contact-form {
    --contact-bg: rgba(9, 24, 45, 0.35);
    --contact-border: rgba(255, 255, 255, 0.18);
    --contact-border-active: rgba(255, 255, 255, 0.75);
    --contact-label: rgba(255, 255, 255, 0.92);
    --contact-placeholder: rgba(255, 255, 255, 0.45);
    --contact-error: #ff6b6b;
    background: var(--contact-bg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: clamp(28px, 4vw, 44px);
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 70px rgba(5, 8, 18, 0.45);
} */

.contact-form .wpcf7-form {
    display: grid;
    gap: 18px;
    color: #ffffff;
}

.contact-form .wpcf7-form p {
    margin: 0;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--contact-label);
    gap: 6px;
}

.contact-form .wpcf7-form-control-wrap {
    display: block;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--contact-border);
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    background: none !important ;
    /* background: rgba(15, 25, 45, 0.45); */
    color: #f3f6ff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill,
.contact-form textarea:-webkit-autofill:hover,
.contact-form textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #f3f6ff;
    transition: background-color 9999s ease-in-out 0s;
    box-shadow: 0 0 0px 1000px rgba(15, 25, 45, 0.65) inset;
}


.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--contact-placeholder);
}


.contact-form .btn:hover {background-color: #0A1E3D !important;border-color: #0A1E3D !important;}
.contact-form .btn {background-color: #2EC4B6 !important;border-color: #2EC4B6 !important; border-radius: 50px;}


.contact-form .wpcf7-spinner {
    margin-left: 16px;
}

.contact-form .wpcf7-response-output {
    border-radius: 12px;
    border-width: 1px;
    padding: 14px 18px;
    margin: 12px 0 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 28px 22px;
    }

    .contact-form .btn {
        width: 100%;
        justify-content: center;
    }
}