/*=========================
HERO STATS
=========================*/
.hero-stats-wrap{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:45px;
    flex-wrap:nowrap;
}


/* CARD */
.hero-stat-card{
    position:relative;
    display:flex;
    align-items:center;
    gap:18px;
    padding: 15px 12px;
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    overflow:hidden;
    transition:0.4s;
    min-width: 210px;
    flex:1;
}


/* TOP GLOW */
.hero-stat-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#ff6b00,#ff9f5a);
}


/* HOVER */
.hero-stat-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.10);
    border-color:rgba(255,107,0,0.35);
}


/* ICON */
.hero-stat-icon{
    width: 50px;
    height: 50px;
    min-width: 55px;
    border-radius:18px;
    background:linear-gradient(135deg, #c5a525, #ff9346);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(255,107,0,0.30);
}

.hero-stat-icon i{
    color:#fff;
    font-size:28px;
}


/* CONTENT */
.hero-stat-content h3{
    font-size: 25px;
    line-height:1;
    color:#fff;
    margin-bottom:10px;
    font-weight:800;
}

.hero-stat-content p{
    margin:0;
    color:#d5d5d5;
    font-size: 13px;
    line-height:26px;
}


/*=========================
RESPONSIVE
=========================*/
@media only screen and (max-width:991px){

    .hero-stats-wrap{
        flex-wrap:wrap;
    }

    .hero-stat-card{
        width:100%;
        min-width:100%;
    }

}


@media only screen and (max-width:767px){

    .hero-stats-wrap{
        margin-top:35px;
        gap:15px;
    }

    .hero-stat-card{
        padding:18px;
        border-radius:18px;
    }

    .hero-stat-icon{
        width:55px;
        height:55px;
        min-width:55px;
    }

    .hero-stat-icon i{
        font-size:22px;
    }

    .hero-stat-content h3{
        font-size:28px;
    }

    .hero-stat-content p{
        font-size:14px;
        line-height:24px;
    }

}
/*=========================
TRUSTED BADGE
=========================*/
.hero-trusted-badge{
    position:relative;
    display:flex;
    align-items:center;
    gap:18px;
    margin-top: 13px;
    padding: 10px 20px;
    border-radius:18px;
    overflow:hidden;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 10px 35px rgba(0,0,0,0.12);
}


/* GLOW EFFECT */
.hero-trusted-badge::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,107,0,0.18);
    border-radius:50%;
    left:-60px;
    top:-60px;
    filter:blur(40px);
}


/* ANIMATED BORDER */
.hero-trusted-badge::after{
    content:'';
    position:absolute;
    left:-100%;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.10),
        transparent
    );
    animation:shineMove 4s linear infinite;
}


/* ICON */
.trusted-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:16px;
    background:linear-gradient(135deg, #c5a525, #ff9346);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
    animation:pulseGlow 2s infinite;
}

.trusted-icon i{
    color:#fff;
    font-size:26px;
}


/* TEXT AREA */
.trusted-text-slider{
    overflow:hidden;
    position:relative;
    z-index:2;
}

.trusted-text-slider span{
    display:inline-block;
    color:#fff;
    font-size:16px;
    font-weight:500;
    line-height:30px;
    animation:textMove 12s linear infinite;
    white-space:nowrap;
}


/*=========================
ANIMATIONS
=========================*/
@keyframes pulseGlow{

    0%{
        box-shadow:0 0 0 rgba(255,107,0,0.4);
    }

    50%{
        box-shadow:0 0 30px rgba(255,107,0,0.7);
    }

    100%{
        box-shadow:0 0 0 rgba(255,107,0,0.4);
    }

}

@keyframes shineMove{

    0%{
        left:-100%;
    }

    100%{
        left:120%;
    }

}

@keyframes textMove{

    0%{
        transform:translateX(0%);
    }

    50%{
        transform:translateX(-2%);
    }

    100%{
        transform:translateX(0%);
    }

}


