/* HERO BASE */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

/* BACKGROUND IMAGE */
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/1.jpg') center/cover no-repeat;
    z-index: 1;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2;
}

/* CONTENT CENTER */
.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 0 20px;
    color: #fff;
}

/* SUBTITLE */
.subtitle {
    color: #ff7a00;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* TITLE */
.title {
    font-size: 48px;
    font-weight: 800;
    max-width: 900px;
    line-height: 1.2;
}

/* DIVIDER LINE */
.divider {
    width: 80px;
    height: 3px;
    background: #ff7a00;
    margin: 20px 0;
}

/* FEATURES LINE */
.features {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

/* DOT BETWEEN TEXT */
.dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

/* FLOATING SHAPES */
.hero-shapes .shape {
    position: absolute;
    opacity: 0.2;
    z-index: 3;
}
/* SECTION */
.uxp-section {
    background: #0b0b0b;
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
}

/* CONTAINER */
.uxp-container {
    max-width: 1200px;
    margin: auto;
}

/* INTRO */
.uxp-intro {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 12px;
    max-width: 900px;
}

/* TITLE */
.uxp-title {
    font-size: 36px;
    font-weight: 800;
    margin: 40px 0;
}

/* GRID */
.uxp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.uxp-card {
    background: #111;
    padding: 25px;
    transition: 0.3s;
}

/* HOVER (you didn’t add, but you should have) */
.uxp-card:hover {
    background: #181818;
    transform: translateY(-4px);
}

/* HEADING */
.uxp-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* NUMBER */
.uxp-card h3 span {
    color: #ff6a00;
    font-size: 26px;
    font-weight: 800;
    margin-right: 8px;
}

/* LIST */
.uxp-card ul {
    list-style: none;
    padding: 0;
}

/* ITEM */
.uxp-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.85;
}

/* DOT */
.uxp-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -6px;
    font-size: 26px;
    color: #ff6a00;
}
.work-section {
    background: #0b0b0b;
    color: #fff;
    padding: 40px 40px;
    font-family: 'Montserrat', sans-serif;
}

.work-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.work-title {
    font-size: 36px;
    font-weight: 800;
    position: relative;
    margin-bottom: 40px;
}
/* META */
.work-meta {
    display: flex;
    gap: 200px;
    margin-bottom: 30px;
}

.work-meta p {
    font-size: 13px;
    color: #aaa;
}

.work-meta h4 {
    font-size: 16px;
    font-weight: 600;
}

/* SLIDER */
.work-slider {
    position: relative;
    background: #ff7a00;
    padding: 40px;
    border-radius: 6px;
}

/* IMAGE */
.work-slider img {
    width: 100%;
    border-radius: 6px;
}

/* NAV BUTTONS */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
}

.nav.left {
    left: 10px;
}

.nav.right {
    right: 10px;
}
.webapproach {
    background: #0b0b0b;
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
}

.webapproach .container {
    max-width: 1200px;
    margin: auto;
}

.webapproach h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.webapproach .intro {
    opacity: 0.8;
    margin-bottom: 60px;
}

/* STEPS LAYOUT */
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* STEP BOX */
.step {
    width: 260px;
}

/* NUMBER CIRCLE */
.number {
    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: 20px auto 15px;
}

/* TEXT */
.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    opacity: 0.75;
}

/* ARROW */
.arrow {
    font-size: 40px;
    color: #ff6a00;
    font-weight: bold;
}

.cap-section {
    background: #0b0b0b;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
}

.cap-container {
    max-width: 1100px;
    margin: auto;
}

/* BOX */
.cap-box {
    border-bottom: 1px solid #ff6a00;
}

/* HEAD */
.cap-head {
    font-size: 28px;
    font-weight: 700;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* SYMBOL */
.symbol {
    font-size: 30px;
    color: #ff6a00;
}

/* ACTIVE HEAD */
.cap-box.active .cap-head {
    color: #ff6a00;
}

/* BODY */
.cap-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    border: 1px solid #ffffff;
}

