@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    list-style: none;

}


body {
    font-family: "Roboto", sans-serif;
    color: rgb(102, 102, 102);
    font-weight: 300;
    font-size: 16px;
}

:root {
    --primary-color: rgb(255, 123, 23);
    --secondary-color: rgb(64, 50, 38);
    --white-color: #ffffff;
    --orange: #e8601a;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Space Grotesk", sans-serif;
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
    margin: 0px;
    padding: 0px;
}

a {
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    margin: 0;
    color: inherit;

}

ul {
    margin: 0px;
    padding: 0px;
}

p {
    margin: 0;
    line-height: 25px;
    color: rgb(102, 102, 102);
    font-weight: 300;
}


.main-header {

    position: absolute;

    z-index: 9;
    width: 100%;

    background: rgba(30, 15, 4, 0.95);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.main-header.sticky {
    position: fixed;
    width: 100%;
    background: rgba(30, 15, 4, 0.95);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    top: 0;
    z-index: 26;
}

.menu ul li a {
    font-size: 16px;
    font-weight: 600;
    color: white;
    font-family: 'Roboto';
    transition: 0.5s;
}

.menu ul li a:hover {
    color: var(--primary-color);
}

.main-header.sticky .menu ul li a:hover {
    color: var(--white-color);
}

.menu ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.menu ul li {
    display: inline-block;
    padding: 33px 15px;
}

.menu ul li a i {
    margin-left: 5px;
}

.logo img {
    height: auto;
    vertical-align: middle;
    width: 100%;
    max-width: 125px;
}

.top-social-icon ul li {
    display: inline-block;
    font-size: 16px;
    color: white;
    margin-left: 9px;
    font-weight: 500;
    transition: 0.5s;
}

.top-social-icon ul li :hover {
    color: var(--primary-color);
    transition: 0.5s;
}

.top-social-icon {
    
    display: flex;
    justify-content: end;
    align-items: center;
    text-align: center;
}

/* banner-css-start */
/* header-css-start */
.menu ul li.has-dropdown {
    position: relative;
}

.menu ul li.has-dropdown>a .dd-arrow {
    display: inline-block;
    margin-left: 6px;
    font-size: 10px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.menu ul li.has-dropdown:hover>a .dd-arrow {
    transform: rotate(180deg);
}

.mega-drop {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    transform: translateX(-50%);
    width: 680px;
    background: #fff;
    border-top: 3px solid var(--orange, #e8601a);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 9999;
    pointer-events: none;
}

.menu ul li.has-dropdown:hover .mega-drop {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.md-col {
    padding: 28px 24px 24px;
    border-right: 1px solid #f0ece8;
}

.md-col:last-child {
    border-right: none;
}

.md-col-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0ece8;
}

.md-col-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e8601a, #f5a05a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.md-col-title {
    font-size: 13px;
    font-weight: 800;
    color: #1e0f04;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

.md-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.md-sub-list li {
    display: block !important;
    padding: 0 !important;
    margin-bottom: 4px;
}

.md-sub-list li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 9px 10px !important;
    border-radius: 6px;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #4a3728 !important;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, padding-left 0.2s !important;
    white-space: nowrap;
}

.md-sub-list li a:hover {
    background: #fff5ef;
    color: var(--orange, #e8601a) !important;
    padding-left: 16px !important;
}

.md-sub-list li a .sub-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #fff5ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.md-sub-list li a:hover .sub-icon {
    background: #e8601a;
}

.md-col.single-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.md-single-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff5ef, #ffeadb);
    border: 1px solid rgba(232, 96, 26, 0.15);
    text-decoration: none;
    margin-top: 10px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.md-single-link:hover {
    box-shadow: 0 4px 20px rgba(232, 96, 26, 0.2);
    transform: translateY(-2px);
}

.md-single-link .single-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e8601a, #f5a05a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.md-single-link .single-label {
    font-size: 14px;
    font-weight: 700;
    color: #1e0f04;
    font-family: 'Roboto', sans-serif;
}

.md-single-link .single-desc {
    font-size: 11.5px;
    color: #7a6055;
    line-height: 1.4;
}

.menu ul li.has-dropdown>a {
    position: relative;
}

/* header-css-end */

header {
    overflow: hidden;
}

.hero-text h2 {
    margin-bottom: 50px;
}

.hero-text .hero {
    position: relative;
}

.hero-text .hero .hero-slide a:hover span {
    color: #033a71;
}

.banner .hero-slide img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    object-position: top center;
}

.banner .hero-slide .header-content {
    top: 40%;
    margin-left: 40px;
    max-width: 700px;
    width: 100%;
    padding: 2rem;
    background: rgb(255 123 23 / 60%);
    border-radius: 20px;
}

.banner .hero-slide .header-content h1 {
    font-size: 60px;
    line-height: 60px;
}

.banner .hero-slide .header-content p {
    color: white;
}

.slide-content {
    padding: 10px 20px 10px 0;
}



.slick-dots {
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 20px;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    border-radius: 50%;
    border: 0;
    outline: none;
    background-color: var(--primary-color);
}





.slick-dots li.slick-active button:before {
    opacity: 1;
    font-size: 20px;
    height: 20px;
    width: 20px;
    background: white;
    border-radius: 50px;
    color: white;
    line-height: 20px;
}

/* brand-css-start */
.brand_slider_1 {
    left: 0;
    z-index: 999;
    top: 175px;
    position: absolute;
}

.brand_sec {

    background-color: #f5e8d8;
    padding: 50px 0;
    position: relative;
    height: 600px;
    background-image: url(../images/brand_banner.jpg) !important;
    background-size: cover !important;
    background-position: center bottom !important;
    overflow: auto;
    z-index: 1;
}

/* .brand_sec:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(86deg, rgba(3, 45, 96, 0.9) 38%, rgb(3, 45, 96, 0.3) 100%);
    z-index: -1;
} */
.brand_img {
    width: 100%;
    height: 150px;
    background: white;
    backdrop-filter: blur(2px);

    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    overflow: hidden;

}

.brand_img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.brand_slide {
    padding: 10px;
    width: 20%;
}

.brand_slider_2 {
    left: 0;
    z-index: 999;
    top: 370px;
    position: absolute;
}

/* brand-css-end */


/** Text Animation **/