/*=========================
RESPONSIVE
=========================*/
@media only screen and (max-width:767px){

    .hero-trusted-badge{
        padding:16px 18px;
        gap:14px;
        margin-top:28px;
    }

    .trusted-icon{
        width:50px;
        height:50px;
        min-width:50px;
    }

    .trusted-icon i{
        font-size:22px;
    }

    .trusted-text-slider span{
        font-size:14px;
        line-height:26px;
        white-space:normal;
        animation:none;
    }

}
/*=========================
ABOUT FLOATING GROWTH CARD
=========================*/
.about-floating-growth {
    position: absolute;
    right: -4px;
    bottom: -55px;
    width: 320px;
    padding: 28px 25px;
    border-radius: 28px;
    background: rgba(12,12,12,0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    transition: 0.4s;
}

/* HOVER */
.about-floating-growth:hover{
    transform:translateY(-10px);
}


/* TOP GLOW */
.growth-glow{
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,107,0,0.18);
    border-radius:50%;
    top:-90px;
    right:-70px;
    filter:blur(40px);
}


/* ICON */
.growth-icon{
    width:78px;
    height:78px;
    border-radius:24px;
    background:linear-gradient(135deg, #c5a525, #ff9346);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    box-shadow:0 15px 35px rgba(255,107,0,0.35);
    position:relative;
    z-index:2;
}

.growth-icon i{
    color:#fff;
    font-size:34px;
}


/* CONTENT */
.growth-content{
    position:relative;
    z-index:2;
}

.growth-content .mini-text{
    display:inline-block;
    color:#ff9d5a;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.growth-content h4{
    color:#fff;
    font-size:28px;
    line-height:1;
    margin-bottom:14px;
    font-weight:600;
}

.growth-content p{
    color:#cfcfcf;
    font-size:15px;
    line-height:28px;
    margin:0;
}


/* BADGE */
.growth-badge{
    position:absolute;
    right:22px;
    top:22px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    padding:10px 14px;
    border-radius:14px;
    display:flex;
    align-items:center;
    gap:8px;
    z-index:2;
}

.growth-badge i{
    color:#27d36a;
    font-size:14px;
}

.growth-badge span{
    color:#fff;
    font-size:14px;
    font-weight:700;
}


/*=========================
RESPONSIVE
=========================*/
@media only screen and (max-width:1199px){

    .about-floating-growth{
        right:0;
    }

}


@media only screen and (max-width:767px){

    .about-floating-growth{
        position:relative;
        width:100%;
        right:0;
        bottom:0;
        margin-top:30px;
        padding:24px 20px;
        border-radius:22px;
    }

    .growth-icon{
        width:65px;
        height:65px;
        border-radius:20px;
    }

    .growth-icon i{
        font-size:28px;
    }

    .growth-content h4{
        font-size:34px;
    }

    .growth-content p{
        font-size:14px;
        line-height:26px;
    }

}
/*=========================
INDUSTRIES SECTION
=========================*/
.clients-section-two{
    position:relative;
    padding:120px 0 90px;
    z-index:1;
    overflow:hidden;
}



/* INDUSTRY BLOCK */
.industry-block{
    padding:15px;
}

.industry-block .inner-box{
    position:relative;
    background:rgba(18,18,18,0.96);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:30px 32px;
    overflow:hidden;
    transition:all 0.4s ease;
    height:100%;
    /* min-height:320px; */
    backdrop-filter:blur(12px);
}


/* HOVER EFFECT */
.industry-block .inner-box:hover{
    transform:translateY(-12px);
    border-color:#ff7a00;
    box-shadow:0 20px 60px rgba(255,122,0,0.15);
}


/* TOP GLOW */
.industry-block .inner-box::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,122,0,0.08);
    border-radius:50%;
    top:-120px;
    right:-80px;
    filter:blur(20px);
    transition:0.4s;
}

.industry-block .inner-box:hover::before{
    background:rgba(255,122,0,0.15);
}