/* OPEN STATE */
.cap-box.active .cap-body {
    max-height: 2000px; /* enough for content */
    opacity: 1;
    padding: 20px 0;
}

/* TEXT */
.cap-body h3 {
    margin-bottom: 10px;
    margin-left: 20px;
}

.cap-body h4 {
    margin-top: 20px;
    margin-left: 20px;
    color: #ff6a00;
}

.cap-body p {
    opacity: 0.85;
    margin-left: 20px;
}

.cap-body ul {
    list-style: none;
    padding: 0;
    margin-left: 20px;
}

.cap-body li {
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

.cap-body li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 30px;
    color: #ff6a00;
}
/* INNER LAYOUT */
.cap-inner {
    display: flex;
    gap: 40px;
    align-items: stretch; /* IMPORTANT */
}

/* TEXT */
.cap-text {
    width: 55%;
}

/* IMAGE CONTAINER */
.cap-image {
    width: 45%;
    height: 100%; /* match text height */
    overflow: hidden;
    border-radius: 10px;
}

/* IMAGE FIX */
.cap-image img {
    width: 100%;
    height: 100%;
    max-height: 500px; /* control size */
    object-fit: cover; /* KEY LINE */
}

/* OPTIONAL: make it more premium */
.cap-image img {
    filter: contrast(1.1) brightness(0.95);
}
.faq-section {
    background: #0b0b0b;
    color: #fff;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
}

.faq-container {
    max-width: 1000px;
    margin: auto;
}

/* TITLE */
.faq-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* HEAD */
.faq-head {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}

.faq-head i {
    color: #ff6a00;
    width: 20px;
    height: 20px;
}

/* BODY */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    font-size: 14px;
    color: #ccc;
}

/* ACTIVE */
.faq-item.active .faq-body {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 15px;
}

/* CTA */
.faq-cta {
    text-align: center;
    margin-top: 80px;
}

.faq-cta h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

