.social-hero {
    position: relative;
    height: 100vh;
    background: url('../images/1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 40px;
}

/* DARK OVERLAY */
.social-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* CONTENT */
.hero-content {
    position: relative;
    text-align: center;
    color: #ffffff;
    max-width: 1200px;
    padding: 20px;
}

/* TOP SMALL TEXT */
.top-text {
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* ORANGE TEXT */
.highlight {
    color: #ff6a00;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* MAIN HEADING */
.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

/* BOTTOM POINTS */
.hero-points {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 26px;
    opacity: 0.9;
}

.hero-points span {
    position: relative;
}

/* OPTIONAL SMALL DOT CONNECTOR */
.hero-points span::after {
    content: "•";
    margin-left: 15px;
}

.hero-points span:last-child::after {
    content: "";
}
.usp-section {
    background: #0b0b0b;
    color: #ffffff;
    padding: 80px 20px;
    position: relative;
}

.usp-section .container {
    max-width: 1200px;
    margin: auto;
}

/* INTRO */
.usp-intro {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 900px;
    margin-bottom: 40px;
}

/* HEADING */
.usp-heading {
    position: relative;
    margin-bottom: 60px;
}

.usp-heading h2 {
    font-size: 36px;
    font-weight: 800;
    z-index: 2;
    position: relative;
}


/* GRID */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.usp-box {
    background: #111;
    padding: 30px;
    border-radius: 6px;
    transition: 0.3s;
}

/* HOVER */
.usp-box:hover {
    background: #1a1a1a;
    transform: translateY(-5px);
}

/* TITLE */
.usp-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

/* NUMBER */
.usp-box h3 span {
    color: #ff6a00;
    font-weight: 800;
    margin-right: 10px;
    font-size: 26px;
}

/* LIST */
.usp-box ul {
    list-style: none;
    padding: 0;
}

.usp-box li {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.8;
    position: relative;
    padding-left: 20px;
}

/* BULLET */
.usp-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6a00;
}
.showreel {
    background: #0b0b0b;
    color: #ffffff;
    padding: 40px 20px;
    position: relative;
}

.showreel .container {
    max-width: 1200px;
    margin: auto;
}

.title {
    font-size: 36px;
    font-weight: 800;
}

/* TABS */
.tabs {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.tab {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    position: relative;
}

.tab.active {
    color: #ff6a00;
}

.tab.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6a00;
}

/* WRAPPER */
.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* SLIDER TAKES FULL SPACE */
.slider {
    flex: 1;
    overflow: hidden;
}

/* NAV BUTTONS */
.nav {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

/* HOVER */
.nav:hover {
    background: #ff6a00;
    color: #0b0b0b;
    border-color: #ff6a00;
    transform: scale(1.1);
}

/* REMOVE OLD POSITIONING */
.prev, .next {
    position: static;
}
.track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.item {
    min-width: 300px;
    height: 400px;
    cursor: pointer;
    position: relative;
}

.item img,
.item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* MODAL */
.preview-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.preview-modal.active {
    display: flex;
}

/* CONTENT CENTER */
.preview-wrapper {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE */
.preview-wrapper img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 6px;
}

/* VIDEO */
.preview-wrapper video {
    max-height: 90vh;
    max-width: 100%;
    border-radius: 6px;
}

/* CLOSE */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #ffffff;
    cursor: pointer;
}

/* COUNTER */
.counter {
    position: absolute;
    top: 20px;
    left: 30px;
    color: #ffffff;
    font-size: 16px;
}

/* NAV */
.preview-modal .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

.preview-modal .prev { left: 20px; }
.preview-modal .next { right: 20px; }
/* PLAY ICON OVER VIDEO */
.item.video-item::after {
    content: "▶";
    position: absolute;
    font-size: 40px;
    color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.9;
}

/* DARK OVERLAY ON VIDEO */
.item.video-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
}
.track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
}
.promise-clean {
    background: #0b0b0b;
    color: #ffffff;
    padding: 40px 20px;
}

.promise-clean .container {
    max-width: 1200px;
    margin: auto;
}