.industry-icon {
    width: 60px;
    height: 60px;
    border-radius: 11px;
    background: linear-gradient(135deg,#ff7a00,#ff9d45);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 15px 40px rgba(255,122,0,0.25);
    transition: 0.4s;
}
.industry-block .inner-box:hover .industry-icon{
    transform:rotate(-8deg) scale(1.05);
}

.industry-icon i{
    color:#ffffff;
    font-size:28px;
}


/* CONTENT */
.industry-content h4{
    font-size:22px;
    line-height:1.4em;
    color:#ffffff;
    margin-bottom:10px;
    font-weight:600;
}

.industry-content p{
    font-size:14px;
    line-height:30px;
    color:#fff;
    margin-bottom:0;
    display: none;
}


/* SWIPER */
.clients-swiper-one{
    overflow:visible;
}


/* NAVIGATION */
.industry-navigation{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:50px;
}

.industry-navigation .swiper-button-prev,
.industry-navigation .swiper-button-next{
    position:relative;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#1b1b1b;
    border:1px solid rgba(255,255,255,0.08);
    color:#ffffff;
    transition:0.4s;
}

.industry-navigation .swiper-button-prev:hover,
.industry-navigation .swiper-button-next:hover{
    background:#ff7a00;
    border-color:#ff7a00;
}


/*=========================
RESPONSIVE
=========================*/
@media only screen and (max-width:1199px){

    .clients-section-two .title-box .title{
        font-size:40px;
    }

    .industry-content h4{
        font-size:24px;
    }

}


@media only screen and (max-width:991px){

    .clients-section-two{
        padding:90px 0 70px;
    }

    .clients-section-two .title-box{
        margin-bottom:15px;
    }

    .clients-section-two .title-box .title{
        font-size:34px;
    }

    .industry-block .inner-box{
        min-height:auto;
    }

}


@media only screen and (max-width:767px){

    .clients-section-two{
        padding:75px 0 55px;
    }

    .clients-section-two .title-box .title{
        font-size:28px;
        line-height:1.5em;
    }

    .industry-block{
        padding:8px;
    }

    .industry-block .inner-box{
        padding:30px 24px;
        border-radius:24px;
    }

    .industry-icon{
        width:72px;
        height:72px;
        border-radius:20px;
        margin-bottom:22px;
    }

    .industry-icon i{
        font-size:28px;
    }

    .industry-content h4{
        font-size:22px;
        margin-bottom:12px;
    }

    .industry-content p{
        font-size:15px;
        line-height:28px;
    }

}
/*=========================
CREATIVE PRODUCTION AREA
=========================*/
.creative-production-area{
    position:relative;
    padding: 50px 0;
    background:#0b0b0b;
    overflow:hidden;
    z-index:1;
}


/* SHAPES */
.creative-shape-one{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,122,0,0.08);
    top:-180px;
    left:-180px;
    filter:blur(40px);
}

.creative-shape-two{
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(255,255,255,0.03);
    right:-120px;
    bottom:-150px;
    filter:blur(30px);
}


/* TITLE */
.creative-section-title .creative-mini-title{
    display:inline-block;
    color:#ff7a00;
    font-size:14px;
    font-weight:700;
    letter-spacing:1.5px;
    margin-bottom:18px;
    text-transform:uppercase;
}
.creative-section-title h2 {
    color: #fff;
    font-size: 33px;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 0;
}

.creative-title-text p{
    color:#bfbfbf;
    font-size:15px;
    line-height:32px;
    margin-bottom:0;
}


/* MAIN WRAP */
.creative-production-wrap{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:35px;
    margin-top:70px;
}


/* BIG CARD */
.creative-big-card{
    height:100%;
}

.creative-card-image{
    position:relative;
    overflow:hidden;
    border-radius:35px;
    height:100%;
    min-height:780px;
}

.creative-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.creative-card-image:hover img{
    transform:scale(1.06);
}


/* OVERLAY */
.creative-overlay-content{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:45px;
    background:linear-gradient(to top,rgba(0,0,0,0.92),transparent);
}

.creative-overlay-content span{
    display:inline-block;
    background:#ff7a00;
    color:#fff;
    font-size:13px;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:18px;
    font-weight:600;
}

.creative-overlay-content h3{
    color:#fff;
    font-size:28px;
    line-height:1.3em;
    margin-bottom:0;
}


/* GRID */
.creative-small-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}


/* SERVICE CARD */
.creative-service-card{
    position:relative;
    padding: 25px 20px;
    border-radius:28px;
    background:rgba(18,18,18,0.95);
    border:1px solid rgba(255,255,255,0.06);
    overflow:hidden;
    transition:0.4s;
}

.creative-service-card:hover{
    transform:translateY(-10px);
    border-color:#ff7a00;
    box-shadow:0 20px 50px rgba(255,122,0,0.12);
}
.activecsc{
    border-color:#ff7a00;

}

/* TOP GLOW */
.creative-service-card::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,122,0,0.08);
    border-radius:50%;
    right:-80px;
    top:-80px;
}


/* ICON */
.creative-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background:#d09c21;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom: 10px;
    box-shadow:0 15px 40px rgba(255,122,0,0.25);
}

.creative-icon i{
    color:#fff;
    font-size:30px;
}