@-webkit-keyframes fadeInUpSD {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpSD {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUpSD {
    -webkit-animation-name: fadeInUpSD;
    animation-name: fadeInUpSD;
}

.slick-active .slide-content {
    animation-name: fadeInUpSD;
    animation-duration: 1s;
    opacity: 1;
    width: 100%;
    padding: 10px 20px 30px 0;
}

/* Media Queries */



@-webkit-keyframes fadeInUpSD {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpSD {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUpSD {
    -webkit-animation-name: fadeInUpSD;
    animation-name: fadeInUpSD;
}

.slick-active .slide-content {
    animation-name: fadeInUpSD;
    animation-duration: 1s;
    opacity: 1;
    width: 100%;
    padding: 10px 20px 30px 0;
}

.markee {
    background: var(--orange);
    padding: 13px 0;
    overflow: hidden;
}

.ribbon-track {
    display: flex;
    animation: ribbon 22s linear infinite;
    white-space: nowrap;
}

@keyframes ribbon {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ribbon-item {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0 32px;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-color);
}

.ribbon-item b {
    color: var(--secondary-color);
}

.stats-strip {
    background: #1e0f04;
    display: flex;
    border-top: 1px solid rgba(232, 96, 26, .15);
}

.ss-item {
    flex: 1;
    padding: 52px 40px;
    border-right: 1px solid rgba(232, 96, 26, .15);
    text-align: center;
    transition: background .4s;
}

.ss-num {

    font-size: 58px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.ss-label {

    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-top: 10px;
}

.ss-item:hover {
    background: #3a1e0a;
}

.about {
    padding: 130px 0;
    background: #fff8f0;
}

.av-bg {
    position: absolute;
    inset: 0;
    background: #1e0f04;
    clip-path: polygon(0 0, 90% 0, 100% 6%, 100% 100%, 10% 100%, 0 94%);
}

.av-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(232, 96, 26, .06) 0, rgba(232, 96, 26, .06) 1px, transparent 1px, transparent 36px);
}

.av-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: 160px;
    font-weight: 900;
    color: rgba(232, 96, 26, .08);
    user-select: none;
}

.av-stripe {
    position: absolute;
    top: 40px;
    left: -16px;
    width: 8px;
    height: 80px;
    background: var(--orange);
}

.av-tag {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--orange);
    padding: 32px 40px;
    color: var(--white-color);
}

.av-tag-num {

    font-size: 52px;
    font-weight: 900;
    line-height: 1;
}

.av-tag-text {

    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: .85;
}

.about-visual {
    position: relative;
    height: 580px;
}

.stag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}

.stag::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--orange);
}

.sh {
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    color: black;
}

.sh em {
    font-style: italic;
    color: var(--orange);
}

.sb {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(30, 15, 4, .6);
}

.about-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.al-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    font-weight: 300;
    color: rgba(30, 15, 4, .65);
}

.al-dot {
    width: 20px;
    height: 20px;
    background: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 10px;
    font-weight: 700;
}

.btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white-color);

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    transition: background .3s, transform .3s;
}

.btn-fill:hover {
    background: #ff8040;
    transform: translateY(-3px);
}

.services {
    padding: 120px 0;
    background: #1e0f04;
}

.serv-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 70px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .8);

    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    transition: border-color .3s, color .3s;
}

.services .sh {
    color: var(--white-color);
}

.serv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(232, 96, 26, .12);
    border: 1px solid rgba(232, 96, 26, .12);
}

.serv-card {
    background: #1e0f04;
    padding: 52px 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background .4s;
}

.serv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: width .5s ease;
}

.serv-n {

    font-size: 90px;
    font-weight: 900;
    color: rgba(232, 96, 26, .06);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    transition: color .4s;
}

.serv-ic {
    width: 54px;
    height: 54px;
    background: rgba(232, 96, 26, .1);
    border: 1px solid rgba(232, 96, 26, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    transition: background .4s, border-color .4s;
}

.serv-name {

    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.serv-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, .45);
    position: relative;
    z-index: 1;
}

.serv-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;

    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s, transform .3s;
    position: relative;
    z-index: 1;
}

.serv-card:hover {
    background: #3a1e0a;
}

.serv-card:hover .serv-more {
    opacity: 1;
}

.serv-card:hover::before {
    width: 100%;
}

.stag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}

.stag::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--orange);
}

.process {
    padding: 130px 0;
    background: #fff8f0;
}

.process-head {
    text-align: center;
    margin-bottom: 90px;
}

.proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.proc-line {
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange) 20%, var(--orange) 80%, transparent);
    opacity: .3;
}

.proc-step {
    padding: 0 30px;
    text-align: center;
}

.proc-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    background: #fff8f0;
    position: relative;
    z-index: 1;
    transition: background .4s;
}

.proc-num {

    font-size: 36px;
    font-weight: 900;
    color: var(--orange);
    transition: color .3s;
}

.proc-name {

    font-size: 20px;
    font-weight: 700;
    color: #1e0f04;
    margin-bottom: 12px;
}

.proc-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(30, 15, 4, .55);
}

.proc-step:hover .proc-circle {
    background: var(--orange);
}

.proc-step:hover .proc-num {
    color: var(--white-color);
}

.portfolio {
    padding: 120px 0;
    background: #f5e8d8;
}

.port-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
}

.port-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 3px;
}

.pi-a {
    grid-column: span 5;
    grid-row: span 2;
}

.pi {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.p1 {
    background: linear-gradient(135deg, #2d1005 0%, #6b2e10 50%, #3d1a08 100%);
}

.pi-bg {
    position: absolute;
    inset: 0;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.pdot {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(232, 96, 26, .2) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: .5;
}

.pi-over {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 15, 4, .92) 0%, rgba(30, 15, 4, .4) 45%, transparent 80%);
    opacity: .7;
    transition: opacity .4s;
}

.pi-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    transform: translateY(6px);
    transition: transform .4s;
}

.pi-cat {

    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
}

.pi-title {

    font-size: 28px;
    font-weight: 700;
    color: var(--white-color);
}

.pi-b {
    grid-column: span 4;
}

