

    .hero-section{
    background:#000;
    padding:140px 140px 50px 140px;
    overflow:hidden;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-tag{
    display:inline-block;
    background:#d4a017;
    color:#000;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-text h1{
    color:#fff;
    font-size:35px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}

.hero-text p{
    color:#d9d9d9;
    font-size:18px;
    text-align:justify;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#d4a017;
    color:#000;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    background:#fff;
}

.btn-secondary{
    border:2px solid #d4a017;
    color:#d4a017;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-secondary:hover{
    background:#d4a017;
    color:#000;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:550px;
    height:auto;
    border:3px solid #D4AF37;
    border-radius:20px;
    padding:10px;
    background:#111;
    box-shadow:
        0 0 10px rgba(212,175,55,.4),
        0 0 20px rgba(212,175,55,.3),
        0 0 30px rgba(212,175,55,.2);
    transition:all .3s ease;
}
.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-buttons a{
    min-width:220px;
    text-align:center;
}
.hero-image img:hover{
    transform:translateY(-5px);
    box-shadow:
        0 0 15px rgba(212,175,55,.5),
        0 0 30px rgba(212,175,55,.4),
        0 0 45px rgba(212,175,55,.3);
}

/* Large Tablet */
@media (max-width: 1199px){

    .hero-section{
        padding:130px 60px 50px 60px;
    }

    .hero-text h1{
        font-size:40px;
    }
}

/* Tablet */
@media (max-width: 991px){

    .hero-section{
        padding:130px 40px 50px 40px;
    }

    .hero-content{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .hero-text{
        order:1;
    }

    .hero-image{
        order:2;
    }

    .hero-text h1{
        font-size:42px;
    }

   
    .hero-buttons{
        justify-content:center;
    }

   .hero-image{
        display:none;
    }
}

/* Mobile */
@media (max-width: 767px){

    .hero-section{
        padding:130px 20px 50px 20px;
    }

    .hero-text h1{
        font-size:34px;
    }

    .hero-text p{
        font-size:16px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .hero-image img{
        max-width:100%;
    }
    .hero-buttons{
        flex-direction:column;
        width:100%;
        align-items:center;
    }

    .hero-buttons a{
        width:100%;
        max-width:320px;
        min-width:320px;
        text-align:center;
    }
    .hero-image{
        display:none;
    }

}

/* Small Mobile */
@media (max-width: 480px){

    .hero-section{
        padding:130px 15px 50px 15px;
    }

    .hero-text h1{
        font-size:28px;
    }

    .hero-tag{
        font-size:12px;
        padding:6px 14px;
    }

    .hero-text p{
        font-size:15px;
    }
    .hero-image{
        display:none;
    }

}
      


.consult-btn{
    display:inline-block;
    background:#d4a017;
    color:#000;
    padding:15px 35px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.consult-btn:hover{
    background:#fff;
    color:#d4a017;
    border:2px solid #d4a017;
}



    .digital-services{
    padding:60px 0;
    background:var(--navy);
}

.digital-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.digital-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    display:flex;
    flex-direction:column;
    height:100%;
    min-height:480px;
}

.digital-card:hover{
    transform:translateY(-8px);
}

.digital-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    flex-shrink:0;
}

.digital-content{
    padding:25px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.digital-content h3{
    font-size:22px;
    font-weight:700;
    color:#222;
    margin-bottom:12px;
    min-height:60px;
    line-height:1.3;
}

.digital-content p{
    color:#666;
    line-height:1.7;
    text-align:justify;
    margin-bottom:20px;
    flex:1;
    font-size:15px;
    display:-webkit-box;
    -webkit-line-clamp:5;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.digital-btns{
    display:flex;
    gap:10px;
    justify-content:space-between;
    margin-top:auto;
    flex-shrink:0;
}

.digital-view-btn{
    background:#d4a017;
    color:#fff;
    padding:12px 22px;
    text-align:center;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    flex:1;
    transition:.3s;
}

.digital-view-btn:hover{
    background:#b8860b;
}

.digital-call-btn{
    text-align:center;
    background:#111;
    color:#fff;
    padding:12px 22px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    flex:1;
    transition:.3s;
}

.digital-call-btn:hover{
    background:#333;
}

.digital-all-btn{
    text-align:center;
    margin-top:40px;
}

.digital-all-btn a{
    background:#d4a017;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.digital-all-btn a:hover{
    background:#b8860b;
}

@media(max-width:1024px){
    .digital-grid{
        grid-template-columns:repeat(2,1fr);
    }
    
    .digital-card{
        min-height:440px;
    }
    
    .digital-content h3{
        font-size:20px;
        min-height:50px;
    }
}

@media(max-width:576px){
    .digital-grid{
        grid-template-columns:1fr;
    }

    .digital-btns{
        flex-direction:column;
    }

    .digital-card img{
        height:180px;
    }

    .digital-content h3{
        font-size:20px;
        min-height:auto;
    }
    
    .digital-card{
        min-height:400px;
    }
    
    .digital-content p{
        font-size:14px;
        -webkit-line-clamp:4;
    }
}



    .why-choose-us {
        background: #ffffff;
        padding: 40px 0;
    }

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

    .choose-card {
        background: #ffc10778;
        border-radius: 20px;
        padding: 35px 30px;
        transition: 0.3s;
        border: 1px solid #eee;
        text-align: center;
    }

    .choose-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        border-color: #d4a017;
    }

    .choose-icon {
        width: 70px;
        height: 70px;
        background: #d4a017;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 30px;
        color: #000;
        transition: 0.3s;
    }

    .choose-card:hover .choose-icon {
        background: #000;
        color: #d4a017;
    }

    .choose-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: #222;
        margin-bottom: 15px;
    }

    .choose-card p {
        color: #555;
        line-height: 1.8;
        text-align: justify;
        font-size: 15px;
        margin: 0;
    }

    /* Tablet */
    @media (max-width: 991px) {
        .choose-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .choose-card {
            padding: 30px 25px;
        }

        .choose-card h3 {
            font-size: 18px;
        }
    }

    /* Mobile */
    @media (max-width: 576px) {
        .choose-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .why-choose-us {
            padding: 40px 0;
        }

        .choose-card {
            padding: 25px 20px;
        }

        .choose-icon {
            width: 60px;
            height: 60px;
            font-size: 25px;
        }

        .choose-card h3 {
            font-size: 17px;
        }

        .choose-card p {
            font-size: 14px;
        }
    }



    .industries-section {
        background: #000000;
        padding: 40px 0;
    }

    .industries-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 50px;
    }

    .industry-item {
        background: #111111;
        border: 1px solid #222;
        border-radius: 15px;
        padding: 25px 20px;
        text-align: center;
        transition: 0.3s;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
/* Testimonial Slider */
.testimonial-track{
    display:flex;
    gap:30px;
}

/* Equal Height Cards */
.testimonial-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:320px;   /* Adjust 300-360px as needed */
    height:100%;
    padding:30px;
    border-radius:16px;
}

/* Equal Text Area */
.testimonial-text{
    flex:1;
    margin:20px 0;
    line-height:1.8;
}

/* Keep Client Info at Bottom */
.client-info{
    margin-top:auto;
    display:flex;
    align-items:center;
    gap:15px;
}
    .industry-item:hover {
        transform: translateY(-5px);
        border-color: #d4a017;
        background: #1a1a1a;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    }

    .industry-item i {
        font-size: 35px;
        color: #d4a017;
        transition: 0.3s;
    }

    .industry-item:hover i {
        transform: scale(1.1);
        color: #ffd700;
    }

    .industry-item span {
        color: #d9d9d9;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;
        transition: 0.3s;
    }

    .industry-item:hover span {
        color: #ffffff;
    }

    /* Tablet */
    @media (max-width: 991px) {
        .industries-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .industry-item {
            padding: 22px 18px;
        }

        .industry-item i {
            font-size: 30px;
        }

        .industry-item span {
            font-size: 14px;
        }
    }

    /* Mobile */
    @media (max-width: 576px) {
        .industries-section {
            padding: 40px 0;
        }

        .industries-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 35px;
        }

        .industry-item {
            padding: 18px 15px;
        }

        .industry-item i {
            font-size: 25px;
        }

        .industry-item span {
            font-size: 13px;
        }
    }

    /* Small Mobile */
    @media (max-width: 380px) {
        .industries-grid {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .industry-item {
            padding: 15px 12px;
        }

        .industry-item i {
            font-size: 22px;
        }

        .industry-item span {
            font-size: 12px;
        }
    }



    .vertical-steps-style {
        background: #ffffff;
        padding: 40px 0;
    }

    .vertical-steps {
        max-width: 800px;
        margin: 50px auto 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .step-item {
        display: flex;
        align-items: stretch;
        gap: 20px;
        transition: 0.3s;
    }

    .step-item:hover .step-content {
        border-color: #d4a017;
        transform: translateX(10px);
    }

    .step-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
        padding-top: 5px;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #d4a017;
        color: #000;
        font-size: 16px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: 0.3s;
    }

    .step-item:hover .step-circle {
        background: #000;
        color: #d4a017;
        transform: scale(1.1);
    }

    .step-arrow {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #d4a017;
        font-size: 20px;
        padding: 10px 0;
        opacity: 0.5;
        transition: 0.3s;
    }

    .step-item:hover .step-arrow {
        opacity: 1;
    }

    .step-content {
        flex: 1;
        background: #ffc10778;
        border-radius: 16px;
        padding: 25px 30px;
        border-left: 4px solid #d4a017;
        transition: 0.3s;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 15px;
    }

    .step-icon {
        width: 45px;
        height: 45px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #d4a017;
        flex-shrink: 0;
        transition: 0.3s;
    }

    .step-item:hover .step-icon {
        background: #d4a017;
        color: #000;
    }

    .step-content h3 {
        font-size: 18px;
        font-weight: 700;
        color: #222;
        margin: 0;
        flex: 1;
        min-width: 120px;
    }

    .step-content p {
        color: #555;
        line-height: 1.7;
        text-align: justify;
        font-size: 14px;
        margin: 0;
        width: 100%;
    }

    /* Tablet & Mobile */
    @media (max-width: 768px) {
        .vertical-steps-style {
            padding: 40px 0;
        }

        .step-item {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .step-left {
            gap: 15px;
            padding-top: 0;
            width: 100%;
            justify-content: center;
        }

        .step-arrow {
            transform: rotate(90deg);
            padding: 0;
        }

        .step-content {
            flex-direction: column;
            text-align: center;
            padding: 20px;
            border-left: none;
            border-top: 4px solid #d4a017;
        }

        .step-content h3 {
            min-width: auto;
        }

        .step-content p {
            text-align: justify;
        }
    }

    @media (max-width: 480px) {
        .step-content {
            padding: 18px 15px;
        }

        .step-circle {
            width: 40px;
            height: 40px;
            font-size: 14px;
        }

        .step-icon {
            width: 40px;
            height: 40px;
            font-size: 18px;
        }

        .step-content h3 {
            font-size: 16px;
        }

        .step-content p {
            font-size: 13px;
        }
    }



    .ratings-section{
    background:#000;
    padding:40px 0;
}

.rating-desc{
    color:#bdbdbd;
    max-width:700px;
    margin:15px auto 0;
}

.ratings-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.rating-card{
    background:#FEFEFE;
    border-radius:25px;
    padding:30px;
    min-height:170px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.rating-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(184,134,11,.20);
}

.rating-card img{
    max-width:180px;
    width:100%;
    height:auto;
}

@media(max-width:991px){

    .ratings-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .ratings-grid{
        grid-template-columns:1fr;
    }

    .rating-card{
        min-height:140px;
        padding:20px;
    }

    .rating-card img{
        max-width:150px;
    }
}



    .testimonial-section {
        background: #ffffff;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .testimonial-section .section-head {
        text-align: center;
        margin-bottom: 30px;
    }

    .testimonial-section .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .testimonial-section .section-head h2 {
        font-size: 36px;
        font-weight: 700;
        color: #222;
        margin: 10px 0;
    }

    .testimonial-section .section-head p {
        color: #666;
        max-width: 650px;
        margin: auto;
        font-size: 16px;
    }

    /* Stats */
    .testimonial-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 800px;
        margin: 0 auto 35px;
    }

    .testimonial-stat-item {
        text-align: center;
        padding: 18px 10px;
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 14px;
        transition: 0.3s;
    }

    .testimonial-stat-item:hover {
        border-color: #d4a017;
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.06);
    }

    .stat-number {
        font-size: 28px;
        font-weight: 800;
        color: #d4a017;
        display: block;
        line-height: 1.2;
    }

    .stat-label {
        font-size: 13px;
        color: #666;
        font-weight: 500;
        display: block;
        margin-top: 4px;
    }

    /* Slider */
    .testimonial-slider {
        overflow: hidden;
        position: relative;
        width: 100%;
        margin-top: 20px;
    }

    .testimonial-track {
        display: flex;
        gap: 30px;
        width: max-content;
        animation: testimonialScroll 35s linear infinite;
    }

    .testimonial-track:hover {
        animation-play-state: paused;
    }

    .testimonial-card {
        width: 380px;
        min-width: 380px;
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
        transition: 0.3s;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
        border-color: #d4a017;
    }

    .stars {
        color: #d4a017;
        font-size: 20px;
        letter-spacing: 3px;
        margin-bottom: 8px;
    }

    .testimonial-text {
        color: #555;
        line-height: 1.8;
        margin: 10px 0 18px;
        font-size: 15px;
        text-align: justify;
    }

    .client-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .client-avatar {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: #d4a017;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        flex-shrink: 0;
        transition: 0.3s;
    }

    .testimonial-card:hover .client-avatar {
        background: #000;
        color: #d4a017;
        transform: scale(1.05);
    }

    .client-info h4 {
        margin: 0;
        font-size: 17px;
        color: #222;
        font-weight: 700;
    }

    .client-info span {
        color: #777;
        font-size: 14px;
    }

    @keyframes testimonialScroll {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(calc(-50% - 15px));
        }
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .testimonial-stats {
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
    }

    @media (max-width: 991px) {
        .testimonial-section .section-head h2 {
            font-size: 32px;
        }

        .testimonial-card {
            width: 320px;
            min-width: 320px;
        }

        .testimonial-stats {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            max-width: 500px;
        }
    }

    @media (max-width: 768px) {
        .testimonial-section {
            padding: 60px 0;
        }

        .testimonial-section .section-head h2 {
            font-size: 28px;
        }

        .testimonial-card {
            width: 280px;
            min-width: 280px;
            padding: 22px;
        }

        .testimonial-track {
            gap: 20px;
            animation: testimonialScroll 28s linear infinite;
        }

        .stat-number {
            font-size: 24px;
        }

        .client-avatar {
            width: 45px;
            height: 45px;
            font-size: 15px;
        }

        .client-info h4 {
            font-size: 15px;
        }

        .testimonial-text {
            font-size: 14px;
        }

        .stars {
            font-size: 18px;
        }
    }

    @media (max-width: 480px) {
        .testimonial-section {
            padding: 40px 0;
        }

        .testimonial-section .section-head h2 {
            font-size: 24px;
        }

        .testimonial-section .section-head p {
            font-size: 14px;
        }

        .testimonial-stats {
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            max-width: 100%;
        }

        .stat-number {
            font-size: 22px;
        }

        .stat-label {
            font-size: 12px;
        }

        .testimonial-card {
            width: 250px;
            min-width: 250px;
            padding: 18px;
        }

        .testimonial-track {
            gap: 15px;
            animation: testimonialScroll 25s linear infinite;
        }

        .testimonial-text {
            font-size: 13px;
            margin: 8px 0 14px;
        }

        .client-avatar {
            width: 40px;
            height: 40px;
            font-size: 13px;
        }

        .client-info h4 {
            font-size: 14px;
        }

        .client-info span {
            font-size: 12px;
        }

        .stars {
            font-size: 16px;
        }
    }

    @media (max-width: 380px) {
        .testimonial-card {
            width: 220px;
            min-width: 220px;
            padding: 15px;
        }

        .testimonial-track {
            gap: 12px;
            animation: testimonialScroll 22s linear infinite;
        }

        .testimonial-text {
            font-size: 12px;
        }

        .stat-number {
            font-size: 20px;
        }

        .testimonial-section .section-head h2 {
            font-size: 22px;
        }
    }



    .client-logo-section{
        background:#000;
        padding:70px 0;
        overflow:hidden;
        border-top:3px solid #d4a017;
        border-bottom:3px solid #d4a017;
    }

    .client-title{
        color:#fff;
        margin-bottom:40px;
    }

    .logo-slider{
        overflow:hidden;
        width:100%;
        position:relative;
        display:flex;
        white-space:nowrap;
    }

    .logo-slider::before,
    .logo-slider::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 2;
        pointer-events: none;
    }

    .logo-slider::before {
        left: 0;
        background: linear-gradient(to right, #000, transparent);
    }

    .logo-slider::after {
        right: 0;
        background: linear-gradient(to left, #000, transparent);
    }

    .logo-track{
        display:flex;
        align-items:center;
        gap:60px;
        animation:clientScroll 30s linear infinite;
        flex-shrink:0;
    }

    /* Duplicate track - created by CSS to repeat the same animation */
    .logo-track-duplicate {
        animation: clientScroll 30s linear infinite;
        flex-shrink: 0;
        margin-left: 60px;
    }

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

    .logo-slider:hover .logo-track,
    .logo-slider:hover .logo-track-duplicate {
        animation-play-state:paused;
    }

    .logo-item{
        width:180px;
        min-width:180px;
        height:90px;
        background:#fff;
        border-radius:15px;
        display:flex;
        align-items:center;
        justify-content:center;
        padding:15px;
        transition:0.3s;
        cursor:pointer;
        border:2px solid transparent;
    }

    .logo-item:hover{
        transform:scale(1.08);
        border-color:#d4a017;
        box-shadow:0 10px 30px rgba(212,175,55,0.15);
    }

    .logo-item img{
        max-width:120px;
        max-height:60px;
        width:auto;
        height:auto;
        object-fit:contain;
        transition:0.3s;
    }

    .logo-item:hover img{
        filter:brightness(1.1);
    }

    /* Tablet */
    @media(max-width:991px){
        .client-logo-section{
            padding:60px 0;
        }

        .logo-item{
            width:150px;
            min-width:150px;
            height:80px;
        }

        .logo-item img{
            max-width:100px;
            max-height:50px;
        }

        .logo-track,
        .logo-track-duplicate{
            gap:40px;
            animation:clientScroll 25s linear infinite;
        }

        .logo-track-duplicate {
            margin-left: 40px;
        }

        .logo-slider::before,
        .logo-slider::after {
            width: 60px;
        }
    }

    /* Mobile */
    @media(max-width:576px){
        .client-logo-section{
            padding:40px 0;
        }

        .logo-track,
        .logo-track-duplicate{
            gap:25px;
            animation:clientScroll 20s linear infinite;
        }

        .logo-track-duplicate {
            margin-left: 25px;
        }

        .logo-item{
            width:110px;
            min-width:110px;
            height:65px;
            padding:10px;
            border-radius:12px;
        }

        .logo-item img{
            max-width:75px;
            max-height:40px;
        }

        .logo-slider::before,
        .logo-slider::after {
            width: 40px;
        }
    }

    /* Small Mobile */
    @media(max-width:380px){
        .logo-item{
            width:90px;
            min-width:90px;
            height:55px;
            padding:8px;
            border-radius:10px;
        }

        .logo-item img{
            max-width:60px;
            max-height:35px;
        }

        .logo-track,
        .logo-track-duplicate{
            gap:18px;
            animation:clientScroll 18s linear infinite;
        }

        .logo-track-duplicate {
            margin-left: 18px;
        }

        .client-logo-section{
            padding:30px 0;
        }

        .logo-slider::before,
        .logo-slider::after {
            width: 30px;
        }
    }

    /* Extra Small Mobile */
    @media(max-width:320px){
        .logo-item{
            width:75px;
            min-width:75px;
            height:48px;
            padding:6px;
            border-radius:8px;
        }

        .logo-item img{
            max-width:50px;
            max-height:30px;
        }

        .logo-track,
        .logo-track-duplicate{
            gap:14px;
            animation:clientScroll 15s linear infinite;
        }

        .logo-track-duplicate {
            margin-left: 14px;
        }
    }



    .stats-section{
    padding:60px 0;
    background:#fff;
}

.stats-wrapper{
    background:#000;
    border-radius:30px;
    padding:45px 20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    overflow:hidden;
}

.stat-item{
    text-align:center;
    position:relative;
    transition:.3s;
}

.stat-item:not(:last-child)::after{
    content:'';
    position:absolute;
    right:-10px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:70px;
    background:rgba(255,255,255,.15);
}

.stat-item h2{
    color:#d4a017;
    font-size:48px;
    font-weight:700;
    margin:0 0 10px;
    line-height:1;
    transition:.3s;
}

.stat-item p{
    color:#d9d9d9;
    font-size:16px;
    font-weight:500;
    margin:0;
}

/* Cute Hover Effect */

.stat-item:hover h2{
    transform:scale(1.12);
    color:#f2c94c;
}

.stat-item:hover p{
    color:#fff;
}

/* Tablet */

@media(max-width:991px){

    .stats-wrapper{
        grid-template-columns:repeat(2,1fr);
        gap:35px;
    }

    .stat-item:nth-child(2)::after{
        display:none;
    }

    .stat-item h2{
        font-size:40px;
    }
}

/* Mobile */

@media(max-width:576px){

    .stats-wrapper{
        grid-template-columns:1fr;
        padding:35px 20px;
        border-radius:20px;
    }

    .stat-item::after{
        display:none !important;
    }

    .stat-item{
        border-bottom:1px solid rgba(255,255,255,.1);
        padding-bottom:20px;
    }

    .stat-item:last-child{
        border-bottom:none;
        padding-bottom:0;
    }

    .stat-item h2{
        font-size:34px;
    }

    .stat-item p{
        font-size:14px;
    }
}


.fq-section {
--fq-accent: #D4AF37;      /* Rich Gold */
    --fq-accent2: #FFD700;     /* Bright Gold */
    --fq-dark: #0d1117;
    --fq-card: #141b22;

    --fq-border: rgba(212, 175, 55, 0.25);

    --fq-text: #c9d1d9;
    --fq-muted: #8b949e;
    --fq-white: #ffffff;
  --fq-radius: 14px;
  --fq-trans: 0.32s cubic-bezier(.4, 0, .2, 1);
  background:#000;
  padding: 72px 0 80px;
  overflow: hidden
}

.fq-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .18
}

.fq-blob--1 {
  width: 400px;
  height: 400px;
  background: var(--fq-accent);
  top: -120px;
  left: -100px
}

.fq-blob--2 {
  width: 300px;
  height: 300px;
  background: var(--fq-accent2);
  bottom: -80px;
  right: -80px
}

.fq-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1
}

