/* =================================

Button

===================================*/

.main-btn {

    padding: 8px 30px;

    display: inline-block;

    text-transform: uppercase;

    position: relative;

    font-weight: 600;

    -webkit-transition: all 0.4s;

    transition: all 0.4s;

    border-width: 2px;

    border-style: solid;

    border-color: #fff;

    color: #fff;

    overflow: hidden;

    background: rgba(255,255,255,0.2);

    z-index: 2;

}

.main-btn:hover,

.main-btn:active,

.main-btn:focus{

    z-index: 3;

    background: #ffffff;

    border-width: 2px;

    border-style: solid;

    cursor: pointer;

}

.main-btn:after {

    content: '';

    position: absolute;

    z-index: -1;

    -webkit-transition: all 0.4s;

    transition: all 0.4s;

    width: 100%;

    height: 0;

    top: 50%;

    left: 50%;

    background: #fff;

    opacity: 0;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";

    -webkit-transform: translateX(-50%) translateY(-50%);

    transform: translateX(-50%) translateY(-50%);

}

.main-btn:hover:after, 

.main-btn:focus:after,

.main-btn:active:after {

    height: 100%;

    opacity: 1;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";

}



/* =================================

Button Another Style

===================================*/

.main-btn.main-btn2 {

    border-width: 2px;

    border-style: solid;

    position: relative;

    color: #ffffff;

}

.main-btn.main-btn2:hover, 

.main-btn.main-btn2:active, 

.main-btn.main-btn2:focus {

    background: #ffffff;

}



/* =================================

Small Button

===================================*/

.main-btn-small{

    padding: 8px 16px !important;

    letter-spacing: 0px;

    font-weight: 400;

    font-size: 15px;

}

.read-more {

    border-width: 1px;

    border-style: solid;

    padding: 5px 15px;

    display: inline-block;

    border-radius: 6px;

    border-color: #dddddd;

}

.read-more:hover {

    color: #ffffff;

}



/* =================================

Preloader Style

===================================*/

.spinner-section{

    width: 100%;

    height: 100vh;

    min-height: 100vh;

    background: #000;

    position: fixed;

    z-index: 999999;

}

.spin-cell {

    height: 100%;

    width: 100%;

    -webkit-transform: translateY(50%);

            transform: translateY(50%);

    margin-top: -40px;

}

.spinner {

    width: 80px;

    height: 80px;

    position: relative;

    margin: 0 auto;

}

.double-bounce1, .double-bounce2 {

    width: 100%;

    height: 100%;

    border-radius: 50%;

    background-color: #fff;

    opacity: 0.9;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";

    position: absolute;

    top: 0;

    left: 0;

    border: 1px solid #fff;

    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;

    animation: sk-bounce 2.0s infinite ease-in-out;

}

.double-bounce2 {

    -webkit-animation-delay: -1.0s;

    animation-delay: -1.0s;

    border: 1px solid #333;

    opacity: 0.8;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";

}



@-webkit-keyframes sk-bounce {

    0%, 100% { -webkit-transform: scale(0.0) }

    50% { -webkit-transform: scale(1.0) }

}

@keyframes sk-bounce {

    0%, 100% { 

    transform: scale(0.0);

    -webkit-transform: scale(0.0);

    } 50% { 

    transform: scale(1.0);

    -webkit-transform: scale(1.0);

    }

}



/* =================================

Owl Carousel Dots Style

===================================*/

.owl-dots {

    text-align: center;

    padding-top: 15px;

}

.owl-dots .owl-dot {

    display: inline-block;

}

.owl-dots .owl-dot span {

    border-width: 2px;

    border-style: solid;

    border-radius: 30px;

    display: block;

    height: 15px;

    margin: 5px;

    width: 15px;

    filter: Alpha(Opacity=500);/*IE7 fix*/

    opacity: 0.75;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";

    -webkit-transition: all 0.3s;

    transition: all 0.3s;

}

.owl-dots .owl-dot.active span, 

.owl-dots .owl-dot:hover span {

    filter: Alpha(Opacity=100);/*IE7 fix*/

    opacity: 1;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";

}



/* =================================

Owl Carousel Navigation Style

===================================*/

.owl-prev, 