.p2 {
    background: linear-gradient(135deg, #1a1005 0%, #4d300f 100%);
}

.pi-a .pi-title {
    font-size: 28px;
}

.pi-title {

    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
}

.pi-c {
    grid-column: span 3;
}

.p3 {
    background: linear-gradient(135deg, #1a0a14 0%, #4d1830 100%);
}

.pi-d {
    grid-column: span 3;
}

.p4 {
    background: linear-gradient(135deg, #0a1a14 0%, #184d30 100%);
}

.pi-e {
    grid-column: span 4;
}

.p5 {
    background: linear-gradient(135deg, #1a0f00 0%, #6b4a00 100%);
}

.testimonial {
    padding: 120px 0;
    background-color: #1a0a14;
}

.testi-head {
    text-align: center;
    margin-bottom: 72px;

}

.testimonial h2 {
    color: var(--white-color);
}

.tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(232, 96, 26, .1);
    border: 1px solid rgba(232, 96, 26, .1);
}

.tcard {
    background: #1e0f04;
    padding: 52px 44px;
    position: relative;
    transition: background .4s;
}

.ttext {

    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.tauthor {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tavatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(232, 96, 26, .15);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
}

.tname {

    font-size: 14px;
    letter-spacing: 1px;
    color: var(--white-color);
}

.trole {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    margin-top: 3px;
}

.tcard::after {
    content: '\201C';

    font-size: 130px;
    font-weight: 900;
    color: rgba(232, 96, 26, .07);
    position: absolute;
    top: 8px;
    left: 28px;
    line-height: 1;
    pointer-events: none;
}

.tcard:hover {
    background: #3a1e0a;
}

.clients {
    padding: 70px 64px;
    background: #fff8f0;
    border-bottom: 1px solid #e8d4bc;
}

.clients-label {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(30, 15, 4, .75);
    text-align: center;
    margin-bottom: 40px;
}

.clients-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.client-pill {
    font-size: 16px;
    font-weight: 700;
    color: rgba(30, 15, 4, .75);
    letter-spacing: .5px;
    transition: color .3s;
    cursor: default;
}

.cta-section {
    padding: 100px 64px;
    background: #f5e8d8;
}

.cta-inner {
    background: var(--orange);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;

}

.cta-left .sh {
    color: var(--white-color);
    font-size: clamp(36px, 4vw, 52px);
    margin-bottom: 16px;
}

.cta-left .sh em {
    color: #fff8f0;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .4);
    text-underline-offset: 5px;
}

.cta-left p {
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cf-input {
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .3);
    padding: 15px 18px;
    font-size: 14px;
    color: var(--white-color);
    outline: none;
    transition: border-color .3s, background .3s;
}

.cf-submit {
    background: #1e0f04;
    color: var(--white-color);
    border: none;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 18px;
    cursor: pointer;
    transition: background .3s;
}

::placeholder {
    color: var(--white-color);
}

.bg_white {
    background-color: white;
}

footer {
    background: #1e0f04;
    padding: 80px 64px 40px;
}

.footer-top {

    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 60px;
}

.fbrand {

    font-size: 26px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 16px;
}

.fbrand span {
    color: var(--orange);
}

.fdesc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, .4);
    max-width: 260px;
}

.fsocials {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.fsoc {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    font-size: 13px;
    text-decoration: none;
    transition: border-color .3s, color .3s, background .3s;
}

.fsoc:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(232, 96, 26, .1);
}

.fh {

    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 22px;
}

.ful {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ful a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .3s;
}

.ful a:hover {
    color: var(--white-color);
}

.fbot {
    max-width: 1360px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fbot-t {
    font-size: 12px;
    color: rgba(255, 255, 255, .22);
    letter-spacing: .8px;
}


.whatsapp {
    background: #25d366;
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 45px;
    color: #fff;
    border-radius: 50%;
    right: 40px;
    position: fixed;
    bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shadow-pulse 1.3s infinite;
    animation-timing-function: ease-in-out;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 #e8601a;
    }

    90% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

/* banner-css-end */


/* about-css-start */




/* about-css-end */
.about-visual {
    position: relative;
    height: 580px;
    border-radius: 2px;
    overflow: visible;
}

.av-real-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 90% 0, 100% 6%, 100% 100%, 10% 100%, 0 94%);
    display: block;
}

.av-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 15, 4, 0.45) 0%, rgba(232, 96, 26, 0.12) 100%);
    clip-path: polygon(0 0, 90% 0, 100% 6%, 100% 100%, 10% 100%, 0 94%);
    pointer-events: none;
}

/* =====================================================
           PORTFOLIO IMAGES
        ===================================================== */
.pi-bg.has-img {
    background: none !important;
}

.pi-bg.has-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.25, .46, .45, .94);
}

.pi:hover .pi-bg.has-img img {
    transform: scale(1.08);
}

/* carrer-css-start */
.page-header-static {
    background: linear-gradient(135deg, #1e0f04 0%, #3d1e08 40%, #e8601a 100%);
    padding: 130px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header-static::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-static .ph-inner {
    position: relative;
    z-index: 2;
}

.page-header-static h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.page-header-static h1 em {
    font-style: normal;
    color: #ffa55a;
}

.page-header-static p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    max-width: 500px;
}

.breadcrumb-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.breadcrumb-bar a,
.breadcrumb-bar span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-bar a:hover {
    color: #ffa55a;
}

.breadcrumb-bar .sep {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-bar .current {
    color: #ffa55a;
}

/* =====================================================
           OPEN POSITIONS SECTION
        ===================================================== */
.careers-section {
    padding: 80px 0 0;
    background: #faf8f6;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #fff5ef, #ffe0cc);
    color: #e8601a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    border: 1px solid rgba(232, 96, 26, 0.2);
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #1e0f04;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.section-title em {
    font-style: normal;
    color: #e8601a;
}

.section-sub {
    color: #7a6055;
    font-size: 16px;
    margin-bottom: 48px;
    max-width: 520px;
}

/* Job Cards */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.job-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1.5px solid #f0e8e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8601a, #ff9a5c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.job-card:hover {
    border-color: rgba(232, 96, 26, 0.3);
    box-shadow: 0 12px 40px rgba(232, 96, 26, 0.12);
    transform: translateY(-4px);
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-card.featured {
    background: linear-gradient(135deg, #1e0f04 0%, #3d2010 100%);
    border-color: #e8601a;
}

.job-card.featured::before {
    transform: scaleX(1);
}

.job-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff5ef, #ffe0cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.job-card.featured .job-icon {
    background: linear-gradient(135deg, #e8601a, #ff9a5c);
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e0f04;
    margin-bottom: 8px;
}

.job-card.featured .job-title {
    color: #fff;
}

.job-dept {
    font-size: 13px;
    color: #e8601a;
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-card.featured .job-dept {
    color: #ffa55a;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.job-tag {
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: #faf5f0;
    color: #7a5540;
    border: 1px solid #f0e0d0;
}

.job-card.featured .job-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}

.job-desc {
    font-size: 13.5px;
    color: #7a6055;
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-card.featured .job-desc {
    color: rgba(255, 255, 255, 0.65);
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #e8601a;
    text-decoration: none;
    transition: gap 0.2s;
}

.job-card.featured .job-apply-btn {
    color: #ffa55a;
}

.job-apply-btn:hover {
    gap: 14px;
}

/* =====================================================
           APPLICATION FORM SECTION
        ===================================================== */
.application-section {
    background: #fff;
    padding: 80px 0 100px;
}

.app-form-wrapper {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(30, 15, 4, 0.1);
    overflow: hidden;
}

.app-form-header {
    background: linear-gradient(135deg, #1e0f04 0%, #3d2010 60%, #e8601a 100%);
    padding: 48px 56px;
    position: relative;
    overflow: hidden;
}

.app-form-header::after {
    content: '✦';
    position: absolute;
    right: 56px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 120px;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}

.app-form-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.app-form-header h2 em {
    font-style: normal;
    color: #ffa55a;
}

.app-form-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
}

.app-form-body {
    padding: 56px;
}

/* Form fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-row.triple {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 12.5px;
    font-weight: 700;
    color: #3d2010;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-label .req {
    color: #e8601a;
    margin-left: 3px;
}

.form-control-career {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #ede5dd;
    border-radius: 10px;
    font-size: 14.5px;
    color: #1e0f04;
    background: #faf8f6;
    font-family: 'Roboto', sans-serif;
    transition: all 0.25s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-control-career:focus {
    border-color: #e8601a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(232, 96, 26, 0.08);
}

.form-control-career::placeholder {
    color: #b0a09a;
    font-weight: 300;
}

select.form-control-career {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e8601a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

textarea.form-control-career {
    resize: vertical;
    min-height: 110px;
}

/* File upload */
.file-upload-zone {
    border: 2px dashed #e0d5cc;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    background: #faf8f6;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.file-upload-zone:hover,
.file-upload-zone.dragover {
    border-color: #e8601a;
    background: #fff5ef;
}

.file-upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.fuz-icon {
    font-size: 32px;
    margin-bottom: 10px;
    color: #e8601a;
}

.fuz-text {
    font-size: 14px;
    font-weight: 600;
    color: #3d2010;
    margin-bottom: 4px;
}

.fuz-hint {
    font-size: 12px;
    color: #b0a09a;
}

/* Submit */
.form-divider {
    height: 1px;
    background: #f0e8e0;
    margin: 32px 0;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.form-footer-note {
    font-size: 12.5px;
    color: #b0a09a;
    line-height: 1.5;
}

.btn-career-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #e8601a 0%, #ff9a5c 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(232, 96, 26, 0.3);
}

.btn-career-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 96, 26, 0.4);
}

.btn-career-submit:active {
    transform: translateY(0);
}

/* =====================================================
           WHY JOIN US STRIP
        ===================================================== */
.why-join {
    background: linear-gradient(135deg, #fff5ef 0%, #ffeee0 100%);
    padding: 64px 0;
    border-top: 1px solid #f0e0d0;
}

.wj-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.wj-card {
    text-align: center;
}

.wj-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8601a, #ff9a5c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
}

.wj-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e0f04;
    margin-bottom: 8px;
}

.wj-desc {
    font-size: 13.5px;
    color: #7a6055;
    line-height: 1.6;
}

/* =====================================================
           SUCCESS TOAST
        ===================================================== */
.toast-success {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #1e0f04;
    color: #fff;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9999;
}

.toast-success.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success .t-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8601a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* Non-banner page header needs dark bg for nav visibility */
.main-header.page-top {
    background: rgba(30, 15, 4, 0.95);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* carrer-css-end */
/* retail-interior-service-css-start */
/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(30, 15, 4, .88) 0%, rgba(30, 15, 4, .55) 55%, rgba(232, 96, 26, .18) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255, 255, 255, .5) 59px, rgba(255, 255, 255, .5) 60px),
        repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255, 255, 255, .5) 59px, rgba(255, 255, 255, .5) 60px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-breadcrumb {

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 28px;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, .5);
    transition: color .3s;
}

