* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 0;
}

body {
    background: #111;
    color: #fff;
    overflow-x: hidden;
}

.container {
    width: 97%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 10;
}

/* Basic styling for the navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;    
}

/* Style the logo */
.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
}

/* Style the navigation links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}


.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* Style the burger menu icon for small screens */

.mobile_icon{
    display: flex;
    gap: 15px;
    align-items: center;
}


.nav-btn {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #ff5c1a;
    padding: 5px 12px;
    border-radius: 40px;
    
}
.nav-btn a{
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}
.nav-btn span{
    background: #fff;
    border-radius: 50px;
    padding: 5px;
}
.nav-btn span svg{
    width: 20px;
    height: 20px;
    stroke: #ff5c1a;
    
}
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
}

/* Media query for small screens */
@media screen and (max-width: 768px) {
    .site-header{
        padding: 5px 0;
    }
    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .nav-active {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 56px;
        right: 2%;
        width: auto;
        min-width: 200px;
        padding: 10px;
        gap: 10px;   
        border-radius: 5px;     
        
    }

    .nav-active a {
        color: #000;
    }

    .nav-active li {        
        margin: 0;
        
    }
    .nav-active li:not(:last-child){
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .nav-btn {
        padding: 3px 10px;
    }
    .nav-btn a{
        font-size: 16px;
        font-weight: 600;
    }
}
/* Media query for small screens */


/* ================= HERO ================= */

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
    padding: 150px 0 120px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 120, 0, .25), transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 120, 255, .15), transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

.hero-left {
    max-width: 55%;
}

.badge {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 500;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-left p {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;    
}

.btn-primary {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #ff5c1a;
    padding: 10px 18px;
    border-radius: 40px;
    
}
.btn-primary a{
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}
.btn-primary span{
    background: #fff;
    border-radius: 50px;
    padding: 5px;
}
.btn-primary span svg{
    width: 20px;
    height: 20px;
    stroke: #ff5c1a;
    
}
.btn-secondary{
    display: flex;
    background: #e02c2c;
    border-radius: 40px;
    padding: 5px 15px 5px 5px;
    align-items: center;
    
}
.btn-secondary img{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid #2c2a2a;
    
}
.btn-secondary a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}


/* RIGHT SIDE CARDS */

.hero-right {
    position: relative;
    width: 45%;
    aspect-ratio: 1 / 1;
}

.card {
    position: absolute;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card1 {
    width: 70%;
    height: 50%;
    top: 0;
    right: 0;
}

.card2 {
    width: 50%;
    height: 65%;
    bottom: 0;
    left: 0;
}

.card3 {
    width: 50%;
    height: 50%;
    bottom: 0;
    right: 0;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff5c1a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
}
.play-btn a{
    font-size: 0;
}
.play-btn svg{
    width: 40px;
    height: 40px;
    fill: #fff;
}

/* Media query for small screens */
@media screen and (max-width: 1100px) {
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        
    }
    .hero-right {
        width: 65%;
    }
    

}
@media screen and (max-width: 768px){
    .hero-section {
        padding: 150px 0 80px;
    }
    .hero-left h1 {
        font-size: 35px;
    }
    .hero-buttons{
        flex-direction: column;
        align-items: center;
        flex-direction: column-reverse;
    }
    .hero-right {
        width: 90%;
    }
    .play-btn {
        width: 50px;
        height: 50px;
    }
    .play-btn svg{
    width: 30px;
    height: 30px;
}
}


/* ================= SERVICES ================= */

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 92, 26, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.services-header h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header p {
    font-size: 18px;
    color: #999;
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.service-card {
    position: relative;
    padding: 50px 40px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: auto;
    display: flex;
    flex-direction: column;
    group:hover & {
        transform: translateY(-10px);
    }
}

.card-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    z-index: 1;
}

.card-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 64px;
    font-weight: 800;
    opacity: 0.1;
    z-index: 1;
}

.service-card-1 {
    background: linear-gradient(135deg, rgba(255, 92, 26, 0.15) 0%, rgba(255, 92, 26, 0.03) 100%);
    border-color: rgba(255, 92, 26, 0.3);
}

.service-card-1:hover {
    background: linear-gradient(135deg, rgba(255, 92, 26, 0.3) 0%, rgba(255, 92, 26, 0.08) 100%);
    border-color: rgba(255, 92, 26, 0.6);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 92, 26, 0.2);
}

.service-card-1 .service-icon {
    color: #ff5c1a;
}

.service-card-2 {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.15) 0%, rgba(0, 150, 255, 0.03) 100%);
    border-color: rgba(0, 150, 255, 0.3);
}

.service-card-2:hover {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.3) 0%, rgba(0, 150, 255, 0.08) 100%);
    border-color: rgba(0, 150, 255, 0.6);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 150, 255, 0.2);
}

.service-card-2 .service-icon {
    color: #0096ff;
}

.service-card-3 {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.15) 0%, rgba(100, 200, 255, 0.03) 100%);
    border-color: rgba(100, 200, 255, 0.3);
}

.service-card-3:hover {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.3) 0%, rgba(100, 200, 255, 0.08) 100%);
    border-color: rgba(100, 200, 255, 0.6);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(100, 200, 255, 0.2);
}

.service-card-3 .service-icon {
    color: #64c8ff;
}

.service-icon-wrapper {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: currentColor;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
}

.service-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.15);
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 16px;
    color: #bbb;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}