.owl-next {

    position: absolute;

    left: 0;

    right: auto;

    height: 100%;

    width: 60px;

    display: inline-block;

    top: 50%;

    -webkit-transform: translateY(-50%);

            transform: translateY(-50%);

    border-radius: 10px 0px 0px 10px;

}

.owl-next {

    right: 0;

    left: auto;

    border-radius: 0px 10px 10px 0px;

}

.owl-nav button span {

  font-size: 80px;

  line-height: 40px;

    color: #ffffff;

    -webkit-transition: all 0.3s ease-in-out;

    transition: all 0.3s ease-in-out;

}

.owl-nav button:hover span{

    color: #444444;

}

/* =================================
SYD refresh 2026
===================================*/
.hero-grid {
    min-height: 100vh;
    padding-top: 90px;
    padding-bottom: 40px;
}
.hero-content {
    max-width: 680px;
}
.hero-kicker {
    display: inline-block;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(118,185,71,0.18);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.hero-content h1 {
    font-size: 54px;
    line-height: 1.08;
    margin-bottom: 20px;
}
.hero-content h1 span {
    color: #76B947;
}
.hero-lead {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    max-width: 620px;
    margin-bottom: 25px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    color: #fff;
    font-size: 15px;
}
.hero-highlights i {
    margin-right: 8px;
    color: #76B947;
}
.hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    padding: 28px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.hero-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}
.hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}
.hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hero-card-list li:last-child { border-bottom: 0; }
.hero-card-list i {
    font-size: 18px;
    color: #76B947;
    margin-top: 3px;
}
.hero-card-footer {
    background: rgba(0,0,0,0.18);
    padding: 16px;
    border-radius: 14px;
}
.hero-card-footer p {
    margin: 6px 0 0;
    color: rgba(255,255,255,0.9);
}
.value-section {
    background: #ffffff;
}
.value-cards {
    margin-top: 10px;
}
.value-card, .process-card, .contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 24px;
    box-shadow: 0 14px 40px rgba(31,41,55,0.08);
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.value-card:hover, .process-card:hover, .contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(31,41,55,0.12);
}
.value-card i, .contact-card i {
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    border-radius: 16px;
    background: rgba(118,185,71,0.12);
    color: #76B947;
    font-size: 28px;
    margin-bottom: 22px;
}
.value-card h3, .process-card h3, .contact-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.process-list {
    margin-top: 10px;
}
.process-card {
    position: relative;
    padding-top: 78px;
}
.process-card span {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #76B947;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-cards {
    margin-top: 10px;
}
.contact-card a {
    color: #76B947;
    font-weight: 700;
    word-break: break-word;
}
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 9999;
    box-shadow: 0 16px 30px rgba(37,211,102,0.35);
}
.whatsapp-float:hover,
.whatsapp-float:focus {
    color: #fff;
    transform: scale(1.06);
}
.best-clients a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(31,41,55,0.06);
}
.footer-logo img {
    max-width: 160px;
}
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-card {
        margin-top: 26px;
    }
}
@media (max-width: 767px) {
    .hero-grid {
        padding-top: 110px;
    }
    .hero-content h1 {
        font-size: 34px;
    }
    .hero-lead {
        font-size: 16px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-btn {
        width: 100%;
        text-align: center;
    }
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 28px;
        right: 16px;
        bottom: 16px;
    }
}


/* =================================
Hero contrast hotfix
===================================*/
.banner-background:after {
    opacity: 0.5 !important;
}
.hero-content {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.34);
    padding: 28px 32px;
    border-radius: 18px;
    backdrop-filter: blur(3px);
}
.hero-kicker {
    background: rgba(118,185,71,0.24);
    color: #ffffff !important;
}
.hero-content h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.hero-content h1 span {
    color: #76B947 !important;
}
.hero-lead,
.hero-highlights,
.hero-highlights span,
.hero-card,
.hero-card p,
.hero-card li,
.hero-card span {
    color: #ffffff !important;
}
.hero-card {
    position: relative;
    z-index: 3;
    background: rgba(0,0,0,0.34);
    border-color: rgba(255,255,255,0.2);
}
.hero-card-footer {
    background: rgba(255,255,255,0.08);
}
@media (max-width: 767px) {
    .hero-content {
        padding: 22px 18px;
    }
}


