/* Reset and Base Styles */
:root {
    --orange-lighterer: #f5c7b2;
    --primary-orange: #F76902;
    --dark-text: #404040;
    --light-bg: #fef8f4;
    --border-color: #45187E;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Hero Section Styles */
.new-banner-section {
    margin-top: 0 !important;
    position: relative;
    z-index: 2;
    width: 100%;
    background: var(--light-bg) url('https://via.placeholder.com/1920x600/fff0e9/fef8f4?text=Background+Pattern') left top no-repeat;
    background-size: cover;
}

.banner-container {
    min-height: 500px;
}

.banner-left p {
    color: var(--dark-text);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    padding: 12px 0;
}

.accelerate-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: 1px;
    background: var(--primary-orange);
    display: inline-block;
    height: 51px;
    padding: 0 24px;
    border-radius: 12px;
    line-height: 44px;
    border: 2px solid rgb(255, 174, 148);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accelerate-title:hover {
    color: var(--white);
    text-decoration: none;
    background-color: #e45c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 105, 2, 0.3);
}

.banner-right img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.text-flip-box {
    width: 100%;
    height: 84px;
    overflow: hidden;
    border: 1px dashed var(--border-color);
    border-radius: 15px;
    padding: 0 15px;
    font-weight: 700;
    font-size: 2.375rem;
    color: var(--primary-orange);
    background-color: #fff0e9;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
    box-shadow: 0 4px 15px rgba(69, 24, 126, 0.1);
}

.flip-section {
    position: relative;
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    animation: slideText 3.3s infinite;
}

.text-line {
    height: 84px;
    line-height: 84px;
    text-align: left;
}

@keyframes slideText {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-84px);
    }
    75% {
        transform: translateY(-84px);
    }
    100% {
        transform: translateY(0);
    }
}

a.connect-with-us {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0 36px;
    font-size: 1rem;
    font-weight: 500;
    height: 48px;
    display: inline-block;
    line-height: 48px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.connect-with-us:hover {
    background-color: #e45c00;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 105, 2, 0.3);
}

.transformation-box {
    margin-left: 18px;
}

.transformation-box span.count {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ef5523;
    display: block;
    line-height: 22px;
}

.transformation-box span.count-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark-text);
}

.transformation-section {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.transformation-img-section {
    display: flex;
}

.transformation-img-section img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px #f5c7b2;
    object-fit: cover;
    margin-right: -12px;
    transition: all 0.3s ease;
}

.transformation-img-section img:hover {
    transform: scale(1.06);
    z-index: 10;
}

.plus-trans {
    display: flex;
    background: var(--white);
    color: var(--primary-orange);
    font-weight: 700;
    width: 38px;
    height: 38px;
    line-height: 38px;
    justify-content: center;
    border-radius: 50%;
    margin-left: 8px;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px #f5c7b2;
}

.plus-trans:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.plus-trans:hover svg {
    transform: scale(1.06);
    stroke: var(--white);
}

/* Stats Section Styles */
.stats-section {
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.scale-stats.pt-proj.banner-stats {
    max-width: 1320px;
    margin: 20px auto;
    padding: 0 10px !important;
}

.scale-stats.pt-proj.banner-stats .stat-item {
    display: block;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    background: var(--white);
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.scale-stats.pt-proj.banner-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 105, 2, 0.1);
    border-color: rgba(247, 105, 2, 0.2);
}

.stat-icon {
    display: block;
    margin-bottom: 15px;
}