/* SECTION BLOCKS */
.promise-top,
.deliver-top {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

/* HEADINGS */
.promise-clean h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* TOP GRID */
.promise-items {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

/* EACH ITEM */
.promise-item {
    max-width: 220px;
}

/* BIG NUMBERS */
.promise-item h3 {
    font-size: 80px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #ff6a00;
    margin-bottom: 15px;
}

/* TEXT */
.promise-item p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

/* DELIVER GRID */
.deliver-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* ICON */
.deliver-item i {
    font-size: 40px;
    color: #ff6a00;
    margin-bottom: 15px;
}

/* TEXT */
.deliver-item p {
    font-size: 16px;
    max-width: 200px;
    margin: auto;
    line-height: 1.4;
}
.approach-clone {
    background: #0b0b0b;
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
}

.approach-clone .container {
    max-width: 1200px;
    margin: auto;
}

.approach-clone h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.approach-clone .intro {
    opacity: 0.8;
    margin-bottom: 60px;
}

/* SAME FLEX SYSTEM */
.steps-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* STEP */
.step-box {
    width: 260px;
}

/* NUMBER BOX (MATCH YOUR IMAGE STYLE) */
.num {
    width: 70px;
    height: 70px;
    background: #ff6a00;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* TEXT */
.step-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-box p {
    font-size: 14px;
    opacity: 0.75;
}

/* ARROW */
.steps-wrap .arrow {
    font-size: 40px;
    color: #ff6a00;
    font-weight: bold;
}
.capabilities-sec {
    padding: 80px 20px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("/images/3.jpg") center/cover no-repeat;
}

.cap-container {
    max-width: 1200px;
    margin: auto;
    background:white;
    padding: 40px;
    border-radius: 10px;
}

/* TITLE */
.cap-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: black;
    position: relative;
}

.cap-title::after {
    content: "";
    width: 520px;
    height: 3px;
    background: #ff6a00;
    display: block;
    margin: 10px auto 0;
}

/* GRID */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.cap-card {
    background: rgba(255,255,255,0.85);
    color: #0b0b0b;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.cap-card:hover {
    transform: translateY(-6px);
}

/* BRAND TEXT */
.cap-brand {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 10px;
}

/* BRAND COLORS */
.fb { color: #1877f2; }
.ig { color: #e1306c; }
.li { color: #0077b5; }
.x { color: #0b0b0b; }
.yt { color: #ff0000; }
.wa { color: #25d366; }

/* TEXT */
.cap-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.cap-card p {
    font-size: 14px;
    color: #333;
}
.faq-real {
    background: #0b0b0b;
    color: #ffffff;
    padding: 80px 20px;
}

.faq-wrap {
    max-width: 1100px;
    margin: auto;
}

/* TITLE */
.faq-heading {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* ITEM */
.faq-item {
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* QUESTION ROW */
.faq-q {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    cursor: pointer;
}

/* ICON */
.faq-q .icon {
    font-size: 22px;
    font-weight: bold;
    width: 20px;
    text-align: center;
}

/* TEXT */
.faq-q .text {
    font-size: 18px;
}

/* ACTIVE ICON COLOR */
.faq-item.active .icon {
    color: #ff6a00;
}

/* ANSWER */
.faq-a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s ease;
    color: #9ca3af;
    font-size: 14px;
}

/* OPEN */
.faq-item.active .faq-a {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 15px;
}

/* CTA */
.faq-bottom {
    text-align: center;
    margin-top: 80px;
}

.faq-bottom p {
    opacity: 0.7;
    margin-bottom: 20px;
}

.faq-bottom h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

/* BUTTON */
.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 2px solid #ff6a00;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.faq-btn:hover {
    background: #ff6a00;
}
@media (max-width: 1024px) {

    /* ================= HERO ================= */
    .hero-content {
        max-width: 900px;
    }

    .highlight {
        font-size: 34px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-points {
        font-size: 20px;
        gap: 20px;
    }

    /* ================= USP ================= */
    .usp-section {
        padding: 30px 20px;
    }

    .usp-heading h2 {
        font-size: 30px;
    }

    .bg-text {
        font-size: 70px;
    }

    .usp-grid {
        gap: 20px;
    }

    .usp-box {
        padding: 25px;
    }

    .usp-box h3 {
        font-size: 18px;
    }

    /* ================= SHOWREEL ================= */
    .title {
        font-size: 30px;
    }

    .tabs {
        gap: 20px;
    }

    .tab {
        font-size: 16px;
    }

    .item {
        min-width: 260px;
        height: 360px;
    }

    .nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* ================= PROMISE ================= */
    .promise-clean {
        padding: 30px 20px;
    }

    .promise-clean h2 {
        font-size: 30px;
    }

    .promise-item h3 {
        font-size: 60px;
    }

    .promise-item p {
        font-size: 16px;
    }

    .promise-items {
        gap: 60px;
    }

    .deliver-items {
        gap: 40px;
    }

    /* ================= APPROACH ================= */
    .approach-clone h2 {
        font-size: 30px;
    }

    .step-box {
        width: 220px;
    }

    .num {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-box h3 {
        font-size: 18px;
    }

    .steps-wrap {
        gap: 15px;
    }

    .steps-wrap .arrow {
        font-size: 30px;
    }

    /* ================= CAPABILITIES ================= */
    .cap-container {
        padding: 30px;
    }

    .cap-title {
        font-size: 28px;
    }

    .cap-title::after {
        width: 300px;
    }

    .cap-grid {
        gap: 20px;
    }

    .cap-card {
        padding: 20px;
    }

    .cap-brand {
        font-size: 28px;
    }

    .cap-card p {
        font-size: 13px;
    }

    /* ================= FAQ ================= */
    .faq-heading {
        font-size: 30px;
    }

    .faq-q .text {
        font-size: 16px;
    }

    .faq-bottom h3 {
        font-size: 24px;
    }

    .faq-btn {
        padding: 10px 22px;
    }

}
@media (max-width: 768px) {

    /* ================= HERO ================= */
    .social-hero {
        height: auto;
        padding: 100px 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .highlight {
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-points {
        flex-direction: column;
        gap: 10px;
        font-size: 18px;
    }

    .hero-points span::after {
        display: none;
    }

    /* ================= USP ================= */
    .usp-grid {
        grid-template-columns: repeat(2, 1fr); /* 2-2 layout */
    }

    .bg-text {
        display: none; /* clutter removal */
    }

    /* ================= SHOWREEL ================= */
    .slider-wrapper {
        gap: 10px;
    }

    .item {
        min-width: 220px;
        height: 320px;
    }

    .tabs {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    /* ================= PROMISE ================= */
    .promise-items {
        gap: 40px;
    }

    .promise-item {
        max-width: 45%; /* 2 per row */
    }

    .promise-item h3 {
        font-size: 50px;
    }

    .deliver-items {
        gap: 30px;
    }

    .deliver-item {
        max-width: 45%; /* 2 per row */
    }

    /* ================= APPROACH ================= */
    .step-box {
        width: 45%; /* 2 per row */
    }

    .steps-wrap {
        gap: 20px;
    }

    /* arrows still visible but tighter */
    .steps-wrap .arrow {
        font-size: 26px;
    }

    /* ================= CAPABILITIES ================= */
    .cap-grid {
        grid-template-columns: repeat(2, 1fr); /* 2-2 */
    }

    .cap-container {
        padding: 25px;
    }

    .cap-title::after {
        width: 200px;
    }

    /* ================= FAQ ================= */
    .faq-heading {
        text-align: center;
    }

    .faq-q {
        gap: 10px;
    }

    .faq-q .text {
        font-size: 15px;
    }

    .faq-bottom {
        margin-top: 60px;
    }

    .faq-bottom h3 {
        font-size: 22px;
    }

    .faq-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

}
@media (max-width: 480px) {

    /* ================= HERO ================= */
    .social-hero {
        padding: 40px 15px;
    }

    .highlight {
        font-size: 22px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-points {
        font-size: 16px;
    }

    /* ================= USP ================= */
    .usp-grid {
        grid-template-columns: 1fr; /* FULL STACK */
    }

    .usp-box {
        padding: 20px;
    }

    .usp-box h3 {
        font-size: 16px;
    }

    /* ================= SHOWREEL ================= */
    .item {
        min-width: 180px;
        height: 260px;
    }

    .nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* ================= PROMISE ================= */
    .promise-items,
    .deliver-items {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .promise-item,
    .deliver-item {
        max-width: 100%;
    }

    .promise-item h3 {
        font-size: 42px;
    }

    .promise-item p {
        font-size: 14px;
    }

    /* ================= APPROACH ================= */
    .steps-wrap {
        flex-direction: column;
        gap: 20px;
    }

    .step-box {
        width: 100%;
        max-width: 280px;
    }

    /* 🔥 ROTATE ARROWS DOWN */
    .steps-wrap .arrow {
        transform: rotate(90deg);
        font-size: 28px;
    }

    /* ================= CAPABILITIES ================= */
    .cap-grid {
        grid-template-columns: 1fr; /* STACK */
    }

    .cap-container {
        padding: 20px;
    }

    .cap-title {
        font-size: 24px;
    }

    .cap-title::after {
        width: 120px;
    }

    .cap-brand {
        font-size: 24px;
    }

    .cap-card {
        padding: 18px;
    }

    /* ================= FAQ ================= */
    .faq-heading {
        font-size: 24px;
    }

    .faq-q {
        padding: 14px 0;
    }

    .faq-q .text {
        font-size: 14px;
    }

    .faq-a {
        font-size: 13px;
    }

    .faq-bottom h3 {
        font-size: 20px;
    }

    .faq-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

}