.hero-breadcrumb a:hover {
    color: var(--orange);
}

.hero-breadcrumb span {
    margin: 0 10px;
    color: var(--orange);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--orange);
}

.hero-eyebrow-text {

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
}

.hero h1 {

    font-size: clamp(48px, 6vw, 84px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 28px;
    max-width: 820px;
}

.hero h1 em {
    color: var(--orange-light);
    font-style: italic;
}

.hero-desc {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 44px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {

    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

/* Hero stats bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: flex;
}

.hstat {
    padding: 28px 36px;
    background: rgba(30, 15, 4, .75);
    backdrop-filter: blur(8px);
    border-top: 3px solid transparent;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.hstat:last-child {
    border-right: none;
}

.hstat:hover {
    border-top-color: var(--orange);
    background: rgba(30, 15, 4, .9);
}

.hstat-n {

    font-size: 38px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.hstat-l {

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-top: 6px;
}

/* ── INTRO ── */
.intro {
    padding: 120px 0;
    background: #fdf6ef;
}

.intro .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-visual {
    position: relative;
}

.iv-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    clip-path: polygon(0 0, 88% 0, 100% 5%, 100% 100%, 12% 100%, 0 95%);
    display: block;
}

.iv-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 6px solid var(--cream);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.iv-badge {
    position: absolute;
    top: 40px;
    left: -24px;
    background: var(--orange);
    color: #fff;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(232, 96, 26, .4);
}

.iv-badge-n {

    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.iv-badge-l {

    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .85;
    margin-top: 4px;
}

.intro-text {
    padding-left: 16px;
}

.intro-text .sh {
    margin-bottom: 24px;
}

.intro-text .sb {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 36px;
}

.intro-pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.ip-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border-left: 3px solid var(--orange);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    transition: box-shadow .3s, transform .3s;
}

.ip-item:hover {
    box-shadow: 0 8px 32px rgba(232, 96, 26, .12);
    transform: translateX(4px);
}

.ip-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--orange-pale);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ip-title {

    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.ip-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text);
}

/* ── SERVICES GRID ── */
.services-section {
    padding: 120px 0;
    background: #fff;
}

.services-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.sec-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.sec-header .left {
    max-width: 540px;
}

.sec-header .sh {
    margin-top: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #ece6df;
}

.svc-card {
    background: #fff;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: background .4s;
    cursor: default;
}

.svc-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.25, .46, .45, .94);
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-card:hover {
    background: #fff5ef
}

.svc-n {

    font-size: 64px;
    font-weight: 900;
    color: rgba(232, 96, 26, .08);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 24px;
    transition: color .4s;
}

.svc-card:hover .svc-n {
    color: rgba(232, 96, 26, .15);
}

.svc-ic {
    font-size: 36px;
    margin-bottom: 22px;
    display: inline-block;
    transition: transform .3s;
}

.svc-card:hover .svc-ic {
    transform: scale(1.15);
}

.svc-title {

    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

.svc-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text);
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s, transform .3s;
}

.svc-card:hover .svc-link {
    opacity: 1;
    transform: translateY(0);
}

/* ── PROCESS ── */
.process-section {
    padding: 120px 0;
    background: #1e0f04;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: 'PROCESS';
    position: absolute;
    top: 40px;
    right: -20px;

    font-size: 160px;
    font-weight: 900;
    color: rgba(255, 255, 255, .03);
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

.process-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.proc-header {
    text-align: center;
    margin-bottom: 80px;
}

.proc-header .sh {
    color: var(--white);
}

.proc-header .sh em {
    color: var(--orange-light);
}

.proc-header p {
    color: rgba(255, 255, 255, .5);
    margin-top: 16px;
    max-width: 500px;
    margin-inline: auto;
}

.proc-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    position: relative;
}

/* .proc-track::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(8.33% + 26px);
    right: calc(8.33% + 26px);
    height: 2px;
    background: linear-gradient(90deg, var(--orange) 0%, rgba(232, 96, 26, .2) 100%);
    z-index: 0;
} */

.proc-step {
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}

.proc-dot {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(232, 96, 26, .3);
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: border-color .3s, background .3s;
}