.fq-header {
  text-align: center;
  margin-bottom: 48px
}

.fq-badge {
  display: inline-block;
  background: rgb(145 217 4 / .12);
  border: 1px solid var(--fq-border);
  color: var(--fq-accent);
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px
}

.fq-title {
  color: var(--fq-white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 14px;
  letter-spacing: -.02em
}

.fq-title span {
  color: var(--fq-accent)
}

.fq-sub {
  color: var(--fq-muted);
  font-size: .97rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65
}

.fq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.fq-item {
  background: var(--fq-card);
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius);
  overflow: hidden;
  transition: border-color var(--fq-trans), box-shadow var(--fq-trans)
}

.fq-item:hover {
  border-color: #D4AF37;   
}

.fq-item.fq-open {
  border-color: var(--fq-accent);
  box-shadow: 0 0 0 1px rgb(145 217 4 / .25), 0 8px 32px rgb(0 0 0 / .35)
}

.fq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  outline: none
}

.fq-btn:focus-visible {
  outline: 2px solid var(--fq-accent);
  outline-offset: -2px
}

.fq-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgb(145 217 4 / .1);
  border: 1px solid var(--fq-border);
  color: var(--fq-accent);
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .05em;
  transition: background var(--fq-trans), border-color var(--fq-trans)
}