/* CONTENT */
.creative-service-card h4{
    color:#fff;
    font-size: 25px;
    margin-bottom: 4px;
    line-height:1.3em;
}

.creative-service-card p{
    color:#bfbfbf;
    font-size: 14px;
    line-height: 25px;
    margin-bottom:0;
}

.creative-bottom-cta {
    margin-top: 28px;
    padding: 8px 23px;
    border-radius: 28px;
    background: linear-gradient(135deg,#121212,#1b1b1b);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.creative-cta-content{
    display:flex;
    align-items:center;
    gap:22px;
}

.creative-cta-icon{
    width:75px;
    height:75px;
    border-radius:24px;
    background:#d09c21;
    display:flex;
    align-items:center;
    justify-content:center;
}

.creative-cta-icon i{
    color:#fff;
    font-size:30px;
}

.creative-cta-text h4{
    color:#fff;
    font-size:28px;
    margin-bottom:8px;
}

.creative-cta-text p{
    color:#bfbfbf;
    margin-bottom:0;
}

.creative-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#d09c21;
    color:#fff;
    padding:10px 26px;
    border-radius:60px;
    font-weight:600;
    transition:0.4s;
}

.creative-cta-btn:hover{
    background:#fff;
    color:#111;
}


/*=========================
RESPONSIVE
=========================*/
@media only screen and (max-width:1199px){

    .creative-production-wrap{
        grid-template-columns:1fr;
    }

    .creative-card-image{
        min-height:650px;
    }

}


@media only screen and (max-width:991px){

    .creative-section-title h2{
        font-size:42px;
    }

    .creative-small-grid{
        grid-template-columns:1fr 1fr;
    }

    .creative-bottom-cta{
        flex-direction:column;
        align-items:flex-start;
    }

}


@media only screen and (max-width:767px){

    .creative-production-area{
        padding:80px 0;
    }

    .creative-section-title h2{
        font-size:34px;
    }

    .creative-title-text{
        margin-top:20px;
    }

    .creative-production-wrap{
        margin-top:50px;
    }

    .creative-card-image{
        min-height:450px;
        border-radius:25px;
    }

    .creative-overlay-content{
        padding:28px;
    }

    .creative-overlay-content h3{
        font-size:28px;
    }

    .creative-small-grid{
        grid-template-columns:1fr;
    }

    .creative-service-card{
        padding:32px 24px;
        border-radius:24px;
    }

    .creative-service-card h4{
        font-size:24px;
    }

    .creative-bottom-cta{
        padding:28px 24px;
        border-radius:24px;
    }

    .creative-cta-content{
        flex-direction:column;
        align-items:flex-start;
    }

    .creative-cta-text h4{
        font-size:24px;
    }

}
.premium-testimonial-section{
    background:#0b0b0b;
    padding:50px 0;
    position:relative;
    overflow:hidden;
}

.testimonial-heading span{
    color:#ffb400;
    font-weight:700;
    letter-spacing:2px;
}
.testimonial-heading h2 {
    color: #fff;
    font-size: 36px;
    margin: 8px 0;
    /* font-weight: 700; */
}

.testimonial-heading p{
    color:#bdbdbd;
    max-width:700px;
    margin:auto;
}

.premium-testimonial-card{
    background:#121212;
    border:1px solid rgba(255,180,0,.15);
    border-radius:25px;
    padding:20px;
    margin-top:20px;
    transition:.4s;
    position:relative;
}

.premium-testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#ffb400;
    box-shadow:0 15px 40px rgba(255,180,0,.15);
}

.quote-icon{
    font-size:70px;
    color:#ffb400;
    line-height:1;
    margin-bottom:0;
}

.premium-testimonial-card p{
    color:#d7d7d7;
    line-height:32px;
    font-size:16px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:30px;
}

.client-info img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 3px solid #ffb400; */
    filter: contrast(0.1);
    filter: invert(1);
}

.client-info h4{
    color:#fff;
    margin-bottom:4px;
}

.client-info span{
    color:#ffb400;
    font-size:14px;
}

.testimonial-stats{
    display:flex;
    justify-content:space-between;
    margin-top:80px;
    gap:20px;
    flex-wrap:wrap;
}

.stat-box{
    flex:1;
    min-width:180px;
    text-align:center;
    background:#151515;
    border-radius:20px;
    padding:30px;
}