.proc-step:hover .proc-dot {
    border-color: var(--orange);
    background: rgba(232, 96, 26, .1);
}

.proc-dot-n {

    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
}

.proc-name {

    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.color_black {
    color: black;

}

.color_org {
    color: #e8601a !important;

}

.proc-desc {
    font-size: 12.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .45);
}

/* ── GALLERY ── */
.gallery-section {
    padding: 120px 0;
  
}

.gallery-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.gallery-head {
    margin-bottom: 56px;
}

.gallery-head .sh {
    margin-top: 12px;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 8px;
}

.gitem {
    overflow: hidden;
    position: relative;
}

.gitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.gitem:hover img {
    transform: scale(1.08);
}

.gitem-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 15, 4, .8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .4s;
}

.gitem:hover .gitem-overlay {
    opacity: 1;
}

.gitem-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
    opacity: 0;
    transform: translateY(12px);
    transition: all .4s;
}

.gitem:hover .gitem-info {
    opacity: 1;
    transform: translateY(0);
}

.gi-cat {

    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 5px;
}

.gi-title {

    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.ga {
    grid-column: 1 / 6;
    grid-row: 1 / 2;
}

.gb {
    grid-column: 6 / 9;
    grid-row: 1 / 2;
}

.gc {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
}

.gd {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
}

.ge {
    grid-column: 4 / 9;
    grid-row: 2 / 3;
}

/* ── WHY US ── */
.why-section {
    padding: 120px 0;
    background: #fff;
}

.why-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-visual {
    position: relative;
}

.why-img {
    width: 100%;
    aspect-ratio: 5/6;
    object-fit: cover;
    display: block;
}

.why-img-strip {
    position: absolute;
    top: 0;
    right: -12px;
    width: 6px;
    height: 100%;
    background: #e8601a;
}

.why-counter-grid {
    position: absolute;
    bottom: -24px;
    left: -24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(30, 15, 4, .1);
}

.wc-cell {
    background: #1e0f04;
    padding: 24px 28px;
    text-align: center;
}

.wc-n {
    font-size: 34px;
    font-weight: 900;
    color: var(--orange);
}

.wc-l {

    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px;
}

.why-content .sh {
    margin-bottom: 24px;
}

.why-content .sb {
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 44px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 44px;
}

.wp {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0ece8;
}

.wp:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wp-num {

    font-size: 28px;
    font-weight: 900;
    color: rgba(232, 96, 26, .2);
    line-height: 1;
    flex-shrink: 0;
    transition: color .3s;
}

.wp:hover .wp-num {
    color: var(--orange);
}

.wp-title {

    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.wp-desc {
    font-size: 14px;
    line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testi-section {
    padding: 120px 0;
    background: #1a0a14;
}

.testi-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.testi-head {
    text-align: center;
    margin-bottom: 72px;
}

.testi-head .sh {
    color: #fff;
}

.testi-head .sh em {
    color: var(--orange-light);
}

.tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(232, 96, 26, .1);
}

.tcard {
    background: #1e0f04;
    padding: 52px 44px;
    position: relative;
    transition: background .4s;
}

.tcard:hover {
    background: #3a1e0a;
}

.tcard::after {
    content: '\201C';
    font-size: 130px;
    font-weight: 900;
    color: rgba(232, 96, 26, .07);
    position: absolute;
    top: 8px;
    left: 28px;
    line-height: 1;
    pointer-events: none;
    font-family: serif;
}

.ttext {
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.tstar {
    color: var(--orange);
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.tauthor {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tavatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(232, 96, 26, .15);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
}

.tname {
    font-family: var(--ff-ui);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.trole {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    margin-top: 3px;
}

/* ── CTA SECTION ── */





/* ── BREADCRUMB STRIP ── */
.breadstrip {
    background: var(--dark);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.breadstrip .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.breadstrip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.breadstrip-crumb {

    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .45);
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadstrip-crumb a {
    color: rgba(255, 255, 255, .45);
    transition: color .3s;
}

.breadstrip-crumb a:hover {
    color: var(--orange);
}

.breadstrip-crumb .sep {
    color: var(--orange);
    font-size: 10px;
}

.breadstrip-crumb .current {
    color: var(--orange-light);
}

/* ── APPROACH STRIP ── */
.approach-strip {
    background: var(--orange);
    padding: 0;
    overflow: hidden;
}

.approach-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ap-item {
    padding: 40px 32px;
    border-right: 1px solid rgba(255, 255, 255, .15);
    text-align: center;
    transition: background .3s;
}

.ap-item:last-child {
    border-right: none;
}

.ap-item:hover {
    background: rgba(0, 0, 0, .1);
}

.ap-icon {
    font-size: 30px;
    margin-bottom: 12px;
}

.ap-label {
    font-family: var(--ff-ui);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp .7s ease forwards;
}

.delay-1 {
    animation-delay: .1s;
}

.delay-2 {
    animation-delay: .2s;
}

.delay-3 {
    animation-delay: .3s;
}

.delay-4 {
    animation-delay: .4s;
}

.delay-5 {
    animation-delay: .5s;
}





/* retail-interior-service-css-end */
/* 
retail-kiosk-service-css-start */


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26, 14, 6, .92) 0%, rgba(26, 14, 6, .65) 55%, rgba(232, 96, 26, .18) 100%);
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: .55;
    transform: scale(1.04);
    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

/* Decorative grid lines */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(232, 96, 26, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 96, 26, .06) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* Glowing orb */
.hero-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 96, 26, .22) 0%, transparent 70%);
    right: -100px;
    bottom: -150px;
    z-index: 1;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    padding-top: 76px;
    width: 100%;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp .6s .2s forwards;
}

.hero-breadcrumb a,
.hero-breadcrumb span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

.hero-breadcrumb a:hover {
    color: var(--orange);
}

.hero-breadcrumb .sep {
    color: var(--orange);
}

.stag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp .6s .3s forwards;
}

.stag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--orange);
}

.hero h1 {
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.0;
    margin-bottom: 24px;
    max-width: 780px;
    opacity: 0;
    animation: fadeUp .7s .4s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--orange);
}

.hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, .72);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp .7s .5s forwards;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .7s .6s forwards;
}

.btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 38px;
    transition: background .3s, transform .2s;
}

.btn-fill:hover {
    background: #c94f0e;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 38px;
    transition: border-color .3s, background .3s;
}

.btn-ghost:hover {
    border-color: var(--orange);
    background: rgba(232, 96, 26, .12);
    color: var(--white);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp .6s 1.1s forwards;
}

.hero-scroll-hint span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
}

.scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(232, 96, 26, .8), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .3;
        transform: scaleY(.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Hero stats strip */
.hero-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: flex;
    background: rgba(26, 14, 6, .88);
    backdrop-filter: blur(12px);
    border-top: 2px solid var(--orange);
    opacity: 0;
    animation: fadeIn .7s .9s forwards;
}