.fq-open .fq-num {
  background: var(--fq-accent);
  border-color: var(--fq-accent);
  color: var(--fq-dark)
}

h2.fq-q-text {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  color: var(--fq-white);
  transition: color var(--fq-trans)
}

.fq-open h2.fq-q-text {
  color: var(--fq-accent)
}

.fq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:#000;
  border: 1px solid var(--fq-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fq-trans), transform var(--fq-trans)
}

.fq-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--fq-accent);
  transition: transform var(--fq-trans)
}

.fq-open .fq-icon {
  background: var(--fq-accent)
}

.fq-open .fq-icon svg {
  stroke: var(--fq-dark);
  transform: rotate(45deg)
}

.fq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--fq-trans)
}

.fq-answer-inner {
  padding: 0 22px 20px 70px;
  text-align: justify;
  color: var(--fq-text);
  font-size: .94rem;
  line-height: 1.72
}

.fq-more-wrap {
  text-align: center;
  margin-top: 40px
}

.fq-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fq-accent);
  color: var(--fq-dark);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--fq-trans), transform var(--fq-trans), box-shadow var(--fq-trans);
  box-shadow: 0 4px 20px rgb(145 217 4 / .25)
}

.fq-more-btn:hover {
  background: var(--fq-accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgb(145 217 4 / .35)
}

.fq-more-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--fq-dark);
  flex-shrink: 0;
  transition: transform var(--fq-trans)
}