.stat-box h3{
    color:#ffb400;
    font-size:42px;
    margin-bottom:10px;
    font-weight:700;
}

.stat-box span{
    color:#d7d7d7;
}

@media(max-width:991px){

.testimonial-heading h2{
    font-size:38px;
}

.testimonial-stats{
    justify-content:center;
}

}
/*=========================
GLOBAL PRESENCE SECTION
=========================*/

.global-presence-section{
    background:#0a0a0a;
    padding:60px 0;
    position:relative;
}

.global-presence-section .sub-title{
    color:#ffb400;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}
.global-presence-section h2 {
    color: #fff;
    font-size: 36px;
    margin: 7px 0;
    font-weight: 700;
}
.global-presence-section p{
    color:#bfbfbf;
}

.global-card{
    background:#141414;
    border:1px solid rgba(255,180,0,.12);
    border-radius:25px;
    padding:25px;
    margin-top:40px;
    transition:.4s;
    height:100%;
}

.global-card:hover{
    transform:translateY(-10px);
    border-color:#ffb400;
    box-shadow:0 15px 40px rgba(255,180,0,.15);
}

.country-icon{
    font-size:60px;
    margin-bottom:20px;
}

.global-card h3{
    color:#fff;
    margin-bottom:15px;
}

.global-card p{
    color:#cfcfcf;
    line-height:30px;
}

.global-card ul{
    margin-top:20px;
    padding:0;
    list-style:none;
}

.global-card ul li{
    color:#fff;
    margin-bottom:12px;
    position:relative;
    padding-left:25px;
}

.global-card ul li:before{
    content:"âœ“";
    position:absolute;
    left:0;
    color:#ffb400;
    font-weight:700;
}

.global-bottom-wrap{
    margin-top:80px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
}

.global-stat{
    flex:1;
    min-width:220px;
    background:#151515;
    border-radius:20px;
    text-align:center;
    padding:30px;
}

.global-stat h3{
    color:#ffb400;
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.global-stat span{
    color:#d5d5d5;
}

@media(max-width:991px){

.global-presence-section h2{
    font-size:38px;
}

.global-bottom-wrap{
    justify-content:center;
}

}
.mission-vision-section{
    padding:60px 0;
    background:#0b0b0b;
    margin: 30px 0px;
}

.mission-box,
.vision-box{
    background:#141414;
    border:1px solid rgba(255,180,0,.15);
    border-radius:25px;
    padding:45px;
    height:100%;
    transition:.4s;
}
@media(max-width:576px){
    
.mission-box,
.vision-box{
    background:#141414;
    border:1px solid rgba(255,180,0,.15);
    border-radius:25px;
    padding:10px;
    height:100%;
    transition:.4s;
}
}

.mission-box:hover,
.vision-box:hover{
    transform:translateY(-10px);
    border-color:#ffb400;
}

.mission-box .icon,
.vision-box .icon{
    width:80px;
    height:80px;
    line-height:80px;
    text-align:center;
    background:#ffb400;
    border-radius:50%;
    color:#000;
    font-size:30px;
    margin-bottom:25px;
}

.box-tag{
    color:#ffb400;
    font-weight:700;
    letter-spacing:1px;
    display:block;
    margin-bottom:15px;
}

.mission-box h3,
.vision-box h3{
    color:#fff;
    font-size:30px;
    margin-bottom:20px;
}

.mission-box p,
.vision-box p{
    color:#cfcfcf;
    line-height:32px;
}

.mission-vision-section .title{
    color:#fff;
}

.mission-vision-section .sub-title{
    color:#ffb400;
}
.founder-message-section{
    padding:60px 0;
    background:#050505;
    position:relative;
}

.founder-image-box{
    border:4px solid #ffb400;
    border-radius:40px;
    overflow:hidden;
}

.founder-image-box img{
    width:100%;
    display:block;
}

.founder-content{
    padding:20px 30px;
}

.founder-tag{
    color:#ffb400;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    display:block;
    margin-bottom:15px;
}

.founder-content h2{
    font-size:40px;
    line-height:1.2;
    color:#fff;
    margin-bottom:25px;
    font-weight:700;
}

.founder-content h2 span{
    color:#ffb400;
}

.founder-content p{
    color:#cfcfcf;
    font-size:17px;
    line-height:34px;
    margin-bottom:20px;
}

.founder-quote{
    border-left:4px solid #ffb400;
    padding-left:25px;
    margin:25px 0;
    color:#fff;
    font-size:22px;
    font-style:italic;
}

.founder-content h4{
    color:#ffb400;
    font-size:28px;
    margin-bottom:5px;
}

.founder-designation{
    color:#fff;
    font-size:16px;
}

.founder-style-two{
    border-top:1px solid rgba(255,180,0,.15);
}

@media(max-width:991px){

    .founder-content{
        margin-top:40px;
        padding:0;
    }

    .founder-content h2{
        font-size:38px;
    }
}
.sidebar-service-list ul li a{
    font-weight:600;
}

.sidebar-service-list ul li.current a{
    background:#ffb400;
    color:#000;
}

.help-title{
    font-size:28px;
    line-height:1.3;
}

.help-contact a{
    font-size:22px;
    font-weight:700;
}

.service-sidebar-single-btn .theme-btn{
    width:100%;
    text-align:center;
}
.service-main-image img{
    border-radius:20px;
    margin-bottom:40px;
}

.service-overview-box{
    margin-bottom: 16px;
}

.service-tag{
    display:inline-block;
    background:#ffb400;
    color:#000;
    font-weight:700;
    padding:8px 20px;
    border-radius:30px;
    margin-bottom:20px;
}

.service-overview-box h2{
    font-size: 35px;
    margin-bottom: 8px;
    line-height:1.3;
}

.service-overview-box p{
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 8px;
}

.service-highlights{
    margin-bottom:60px;
}

.highlight-box{
    background: #fef9ef;
    padding: 13px 14px;
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    font-weight:600;
    color: #000;
}

.highlight-box i{
    color:#ffb400;
    margin-right:10px;
}
.why-meta-section,
.campaign-types-section{
    margin-top: 19px;
}

.why-meta-box,
.campaign-type-card{
    background:#fff;
    padding: 20px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-bottom: 20px;
    transition:.4s;
    border-bottom: 2px solid #efac26;
    height: 236px;
}

.why-meta-box:hover,
.campaign-type-card:hover{
    transform:translateY(-8px);
}

.why-meta-box i,
.campaign-type-card i{
    font-size:40px;
    color:#ffb400;
    margin-bottom:20px;
}

.why-meta-box h4,
.campaign-type-card h4{
    margin-bottom:15px;
}
.meta-process-section,
.industries-section{
    margin-top: 23px;
}

.process-card{
    background:#fff;
    padding: 23px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.process-number{
    width: 50px;
    height: 50px;
    line-height: 55px;
    background:#ffb400;
    color:#000;
    font-size: 19px;
    font-weight:700;
    border-radius:50%;
    display:inline-block;
    margin-bottom: 12px;
}

.industry-box{
    background: #fffce5;
    padding: 15px;
    text-align:center;
    border-radius:15px;
    font-weight:600;
    margin-bottom:20px;
    /* box-shadow:0 8px 25px rgba(0,0,0,.08); */
    transition:.4s;
    color: #000;
}

.industry-box:hover{
    background:#ffb400;
    color:#000;
}


.case-study-card{
    background: #fffcec;
    padding: 18px;
    border-radius:20px;
    /* box-shadow:0 10px 30px rgba(0,0,0,.08); */
    margin-bottom: 13px;
    height:100%;
}

.case-tag{
    display:inline-block;
    background:#ffb400;
    color:#000;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.case-study-card h3{
    margin-bottom: 13px;
    font-size: 24px;
}

.case-study-card ul{
    padding-left: 1px;
}

.case-study-card li{
    margin-bottom:12px;
}

.result-stat-box{
    background:#fff;
    text-align:center;
    padding: 20px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.result-stat-box h2{
    color:#ffb400;
    font-size: 30px;
    font-weight: 600;
}



.cta-inner{
    background:#111;
    padding: 50px 48px;
    border-radius: 3px;
    text-align:center;
}

.cta-badge{
    background:#ffb400;
    color:#000;
    padding:10px 25px;
    border-radius:30px;
    font-weight:700;
    display:inline-block;
    margin-bottom: 14px;
}

.cta-inner h2{
    color:#fff;
    font-size: 36px;
    margin-bottom: 8px;
}

.cta-inner p{
    color:#ddd;
    max-width:700px;
    margin: 0 auto 9px;
}

.cta-buttons a{
    margin:10px;
}