.hstat {
    padding: 22px 36px;
    border-left: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
}

.hstat-num {
    font-size: 30px;
    font-weight: 800;
    color: var(--orange);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.hstat-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-top: 5px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================
       INTRO / WHAT IS A KIOSK
    ============================ */
.intro {
    background: #fdf8f4;
    padding: 120px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-visual {
    position: relative;
}

.intro-img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
}

.intro-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--orange);
    color: var(--white);
    width: 132px;
    height: 132px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    box-shadow: 0 12px 40px rgba(232, 96, 26, .4);
}

.intro-badge-num {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.intro-badge-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: .88;
}

.intro-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--orange);
    opacity: .25;
    clip-path: polygon(0 0, 70% 0, 100% 30%, 100% 100%, 30% 100%, 0 70%);
}

.sh {
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.05;
    margin-bottom: 22px;
}

.sh em {
    font-style: italic;
    color: var(--orange);
}

.intro-text p {
    margin-bottom: 18px;
    color: var(--grey);
    font-size: 16px;
}

.intro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--white);
    border: 1.5px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--mid);
    transition: border-color .2s, background .2s;
}

.tag:hover {
    border-color: var(--orange);
    background: var(--pale);
    color: var(--orange);
}

.tag i {
    color: var(--orange);
    font-size: 13px;
}

/* ============================
       KIOSK TYPES
    ============================ */
.types {
    background: var(--white);
    padding: 120px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.section-head-right {
    max-width: 420px;
    text-align: right;
}

.section-head-right p {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.7;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: white;
}

.type-card {
    background: var(--white);
    padding: 48px 38px;
    position: relative;
    overflow: hidden;
    transition: background .3s;
    cursor: default;
}

.type-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: width .4s;
}

.type-card:hover {
    background: var(--pale);
}

.type-card:hover::before {
    width: 100%;
}

.type-icon {
    width: 62px;
    height: 62px;
    background: var(--pale);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: background .3s;
}

.type-card:hover .type-icon {
    background: var(--orange);
}

.type-num {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 64px;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(232, 96, 26, .06);
    line-height: 1;
    transition: color .3s;
}

.type-card:hover .type-num {
    color: rgba(232, 96, 26, .12);
}

.type-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.type-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--grey);
}

.type-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s, transform .3s;
}

.type-card:hover .type-link {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
       WHY CHOOSE — FEATURES
    ============================ */
.features {
    background: #1a0e06;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(232, 96, 26, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 96, 26, .04) 1px, transparent 1px);
    background-size: 64px 64px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-left .stag {
    color: var(--orange);
}

.features-left .sh {
    color: var(--white);
}

.features-left p {
    color: rgba(255, 255, 255, .6);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.75;
}

.feat-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    transition: background .3s, border-color .3s;
}

.feat-item:hover {
    background: rgba(232, 96, 26, .1);
    border-color: rgba(232, 96, 26, .3);
}

.feat-dot {
    width: 40px;
    height: 40px;
    background: rgba(232, 96, 26, .15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: background .3s;
}

.feat-item:hover .feat-dot {
    background: var(--orange);
}

.feat-item-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    font-family: 'Space Grotesk', sans-serif;
}

.feat-item-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}

/* Right side — stats mosaic */
.features-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, .06);
}

.stat-tile {
    background: rgba(26, 14, 6, .85);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 2px solid transparent;
    transition: border-color .3s, background .3s;
}

.stat-tile:hover {
    border-color: var(--orange);
    background: rgba(232, 96, 26, .08);
}

.stat-tile-num {
    font-size: 52px;
    font-weight: 800;
    color: var(--orange);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.stat-tile-label {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.4;
}

.stat-tile.highlight {
    background: var(--orange);
}

.stat-tile.highlight .stat-tile-num {
    color: var(--white);
}

.stat-tile.highlight .stat-tile-label {
    color: rgba(255, 255, 255, .8);
}

/* ============================
       PROCESS
    ============================ */
.process {
    background: #fdf8f4;
    padding: 120px 0;
}

.process-head {
    text-align: center;
    margin-bottom: 72px;
}

.process-head .stag {
    justify-content: center;
}

.process-head p {
    max-width: 520px;
    margin: 0 auto;
    margin-top: 12px;
    font-size: 16px;
    color: var(--grey);
}

.proc-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
}

/* connecting line */
.proc-row::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e8601a;
    opacity: .2;
}

.proc-step {
    text-align: center;
    padding: 0 16px;
}

.proc-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(232, 96, 26, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
    transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
}

.proc-step:hover .proc-circle {
    border-color: var(--orange);
    background: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(232, 96, 26, .3);
}

.proc-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--orange);
    font-family: 'Space Grotesk', sans-serif;
    transition: color .3s;
}

.proc-step:hover .proc-num {
    color: var(--white);
}

.proc-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.proc-desc {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.6;
}

/* ============================
       GALLERY
    ============================ */
.gallery {
    background: var(--white);
    padding: 120px 0;
}

.gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 12px;
}

.g-item {
    position: relative;
    overflow: hidden;
    background: var(--pale);
}

.g-item:nth-child(1) {
    grid-column: 1/6;
    grid-row: 1;
}

.g-item:nth-child(2) {
    grid-column: 6/9;
    grid-row: 1;
}

.g-item:nth-child(3) {
    grid-column: 9/13;
    grid-row: 1;
}

.g-item:nth-child(4) {
    grid-column: 1/5;
    grid-row: 2;
}

.g-item:nth-child(5) {
    grid-column: 5/9;
    grid-row: 2;
}

.g-item:nth-child(6) {
    grid-column: 9/13;
    grid-row: 2;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.g-item:hover img {
    transform: scale(1.08);
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 14, 6, .75) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .35s;
}

.g-item:hover .g-overlay {
    opacity: 1;
}

.g-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .35s, transform .35s;
}

.g-item:hover .g-label {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
       USE CASES
    ============================ */
.usecases {
    background: #fdf8f4;
    padding: 120px 0;
}

.usecases-head {
    text-align: center;
    margin-bottom: 64px;
}

.usecases-head .stag {
    justify-content: center;
}

.uc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.uc-card {
    background: #ffffff;
    padding: 40px 28px;
    border-bottom: 3px solid transparent;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    text-align: center;
}

.uc-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(232, 96, 26, .1);
}

.uc-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.uc-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.uc-desc {
    font-size: 13.5px;
    color: var(--grey);
    line-height: 1.65;
}

/* ============================
       TESTIMONIALS
    ============================ */
.testimonials {
    background: #1a0e06;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testi-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 280px;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255, 255, 255, .015);
    white-space: nowrap;
    user-select: none;
}

.testimonials .stag {
    color: var(--orange);
    justify-content: center;
}

.testimonials .sh {
    color: var(--white);
    text-align: center;
    margin-bottom: 16px;
}