.fq-more-btn:hover svg {
  transform: translateX(3px)
}

.fq-answer {
  cursor: pointer
}

@media (max-width:600px) {
  .fq-section {
    padding: 52px 0 60px
  }
  .fq-answer-inner {
    padding-left: 22px
  }
  .fq-btn {
    padding: 16px 16px;
    gap: 12px
  }
}


    .final-cta-section {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .final-cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .final-cta-section::after {
        content: '';
        position: absolute;
        bottom: -40%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .cta-wrapper {
        max-width: 850px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
        background: #ffc10778;
        padding: 60px 50px;
        border-radius: 30px;
        border: 1px solid #eee;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
        transition: 0.3s;
    }

    .cta-wrapper:hover {
        border-color: #d4a017;
        box-shadow: 0 15px 50px rgba(212, 175, 55, 0.08);
    }

    .cta-badge {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin-bottom: 18px;
        text-transform: uppercase;
    }

    .cta-title {
        font-size: 38px;
        font-weight: 800;
        color: #222;
        margin-bottom: 18px;
        line-height: 1.2;
    }

    .cta-title span {
        color: #d4a017;
    }

    .cta-desc {
        color: #555;
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 16px;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-desc:last-of-type {
        margin-bottom: 30px;
    }

    .cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 35px;
    }

    .cta-btn-primary {
        display: inline-block;
        background: #d4a017;
        color: #000;
        padding: 14px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        transition: 0.3s;
        border: 2px solid #d4a017;
    }

    .cta-btn-primary:hover {
        background: #000;
        color: #d4a017;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

    .cta-btn-secondary {
        display: inline-block;
        background: transparent;
        color: #d4a017;
        padding: 14px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        transition: 0.3s;
        border: 2px solid #d4a017;
    }

    .cta-btn-secondary:hover {
        background: #d4a017;
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    }

    .cta-trust {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 25px;
        border-top: 1px solid #eee;
    }

    .cta-trust span {
        color: #666;
        font-size: 14px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .cta-trust span::before {
        content: '✦';
        color: #d4a017;
        font-size: 12px;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .final-cta-section {
            padding: 40px 0;
        }

        .cta-wrapper {
            padding: 45px 30px;
            border-radius: 25px;
            margin: 0 15px;
        }

        .cta-title {
            font-size: 32px;
        }

        .cta-desc {
            font-size: 15px;
        }

        .cta-btn-primary,
        .cta-btn-secondary {
            padding: 12px 28px;
            font-size: 15px;
        }

        .cta-trust {
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .cta-wrapper {
            padding: 35px 20px;
            border-radius: 20px;
        }

        .cta-title {
            font-size: 28px;
        }

        .cta-desc {
            font-size: 14px;
            text-align: justify;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .cta-btn-primary,
        .cta-btn-secondary {
            width: 100%;
            max-width: 400px;
            text-align: center;
            padding: 12px 20px;
            font-size: 14px;
        }

        .cta-trust {
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }

        .cta-trust span {
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .final-cta-section {
            padding: 40px 0;
        }

        .cta-wrapper {
            padding: 28px 16px;
            border-radius: 16px;
            margin: 0 10px;
        }

        .cta-badge {
            font-size: 11px;
            padding: 4px 14px;
        }

        .cta-title {
            font-size: 22px;
        }

        .cta-desc {
            font-size: 13px;
            line-height: 1.7;
        }

        .cta-btn-primary,
        .cta-btn-secondary {
            font-size: 13px;
            padding: 10px 16px;
            max-width: 100%;
        }

        .cta-trust span {
            font-size: 12px;
        }
    }

    @media (max-width: 380px) {
        .cta-wrapper {
            padding: 22px 12px;
        }

        .cta-title {
            font-size: 20px;
        }

        .cta-desc {
            font-size: 12px;
        }

        .cta-btn-primary,
        .cta-btn-secondary {
            font-size: 12px;
            padding: 8px 14px;
        }
    }