/* Founders section */
.founders-grid {
    margin-top: 20px;
    row-gap: 30px;
}
.founder-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    height: 100%;
}
.founder-card .team-box img {
    width: 100%;
    display: block;
}
.founder-card figcaption {
    padding: 22px 15px;
    text-align: center;
}
@media (min-width: 992px) {
    .founders-grid .col-lg-5 {
        max-width: 430px;
    }
}


.wa-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:#fff;
padding:14px 18px;
border-radius:30px;
font-weight:600;
z-index:999;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}
.wa-float:hover{
background:#1ebc59;
color:#fff;
}


/* Cases section */
.case-box{
    background:#fff;
    border:1px solid rgba(0,0,0,0.06);
    border-radius:14px;
    padding:36px 28px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
    height:100%;
    transition:transform .25s ease, box-shadow .25s ease;
    margin-bottom:30px;
}
.case-box:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,0.1);
}
.case-box h4{
    margin-bottom:14px;
}
#casos .heading,
#about .heading{
    margin-bottom:40px;
}

/* CTA float */
.wa-float{
    min-width:58px;
}
.wa-float span{
    display:inline-block;
}
@media (max-width: 767px){
    .wa-float{
        right:16px;
        bottom:16px;
        padding:12px 14px;
        border-radius:24px;
    }
    .wa-float span{
        font-size:14px;
    }
}


/* ===== Startup-style motion ===== */
:root{
    --syd-ease:cubic-bezier(.22,1,.36,1);
    --syd-shadow-soft:0 10px 30px rgba(0,0,0,.06);
    --syd-shadow-hover:0 18px 40px rgba(0,0,0,.12);
}
html{
    scroll-behavior:smooth;
}
.startup-reveal{
    opacity:0;
    transform:translate3d(0,28px,0);
    transition:opacity .8s var(--syd-ease), transform .8s var(--syd-ease);
    will-change:opacity, transform;
}
.startup-reveal.is-visible{
    opacity:1;
    transform:translate3d(0,0,0);
}
.startup-reveal[data-reveal="zoom"]{
    transform:scale(.97);
}
.startup-reveal[data-reveal="zoom"].is-visible{
    transform:scale(1);
}
.startup-reveal[data-reveal="fade"]{
    transform:none;
}
.startup-reveal[data-reveal="fade"].is-visible{
    transform:none;
}
.single-service,
.single-funfacts,
.case-box,
.founder-card,
.contact-box,
.single-price,
.single-post{
    transition:transform .28s var(--syd-ease), box-shadow .28s var(--syd-ease), border-color .28s var(--syd-ease);
    backface-visibility:hidden;
}
.single-service:hover,
.single-funfacts:hover,
.case-box:hover,
.founder-card:hover,
.contact-box:hover,
.single-post:hover{
    transform:translateY(-8px);
    box-shadow:var(--syd-shadow-hover);
}
.team-box,
.case-box,
.single-service,
.single-funfacts{
    overflow:hidden;
}
.team-box img,
.single-member img,
.single-service i,
.single-funfacts i{
    transform:translateZ(0);
}
.hero-btn a,
.btn,
button,
.single-service a{
    transition:transform .22s var(--syd-ease), box-shadow .22s var(--syd-ease), background-color .22s var(--syd-ease), color .22s var(--syd-ease);
}
.hero-btn a:hover,
.btn:hover,
button:hover{
    transform:translateY(-2px);
    box-shadow:var(--syd-shadow-soft);
}
.case-box,
.founder-card{
    box-shadow:var(--syd-shadow-soft);
}
.heading h2{
    letter-spacing:-0.02em;
}
p{
    text-wrap:pretty;
}
img{
    height:auto;
}
@media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    .startup-reveal,
    .single-service,
    .single-funfacts,
    .case-box,
    .founder-card,
    .contact-box,
    .single-post,
    .hero-btn a,
    .btn,
    button{
        transition:none !important;
        animation:none !important;
        transform:none !important;
        opacity:1 !important;
    }
}