.testi-sub {
    text-align: center;
    color: rgba(255, 255, 255, .5);
    font-size: 15px;
    margin-bottom: 64px;
}

.tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tcard {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 40px 32px;
    position: relative;
    transition: background .3s, border-color .3s, transform .3s;
}

.tcard:hover {
    background: rgba(232, 96, 26, .08);
    border-color: rgba(232, 96, 26, .25);
    transform: translateY(-4px);
}

.tcard::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 88px;
    font-family: Georgia, serif;
    color: rgba(232, 96, 26, .15);
    line-height: 1;
}

.ttext {
    font-size: 15px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
    margin-bottom: 28px;
    font-style: italic;
}

.tauthor {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tavatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    flex-shrink: 0;
}

.tname {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.trole {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    margin-top: 2px;
}

/* Stars */
.tstars {
    color: var(--orange);
    font-size: 13px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

/* ============================
       FAQ — SEO Rich Content
    ============================ */
.faq {
    background: var(--white);
    padding: 120px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.faq-left .stag {
    display: inline-flex;
}

.faq-left p {
    color: var(--grey);
    font-size: 15px;
    margin-top: 20px;
    line-height: 1.75;
}

.faq-left .btn-fill {
    margin-top: 36px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(232, 96, 26, .12);
    overflow: hidden;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    gap: 20px;
}

.faq-q-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.3;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: var(--orange);
    transition: background .25s, transform .3s;
}

.faq-item.open .faq-icon {
    background: var(--orange);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 0 22px;
    font-size: 14.5px;
    color: var(--grey);
    line-height: 1.75;
}

.faq-item.open .faq-a {
    display: block;
}

/* ============================
       CTA / CONTACT
    ============================ */

/* retail-kiosk-service-css-end */


/* about-us-css-start */

.about_us-sh {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 20px;
    color: white;
}

.about_us-sh em {
    font-style: italic;
    color: var(--orange);
}

.about_us-sh-light {
    color: white;
}

.about_us-sh-light em {
    color: var(--cream);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    text-underline-offset: 5px;
}

.about_us-sb {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text);
}

.about_us-stag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}

.about_us-stag::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--orange);
}

/* ═══ BUTTONS ═══ */
.btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 16px 32px;
    border-radius: 4px;
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
    border: none;
}

.btn-fill:hover {
    background: #ff8040;
    transform: translateY(-3px);
    color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e8601a;
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 15px 30px;
    border-radius: 4px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ═══════════════════════════════════════
       BREADCRUMB NAV
    ═══════════════════════════════════════ */
.breadcrumb-bar {
    background: var(--dark);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.breadcrumb-inner a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.breadcrumb-inner a:hover {
    color: var(--primary);
}

.breadcrumb-inner .sep {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-inner .current {
    color: var(--primary);
    font-weight: 500;
}

/* ═══════════════════════════════════════
       HERO SECTION
    ═══════════════════════════════════════ */
.about-hero {
    background: #1e0f04;
    padding: 110px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232, 96, 26, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255, 123, 23, 0.07) 0%, transparent 60%);
}

.about-hero::after {
    content: 'ABOUT';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(120px, 15vw, 220px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.025);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -5px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
}

.hero-left .stag {
    color: rgba(255, 180, 80, 0.9);
}

.hero-left .stag::before {
    background: rgba(255, 180, 80, 0.9);
}

.hero-h1 {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    color: white;
    line-height: 1.04;
    margin-bottom: 24px;
}

.hero-h1 em {
    font-style: italic;
    color: rgb(255, 123, 23)
}

.hero-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-width: 580px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-bottom: 8px;
}

.hs-item {
    text-align: right;
}

.hs-num {
    font-size: 46px;
    font-weight: 700;
    color: rgb(255, 123, 23);
    line-height: 1;

}

.hs-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

/* ═══════════════════════════════════════
       STATS STRIP
    ═══════════════════════════════════════ */
.stats-strip {
    background:#2d1005;
    border-top: 1px solid rgba(232, 96, 26, 0.15);
    border-bottom: 1px solid rgba(232, 96, 26, 0.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ss-item {
    padding: 48px 32px;
    border-right: 1px solid rgba(232, 96, 26, 0.15);
    text-align: center;
}

.ss-item:last-child {
    border-right: none;
}

.ss-num {
    font-size: 48px;
    font-weight: 700;
    color:rgb(255, 123, 23);
    
    line-height: 1;
}

.ss-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

/* ═══════════════════════════════════════
       COMPANY OVERVIEW
    ═══════════════════════════════════════ */
.overview {
    padding: 120px 0;
    background: #fff8f0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ov-visual {
    position: relative;
}

.ov-img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
}

.ov-card {
    position: absolute;
    bottom: -28px;
    left: -28px;
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 28px 32px;
    border-radius: 4px;
    min-width: 220px;
}

.ov-card-num {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.ov-card-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 500;
}

.ov-badge {
    position: absolute;
    top: 24px;
    right: -16px;
    background: var(--orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 2px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.ov-content .sb {
    margin-bottom: 20px;
}

.ov-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ov-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14.5px;
    color: var(--text);
    font-weight: 400;
    line-height: 1.6;
}

.ov-dot {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: rgba(232, 96, 26, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
}

/* ═══════════════════════════════════════
       WHO WE ARE
    ═══════════════════════════════════════ */
.who-we-are {
    padding: 120px 0;
    background: var(--white);
}

.wwa-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 80px;
    align-items: start;
}

.wwa-sticky {
    position: sticky;
    top: 100px;
}

.wwa-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 4px;
    margin-top: 32px;
}

.wwa-content p {
    margin-bottom: 18px;
}

.founding-block {
    background: #fff8f0;
    border-left: 3px solid var(--orange);
    padding: 28px 32px;
    border-radius: 0 4px 4px 0;
    margin: 32px 0;
}

.founding-block p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--dark);
    font-style: italic;
    margin: 0;
}

/* ═══════════════════════════════════════
       SERVICES SECTION
    ═══════════════════════════════════════ */
.about_us-services-section {
    padding: 120px 0;
    background: #1e0f04;
}

.about_us-sec-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.about_us-sec-header .sb {
    color: rgba(255, 255, 255, 0.55);
}

.about_us-serv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    
}

.about_us-serv-card {
    background: var(--dark);
    padding: 44px 36px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.about_us-serv-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.about_us-serv-card:hover {
    background: rgba(232, 96, 26, 0.07);
}

.about_us-serv-card:hover::before {
    transform: scaleX(1);
}

.about_us-serv-icon {
    font-size: 32px;
    margin-bottom: 22px;
}

.about_us-serv-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 52px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.about_us-serv-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.3;
}

.about_us-serv-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    font-weight: 300;
}

.about_us-serv-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: gap 0.2s;
}

.about_us-serv-card:hover .serv-link {
    gap: 12px;
}