/* Service Counter */
.service-counter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(255, 92, 26, 0.08) 0%, transparent 100%);
    border: 1px solid rgba(255, 92, 26, 0.2);
    border-radius: 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.counter-item h4 {
    font-size: 48px;
    font-weight: 800;
    color: #ff5c1a;
    margin-bottom: 10px;
}

.counter-item p {
    font-size: 16px;
    color: #999;
    font-weight: 500;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .service-icon svg {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }

    .services-header h2 {
        font-size: 38px;
    }

    .services-header p {
        font-size: 16px;
    }

    .services-grid {
        gap: 30px;
        margin-bottom: 60px;
    }

    .service-card {
        min-height: auto;
        padding: 40px 30px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .service-card p {
        font-size: 15px;
    }

    .card-number {
        font-size: 48px;
    }

    .service-counter {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px;
    }

    .counter-item h4 {
        font-size: 36px;
    }
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 92, 26, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 150, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.contact-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info > div > h2 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #aaa;
        background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
  
}

.contact-info > div>  p {
    font-size: 32px;
    color: #fff;
    line-height: 1.3;
    font-weight: 700;
}

.info-item {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 92, 26, 0.15), rgba(0, 150, 255, 0.1));
    border-radius: 15px;
    color: #ff5c1a;
    flex-shrink: 0;
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 15px;
    color: #bbb;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 92, 26, 0.15);
    border: 1px solid rgba(255, 92, 26, 0.3);
    color: #ff5c1a;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background: #ff5c1a;
    color: #fff;
    transform: translateY(-5px);
    border-color: #ff5c1a;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff5c1a;
    background: rgba(255, 92, 26, 0.1);
    box-shadow: 0 0 20px rgba(255, 92, 26, 0.2);
}

.form-submit {
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff5c1a 0%, #ff8c42 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 92, 26, 0.3);
}

.form-submit:active {
    transform: translateY(-1px);
}

@media screen and (max-width: 1100px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .contact-section{
        padding: 50px 0;
    }
    .contact-info h2 {
        font-size: 32px;
    }

    .info-item {
        padding-bottom: 20px;
    }

    .contact-form {
        gap: 15px;
    }
}

/* ================= TESTIMONIALS ================= */

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 92, 26, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 92, 26, 0.15);
    color: #ff5c1a;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.testimonials-header h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-header p {
    font-size: 18px;
    color: #999;
    max-width: 500px;
    margin: 0 auto;
}

.testimonials-wrapper {
    position: relative;
    z-index: 2;
}

/* Carousel */
.testimonials-carousel {
    position: relative;
    margin-bottom: 50px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    transition: cursor 0.2s ease;
}

.carousel-track.grabbing {
    cursor: grabbing;
    scroll-behavior: auto;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.testimonial-item {
    flex: 0 0 calc((100% - 60px) / 3);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.testimonial-card {
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(255, 92, 26, 0.15);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff5c1a, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card.premium {
    background: linear-gradient(135deg, rgba(255, 92, 26, 0.15) 0%, rgba(255, 92, 26, 0.05) 100%);
    border-color: rgba(255, 92, 26, 0.4);
    box-shadow: 0 0 30px rgba(255, 92, 26, 0.1);
}

.testimonial-card:hover {
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    border-color: rgba(255, 92, 26, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 92, 26, 0.15);
}

.card-gradient {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 92, 26, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.testimonial-card:hover .card-gradient {
    left: 100%;
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stars-inline {
    color: #ff5c1a;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1;
}

.comment {
    font-size: 15px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: auto;
    font-style: italic;
}

.author-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 92, 26, 0.1);
}

.author-mini img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 92, 26, 0.3);
}

.author-mini h5 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.author-mini span {
    font-size: 12px;
    color: #888;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 92, 26, 0.3);
    background: rgba(255, 92, 26, 0.1);
    color: #ff5c1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #ff5c1a;
    color: #fff;
    border-color: #ff5c1a;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 92, 26, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    border-color: rgba(255, 92, 26, 0.6);
}

.indicator.active {
    background: #ff5c1a;
    border-color: #ff5c1a;
    width: 30px;
    border-radius: 6px;
}

/* Stats Section */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(255, 92, 26, 0.08) 0%, transparent 100%);
    border: 1px solid rgba(255, 92, 26, 0.2);
    border-radius: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: #ff5c1a;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 15px;
    color: #999;
    font-weight: 500;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .testimonial-item {
        flex: 0 0 calc((100% - 30px) / 2);
    }

    .featured-testimonial {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .featured-quote {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-header h2 {
        font-size: 38px;
    }

    .testimonials-header p {
        font-size: 16px;
    }

    .featured-testimonial {
        padding: 30px;
    }

    .featured-quote {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .featured-author {
        flex-direction: column;
        text-align: center;
    }

    .featured-author img {
        width: 70px;
        height: 70px;
    }

    .testimonial-item {
        flex: 0 0 100%;
    }

    .carousel-btn {
        display: none;
    }

    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px;
    }

    .stat-item h3 {
        font-size: 36px;
    }
}

/* ================= FOOTER ================= */

.footer {
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 92, 26, 0.2);
    padding: 30px 0;
    color: #bbb;
}
.footer div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.copyright p{
    font-size: 14px;
    color: #aaa;
}
.footer-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.footer-menu ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
@media screen and (max-width: 768px){
    .footer div{
        flex-direction: column;
        text-align: center;
    }
}