/* Home banner with static optimized image */
.banner-section{
    background-image: linear-gradient(rgba(7,16,29,.68), rgba(7,16,29,.68)), url('assets/img/bgc-1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.banner-background{
    background: transparent !important;
}
.page-hero{
    padding: 140px 0 90px;
    background-image: linear-gradient(rgba(7,16,29,.70), rgba(7,16,29,.70)), url('assets/img/bgc-1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.page-hero__content h1,
.page-hero__content p,
.page-hero__content .hero-kicker{
    color:#fff;
}


/* =================================
Mobile-first optimization 2026
=================================== */
@media (max-width: 991.98px){
    header{
        background: rgba(7,16,29,.96);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 24px rgba(0,0,0,.18);
    }
    .navbar.navbar-expand-lg.syd-nav{
        padding: 10px 16px !important;
    }
    .syd-brand img{
        max-height: 40px;
        width: auto;
    }
    .navbar-toggler{
        padding: 6px 10px;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 10px;
        background: rgba(255,255,255,.06);
    }
    .navbar-toggler:focus{
        outline: none;
        box-shadow: none;
    }
    .mainmenu{
        background: rgba(10,19,33,.98);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 14px;
        margin-top: 12px;
        padding: 10px 10px 6px;
        box-shadow: 0 18px 40px rgba(0,0,0,.22);
    }
    .mainmenu .navbar-nav{
        gap: 2px;
    }
    .mainmenu .navbar-nav li{
        width: 100%;
    }
    .mainmenu .navbar-nav li a{
        padding: 12px 12px !important;
        border-radius: 10px;
        font-size: 15px;
        line-height: 1.3;
    }
    .navbar-nav li a:before,
    header.affix a.nav-link:before{
        display: none !important;
    }

    .banner-section{
        min-height: auto;
    }
    .hero-grid{
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 28px;
        row-gap: 18px;
    }
    .hero-content{
        max-width: 100%;
        text-align: left;
    }
    .hero-kicker{
        font-size: 11px;
        line-height: 1.4;
        padding: 7px 11px;
        margin-bottom: 14px;
    }
    .hero-content h1{
        font-size: 32px;
        line-height: 1.12;
        margin-bottom: 14px;
        letter-spacing: -.02em;
    }
    .hero-lead{
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 18px;
    }
    .hero-actions{
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 14px;
    }
    .hero-actions .main-btn{
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 14px 16px;
        font-size: 15px;
    }
    .hero-secondary-cta{
        display: none !important;
    }
    .hero-highlights{
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        font-size: 14px;
    }
    .hero-highlights span{
        display: flex;
        align-items: flex-start;
        line-height: 1.45;
    }
    .hero-card{
        display: none;
    }

    .space-equal{
        padding-top: 52px !important;
        padding-bottom: 52px !important;
    }
    .heading{
        margin-bottom: 26px !important;
    }
    .heading h1,
    .heading h2{
        font-size: 28px;
        line-height: 1.18;
        margin-bottom: 12px;
        letter-spacing: -.02em;
    }
    .heading p{
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .service-list{
        display: block !important;
        margin: 0 -4px;
    }
    .single-service{
        width: 100%;
        max-width: 100%;
        margin-bottom: 14px;
        padding: 24px 18px !important;
        border-radius: 16px;
    }
    .single-service h3{
        font-size: 20px;
        line-height: 1.25;
        margin-bottom: 10px;
    }
    .single-service p{
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 0;
    }
    .single-service i{
        font-size: 30px;
        margin-bottom: 14px;
    }
    .overlay-number{
        font-size: 34px !important;
        opacity: .08;
    }

    .single-funfacts{
        padding: 24px 14px !important;
        margin-bottom: 12px;
    }
    .single-funfacts h2{
        font-size: 15px;
        line-height: 1.4;
    }
    .single-funfacts .meter{
        font-size: 28px;
    }

    .case-box{
        padding: 24px 18px;
        border-radius: 16px;
        margin-bottom: 14px;
    }
    .case-box h4{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .case-box p{
        font-size: 14px;
        line-height: 1.7;
    }

    .founders-grid{
        row-gap: 14px;
    }
    .founder-card{
        border-radius: 16px;
    }
    .founder-card figcaption{
        padding: 18px 14px;
    }

    .syd-cta-section{
        padding-top: 44px !important;
        padding-bottom: 44px !important;
    }
    .syd-cta-section h2{
        font-size: 28px;
        line-height: 1.18;
        margin-bottom: 12px;
    }
    .syd-cta-section p{
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    .syd-cta-section .btn{
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
    }

    .contact-box,
    .single-post,
    .single-price{
        padding: 22px 18px !important;
        border-radius: 16px;
        margin-bottom: 14px;
    }
    .contact-box p,
    .contact-box a,
    .single-post p{
        font-size: 14px;
        line-height: 1.65;
    }

    .wa-float{
        bottom: 14px !important;
        right: 14px !important;
        left: 14px;
        width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 13px 16px !important;
        border-radius: 14px !important;
        font-size: 15px;
    }
    .wa-float span{
        font-size: 15px;
    }

    .startup-reveal,
    .startup-reveal.is-visible{
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 575.98px){
    .container,
    .container-fluid{
        padding-left: 16px;
        padding-right: 16px;
    }
    .hero-grid{
        padding-top: 104px;
    }
    .hero-content h1{
        font-size: 28px;
    }
    .heading h1,
    .heading h2,
    .syd-cta-section h2{
        font-size: 25px;
    }
    .hero-lead,
    .heading p,
    .syd-cta-section p{
        font-size: 14px;
    }
    .main-btn,
    .btn{
        min-height: 48px;
    }
}

/* Tablet tuning */
@media (min-width: 576px) and (max-width: 991.98px){
    .hero-grid{
        padding-top: 118px;
    }
    .hero-content h1{
        font-size: 38px;
    }
    .single-service,
    .case-box{
        min-height: auto;
    }
}


/* UI fixes March 2026 */
.value-section .heading h2:before,
.value-section .heading h2:after{
    display:none !important;
    content:none !important;
}
.value-section .heading:before,
.value-section .heading:after{
    display:none !important;
    content:none !important;
}

.single-funfacts{
    overflow: visible !important;
}
.single-funfacts .meter{
    display:block;
    font-size: 42px;
    line-height: 1.1;
    margin: 8px 0 10px;
    padding-bottom: 2px;
}
.single-funfacts h2{
    line-height: 1.35;
    word-break: normal;
}

.best-clients{
    border: 0 !important;
    padding: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}
.best-clients .owl-stage{
    display:flex;
    align-items:stretch;
}
.best-clients .owl-item{
    display:flex;
    height:auto;
}
.best-clients a{
    width:100%;
    min-height: 108px;
}
.best-clients img{
    max-width:100%;
    max-height:56px;
    width:auto !important;
    height:auto !important;
    object-fit:contain;
    margin:0 auto;
    opacity:1;
    filter:none;
    -webkit-filter:none;
}

.contact-card i{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
.contact-card .fa-envelope{
    font-size:26px;
}

@media (max-width: 991.98px){
    .single-funfacts .meter{
        font-size: 34px;
        line-height: 1.12;
    }
    .best-clients a{
        min-height: 94px;
        padding: 14px;
        border-radius: 14px;
    }
    .best-clients img{
        max-height:48px;
    }
}
@media (max-width: 575.98px){
    .single-funfacts{
        padding: 20px 12px !important;
    }
    .single-funfacts .meter{
        font-size: 32px;
        line-height: 1.1;
        margin-top: 6px;
    }
    .single-funfacts h2{
        font-size:14px;
    }
    .best-clients a{
        min-height: 82px;
        padding: 12px;
    }
    .best-clients img{
        max-height:42px;
    }
}


/* Ensure value card icons always render visibly */
.value-card i{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    vertical-align:middle;
}


/* Fix desktop overlap between logo/header and hero content */
@media (min-width: 992px){
    .navbar.navbar-expand-lg.syd-nav{
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .navbar-brand img,
    .syd-brand img,
    .logo-light{
        max-height: 120px;
        width: auto;
    }

    .hero-grid{
        padding-top: 160px !important;
    }

    .hero-content{
        max-width: 640px;
    }
}

@media (min-width: 1200px){
    .hero-grid{
        padding-top: 175px !important;
    }

    .navbar-brand img,
    .syd-brand img,
    .logo-light{
        max-height: 132px;
    }
}


/* Mobile fixes: logo size and hero text alignment */
@media (max-width: 991.98px){
    .navbar.navbar-expand-lg.syd-nav{
        padding: 12px 18px !important;
    }

    .navbar-brand,
    .syd-brand{
        display: inline-flex;
        align-items: center;
    }

    .navbar-brand img,
    .syd-brand img,
    .logo-light,
    .logo-dark{
        max-height: 64px !important;
        width: auto !important;
    }

    .hero-grid{
        padding-top: 72px !important;
        padding-bottom: 26px !important;
    }

    .hero-content{
        max-width: 100% !important;
        text-align: left !important;
        margin: 0 !important;
    }

    .hero-kicker{
        display: inline-block !important;
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-content h1,
    .hero-lead,
    .hero-highlights,
    .hero-highlights span{
        text-align: left !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-content h1{
        font-size: 28px !important;
        line-height: 1.18 !important;
        margin-top: 14px !important;
        margin-bottom: 14px !important;
    }

    .hero-lead{
        font-size: 16px !important;
        line-height: 1.65 !important;
        max-width: 100% !important;
    }

    .hero-actions{
        align-items: stretch !important;
        justify-content: flex-start !important;
    }

    .hero-actions .main-btn{
        text-align: center !important;
    }

    .hero-highlights{
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 6px !important;
    }

    .hero-highlights span{
        display: flex !important;
        width: 100%;
        line-height: 1.45 !important;
    }
}

@media (max-width: 575.98px){
    .navbar-brand img,
    .syd-brand img,
    .logo-light,
    .logo-dark{
        max-height: 72px !important;
    }

    .hero-grid{
        padding-top: 64px !important;
    }

    .hero-content h1{
        font-size: 26px !important;
    }

    .hero-lead{
        font-size: 15px !important;
    }
}


/* Mobile hero text sizing and crop fix */
@media (max-width: 991.98px){
    .banner-section{
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
    }

    .banner-background{
        min-height: auto !important;
        height: auto !important;
    }

    .hero-grid{
        min-height: auto !important;
        padding-top: 52px !important;
        padding-bottom: 40px !important;
        row-gap: 12px !important;
    }

    .hero-content{
        padding-right: 0 !important;
    }

    .hero-content h1{
        font-size: 22px !important;
        line-height: 1.2 !important;
        margin-top: 10px !important;
        margin-bottom: 12px !important;
        word-break: normal !important;
    }

    .hero-content h1 span{
        display: block !important;
        margin-top: 6px !important;
    }

    .hero-lead{
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 16px !important;
    }

    .hero-actions{
        margin-bottom: 14px !important;
    }

    .hero-actions .main-btn{
        min-height: 46px !important;
        padding: 12px 14px !important;
        font-size: 14px !important;
    }

    .hero-highlights{
        gap: 8px !important;
        margin-top: 2px !important;
    }

    .hero-highlights span{
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 575.98px){
    .hero-grid{
        padding-top: 46px !important;
        padding-bottom: 36px !important;
    }

    .hero-content h1{
        font-size: 20px !important;
        line-height: 1.18 !important;
    }

    .hero-lead{
        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    .hero-actions .main-btn{
        font-size: 13px !important;
    }

    .hero-highlights span{
        font-size: 12.5px !important;
    }
}


/* Mobile fixes for partner logos / carousel */
@media (max-width: 991px){
    .best-clients{
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        padding: 0 !important;
        border: 0 !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .best-clients .owl-stage-outer,
    .best-clients .owl-stage,
    .best-clients .owl-item,
    .best-clients .owl-nav,
    .best-clients .owl-dots{
        display: none !important;
    }

    .best-clients > a{
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-height: 84px;
        background: #fff;
        border-radius: 14px;
        padding: 12px;
        box-shadow: 0 8px 20px rgba(31,41,55,.06);
    }

    .best-clients > a img{
        max-width: 100%;
        max-height: 42px;
        width: auto !important;
        height: auto !important;
        object-fit: contain;
        opacity: 1 !important;
        filter: none !important;
        -webkit-filter: none !important;
    }
}

@media (max-width: 575.98px){
    .best-clients{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .best-clients > a{
        min-height: 76px;
        padding: 10px;
    }

    .best-clients > a img{
        max-height: 36px;
    }
}