.stat-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--primary-orange);
    stroke-width: 1.5;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 8px;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-text);
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .banner-left, .banner-right {
        text-align: center;
    }
    
    .banner-left {
        margin-bottom: 2rem;
    }
    
    .transformation-section {
        justify-content: center;
    }
    
    .text-flip-box {
        font-size: 1.75rem;
        height: 70px;
    }
    
    .text-line {
        height: 70px;
        line-height: 70px;
    }
    
    @keyframes slideText {
        0% {
            transform: translateY(0);
        }
        25% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-70px);
        }
        75% {
            transform: translateY(-70px);
        }
        100% {
            transform: translateY(0);
        }
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .text-flip-box {
        font-size: 1.5rem;
        height: 60px;
    }
    
    .text-line {
        height: 60px;
        line-height: 60px;
    }
    
    @keyframes slideText {
        0% {
            transform: translateY(0);
        }
        25% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-60px);
        }
        75% {
            transform: translateY(-60px);
        }
        100% {
            transform: translateY(0);
        }
    }
    
    .banner-left p {
        font-size: 1.1rem;
    }
    
    .stat-item {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .scale-stats.pt-proj.banner-stats .row {
        display: block !important;
    }
    
    .scale-stats.pt-proj.banner-stats .row .col-md-3 {
        width: 100%;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media (max-width: 575.98px) {
    .accelerate-title {
        font-size: 1.2rem;
        height: 45px;
        line-height: 38px;
        padding: 0 18px;
    }
    
    .text-flip-box {
        font-size: 1.3rem;
        height: 55px;
    }
    
    .text-line {
        height: 55px;
        line-height: 55px;
    }
    
    @keyframes slideText {
        0% {
            transform: translateY(0);
        }
        25% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-55px);
        }
        75% {
            transform: translateY(-55px);
        }
        100% {
            transform: translateY(0);
        }
    }
    
    .transformation-section {
        flex-direction: column;
        text-align: center;
    }
    
    .transformation-box {
        margin-left: 0;
        margin-top: 15px;
    }
}

/* Trusted Clients Section Styles */
.trusted-section {
    background: #fef8f4;
    margin: 0;
    padding: 16px 0 40px;
    position: relative;
    text-align: center;
}

.trusted-top-line,
.trusted-bottom-line {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, rgba(239, 85, 35, 1) 0%, rgba(156, 163, 175, 0) 29.47%, rgba(156, 163, 175, 0) 50%, rgba(156, 163, 175, 0) 72.51%, rgba(239, 85, 35, 1) 100%);
    margin: 0 auto 12px;
    border-radius: 2px;
}

.trusted-bottom-line {
    margin: 24px auto 8px;
}

.trusted-heading,
.trusted-bottom-heading {
    font-size: 14px;
    color: rgba(107, 114, 128, 1);
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 24px;
    margin-top: 0;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #fef8f4;
    display: inline-block;
    padding: 0 20px;
    z-index: 1;
}

.trusted-heading {
    top: 27px;
}

.trusted-bottom-heading {
    top: inherit;
    bottom: 16px;
}

/* Carousel Styles */
#trustedCarousel {
    padding: 30px 0;
    position: relative;
}

.carousel-inner {
    padding: 20px 0;
}

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    padding: 15px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 0 5px;
}

.trusted-logo img {
    max-height: 70px;
    width: auto;
    max-width: 169px;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trusted-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.trusted-logo:hover img {
    transform: scale(1.08);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: #e45c00;
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    margin-top: 20px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: #ccc;
    border: none;
    opacity: 0.7;
}

.carousel-indicators button.active {
    background-color: var(--primary-orange);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .trusted-logo {
        min-height: 100px;
        padding: 12px;
    }
    
    .trusted-logo img {
        max-height: 60px;
    }
}

@media (max-width: 991.98px) {
    .trusted-section {
        padding: 16px 0 35px;
    }
    
    .trusted-logo {
        min-height: 90px;
        padding: 10px;
    }
    
    .trusted-logo img {
        max-height: 50px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 767.98px) {
    .trusted-section {
        padding: 12px 0 30px;
    }
    
    .trusted-heading,
    .trusted-bottom-heading {
        font-size: 12px;
        letter-spacing: 1.5px;
        padding: 0 15px;
    }
    
    .trusted-logo {
        min-height: 80px;
        padding: 8px;
        margin: 0 2px;
    }
    
    .trusted-logo img {
        max-height: 45px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control-prev {
        left: 5px;
    }
    
    .carousel-control-next {
        right: 5px;
    }
}

@media (max-width: 575.98px) {
    .trusted-section {
        padding: 10px 0 25px;
    }
    
    .trusted-top-line,
    .trusted-bottom-line {
        width: 90%;
    }
    
    .trusted-heading,
    .trusted-bottom-heading {
        font-size: 11px;
        letter-spacing: 1px;
        padding: 0 10px;
    }
    
    .trusted-heading {
        top: 20px;
    }
    
    .trusted-bottom-heading {
        bottom: 10px;
    }
    
    .trusted-logo {
        min-height: 70px;
        padding: 5px;
    }
    
    .trusted-logo img {
        max-height: 40px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}