/* BUTTON */
.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border: 1px solid #ff6a00;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.faq-btn:hover {
    background: #ff6a00;
}
@media (max-width: 1024px) {

    /* HERO */
    .title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 22px;
    }

    .features {
        font-size: 16px;
        gap: 10px;
    }

    /* SECTION SPACING */
    .uxp-section,
    .work-section,
    .webapproach,
    .cap-section,
    .faq-section {
        padding: 50px 20px;
    }

    /* TITLES */
    .uxp-title,
    .work-title,
    .webapproach h2,
    .faq-title {
        font-size: 28px;
    }

    /* USP CARDS */
    .uxp-grid {
        gap: 18px;
    }

    .uxp-card {
        padding: 18px;
    }

    .uxp-card h3 {
        font-size: 16px;
    }

    .uxp-card li {
        font-size: 13px;
    }

    /* WORK META */
    .work-meta {
        gap: 80px;
    }

    .work-meta h4 {
        font-size: 14px;
    }

    .work-meta p {
        font-size: 12px;
    }

    .work-slider {
        padding: 25px;
    }

    /* PROCESS (IMPORTANT) */
    .step {
        width: 220px;
    }

    .number {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .step h3 {
        font-size: 18px;
    }

    .step p {
        font-size: 13px;
    }

    .arrow {
        font-size: 30px;
    }

    /* CAP SECTION */
    .cap-head {
        font-size: 22px;
    }

    .symbol {
        font-size: 24px;
    }

    .cap-inner {
        gap: 25px;
    }

    .cap-text {
        width: 60%;
    }

    .cap-image {
        width: 40%;
    }

    .cap-body h3 {
        font-size: 18px;
    }

    .cap-body p,
    .cap-body li {
        font-size: 13px;
    }

    /* FAQ */
    .faq-head {
        font-size: 16px;
    }

    .faq-body {
        font-size: 13px;
    }

    .faq-cta h3 {
        font-size: 26px;
    }
}
@media (max-width: 768px) {

    /* GLOBAL SPACING */
    .uxp-section,
    .work-section,
    .webapproach,
    .cap-section,
    .faq-section {
        padding: 40px 15px;
    }

    /* TITLES */
    .title {
        font-size: 30px;
    }

    .subtitle {
        font-size: 18px;
    }

    .uxp-title,
    .work-title,
    .webapproach h2,
    .faq-title {
        font-size: 24px;
    }

    /* HERO TEXT */
    .features {
        font-size: 14px;
        gap: 8px;
    }

    /* USP GRID → 2/2 */
    .uxp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .uxp-card {
        padding: 15px;
    }

    .uxp-card h3 {
        font-size: 15px;
    }

    .uxp-card li {
        font-size: 12px;
    }

    /* WORK META STACK */
    .work-meta {
        gap: 55px;
        align-items: flex-start;
    }

    /* PROCESS (STEPS → 2/2) */
    .steps {
        gap: 30px;
    }

    .step {
        width: calc(50% - 20px);
    }

    .number {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .step h3 {
        font-size: 16px;
    }

    .step p {
        font-size: 12px;
    }

    .arrow {
        display: none; /* IMPORTANT: arrows break layout at this size */
    }

    /* CAP SECTION (STACK) */
    .cap-inner {
        flex-direction: column;
        gap: 20px;
    }

    .cap-text,
    .cap-image {
        width: 100%;
    }

    .cap-head {
        font-size: 20px;
    }

    .cap-body h3 {
        font-size: 16px;
    }

    .cap-body p,
    .cap-body li {
        font-size: 12px;
    }

    /* FAQ */
    .faq-head {
        font-size: 15px;
    }

    .faq-body {
        font-size: 12px;
    }

    .faq-cta h3 {
        font-size: 22px;
    }
}
@media (max-width: 480px) {

    /* GLOBAL */
    .uxp-section,
    .work-section,
    .webapproach,
    .cap-section,
    .faq-section {
        padding: 30px 12px;
    }

    /* HERO */
    .title {
        font-size: 24px;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 16px;
    }

    .features {
        font-size: 13px;
        gap: 6px;
    }

    .divider {
        width: 60px;
        margin: 15px 0;
    }

    /* TITLES */
    .uxp-title,
    .work-title,
    .webapproach h2,
    .faq-title {
        font-size: 20px;
    }

    /* USP → 1 COLUMN */
    .uxp-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .uxp-card {
        padding: 14px;
    }

    .uxp-card h3 {
        font-size: 14px;
    }

    .uxp-card li {
        font-size: 12px;
    }

    /* WORK */
    .work-meta {
        gap: 20px;
    }

    .work-meta h4 {
        font-size: 13px;
    }

    .work-meta p {
        font-size: 11px;
    }

    .work-slider {
        padding: 15px;
    }

    .nav {
        font-size: 18px;
        padding: 6px 10px;
    }

    /* PROCESS → 1 COLUMN */
    .steps {
        gap: 20px;
    }

    .step {
        width: 100%;
    }

    .number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .step h3 {
        font-size: 15px;
    }

    .step p {
        font-size: 12px;
    }

    .arrow {
        display: none;
    }

    /* CAP SECTION */
    .cap-head {
        font-size: 18px;
    }

    .symbol {
        font-size: 20px;
    }

    .cap-inner {
        flex-direction: column;
        gap: 15px;
    }

    .cap-text,
    .cap-image {
        width: 100%;
    }

    .cap-body h3 {
        font-size: 15px;
    }

    .cap-body h4 {
        font-size: 14px;
    }

    .cap-body p,
    .cap-body li {
        font-size: 12px;
    }

    .cap-image img {
        max-height: 250px;
    }

    /* FAQ */
    .faq-head {
        font-size: 14px;
        gap: 10px;
    }

    .faq-body {
        font-size: 12px;
    }

    .faq-cta h3 {
        font-size: 18px;
    }

    .faq-btn {
        padding: 8px 14px;
        font-size: 10px;
    }
}