/* ═══════════════════════════════════════
       WHY CHOOSE US
    ═══════════════════════════════════════ */
.why-section {
    padding: 120px 0;
    background: #faf5f0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-img-wrap {
    position: relative;
}

.why-img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
}

.why-counter-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 20px;
}

.wc-item {
    padding: 24px 28px;
    background:#1e0f04;
    border: 1px solid rgba(232, 96, 26, 0.15);
}

.wc-num {
    font-size: 36px;
    font-weight: 700;
    color: rgb(255, 123, 23);
   
    line-height: 1;
}

.wc-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 500;
}

.why-points {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wp-item {
    display: flex;
    gap: 18px;
}

.wp-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: rgba(232, 96, 26, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 18px;
    margin-top: 2px;
}

.wp-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
}

.wp-desc {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
       MISSION & VISION
    ═══════════════════════════════════════ */
.about_us-mission-section {
    padding: 120px 0;
    background: #1e0f04;
}

.about_us-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 64px;
}

.about_us-mv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 96, 26, 0.15);
    padding: 52px 44px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.about_us-mv-card:hover {
    background: rgba(232, 96, 26, 0.06);
}

.about_us-mv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
}

.about_us-mv-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgb(255, 123, 23);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about_us-mv-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(232, 96, 26, 0.15);
}

.about_us-mv-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about_us-mv-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
}

.about_us-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.about_us-val-item {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid rgba(232, 96, 26, 0.15);
    border-radius: 4px;
    transition: border-color 0.3s, background 0.3s;
}

.about_us-val-item:hover {
    border-color: var(--orange);
    background: rgba(232, 96, 26, 0.05);
}

.about_us-val-icon {
    font-size: 30px;
    margin-bottom: 14px;
}

.about_us-val-title {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.about_us-val-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
       TEAM & EXPERTISE
    ═══════════════════════════════════════ */
.team-section {
    padding: 120px 0;
    background: #ffffff;
}

.team-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.exp-card {
    background: #fff8f0;
    padding: 28px;
    border-radius: 4px;
    border-left: 3px solid transparent;
    transition: border-color 0.3s;
}

.exp-card:hover {
    border-left-color: var(--orange);
}

.exp-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.exp-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    margin-top: 4px;
}

.exp-sub {
    font-size: 12px;
    color: var(--text);
    margin-top: 4px;
}

/* Leadership */
.leadership-wrap {
    margin-top: 24px;
}

.leadership-card {
    background: #fff8f0;
    border: 1px solid rgba(232, 96, 26, 0.12);
    border-radius: 4px;
    padding: 44px;
    display: flex;
    gap: 44px;
    align-items: center;
}

.leader-avatar {
    width: 120px;
    height: 120px;
    min-width: 120px;
    border-radius: 50%;
    background: #1e0f04;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color:rgb(232, 96, 26);
    font-weight: 700;
    
    border: 3px solid #e8601a;
}

.leader-name {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 4px;
}

.leader-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.leader-bio {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
}

/* ═══════════════════════════════════════
       PROCESS
    ═══════════════════════════════════════ */
.about_us-process-section {
    padding: 120px 0;
    background:#fdf6ef;
}

.about_us-proc-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    margin-top: 64px;
}

.about_us-proc-track::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(232, 96, 26, 0.2));
}

.about_us-proc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.about_us-proc-dot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #1e0f04;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: rgb(255, 123, 23);
   
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: background 0.3s, border-color 0.3s;
}

.about_us-proc-step:hover .about_us-proc-dot {
    background: rgb(255, 123, 23);
    border-color: rgb(255, 123, 23);
    color: white;
}

.about_us-proc-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.about_us-proc-desc {
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.75;
}
.process_h2_color{
    color: #0a0a0a;
}

/* ═══════════════════════════════════════
       INDUSTRIES
    ═══════════════════════════════════════ */
.about_us-industries-section {
    padding: 120px 0;
    background: var(--white);
}

.about_us-ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.about_us-ind-card {
    background: #fff8f0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
}

.about_us-ind-card:hover {
    background: #1e0f04;
    border-color: #e8601a;
    transform: translateY(-6px);
}

.about_us-ind-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.about_us-ind-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    transition: color 0.3s;
}

.about_us-ind-card:hover .ind-name {
    color: var(--white);
}

/* ═══════════════════════════════════════
       TESTIMONIAL / SATISFACTION
    ═══════════════════════════════════════ */
.about_us-satisfaction-section {
    padding: 120px 0;
    background:#1e0f04;
}

.about_us-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 64px;
}

.about_us-testi-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 40px 36px;
    border-radius: 4px;
    transition: background 0.3s;
}

.about_us-testi-card:hover {
    background: rgba(232, 96, 26, 0.06);
}

.about_us-testi-stars {
    display: flex;
    gap: 4px;
    color: rgb(255, 123, 23);
    font-size: 14px;
    margin-bottom: 20px;
}

.about_us-testi-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 28px;
    font-style: italic;
}

.about_us-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about_us-testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.about_us-testi-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.about_us-testi-company {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

/* ═══════════════════════════════════════
       COMMITMENT TO QUALITY
    ═══════════════════════════════════════ */
.quality-section {
    padding: 120px 0;
    background: #fff8f0;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.quality-points {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.qp-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.qp-step {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    min-width: 36px;
}

.qp-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
}

.qp-desc {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

.quality-visual {
    position: relative;
}

.qv-img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 4px;
}

.qv-cert {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 20px 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.qv-cert-icon {
    font-size: 28px;
}

.qv-cert-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.qv-cert-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

/* ═══════════════════════════════════════
       FAQ SECTION
    ═══════════════════════════════════════ */
.faq-section {
    padding: 120px 0;
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
}

.faq-left {
    position: sticky;
    top: 100px;
    align-self: start;
}

.faq-intro {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-top: 16px;
}

.faq-cta {
    margin-top: 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.about_us-faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    transition: color 0.2s;
}

.about_us-faq-q:hover {
    color: var(--orange);
}

.about_us-faq-q.open {
    color: var(--orange);
}

.faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text);
    transition: all 0.3s;
}

.about_us-faq-q.open .faq-icon {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-a.open {
    max-height: 400px;
}

.faq-a-inner {
    padding: 0 0 24px;
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.8;
}

/* ═══════════════════════════════════════
       CTA SECTION
    ═══════════════════════════════════════ */
.about_us-cta-section {
    padding: 120px 0;
    background: #fff8f0;
    position: relative;
    overflow: hidden;
}

.about_us-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 90% at 60% 50%, rgba(232, 96, 26, 0.12) 0%, transparent 65%);
}

.about_us-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.about_us-cta-inner .sh-light {
    margin-bottom: 20px;
}

.about_us-cta-inner p {
    font-size: 17px;
    color: rgb(102, 102, 102);
    line-height: 1.8;
    margin-bottom: 44px;
}

.about_us-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* about-us-css-end */