* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* TOP BAR */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #fff;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0b1c3d;
}

.contact span {
    margin-left: 20px;
    font-size: 16px;
}

@media only screen and (max-width: 600px) {
    .contact span {
        margin-left: 107px;
        font-size: 15px;
    }
}



.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}



@media only screen and (max-width: 600px) {
    .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 40px 18px;
        gap: 40px;
    }
}

/* LEFT */
.hero-left {
    max-width: 600px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 40px;
}

.stats {
    display: flex;
    gap: 50px;
}

.stat h2 {
    font-size: 42px;
}

.stat span {
    font-size: 14px;
    opacity: 0.9;
}

/* FORM */


@media only screen and (max-width: 600px) {
    .hero-form {
        background: rgba(255, 255, 255, 0.95);
        padding: 30px;
        width: 100%;
        border-radius: 6px;
        color: #333;
        margin-top: -14%;

    }

}

.hero-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.hero-form input,
.hero-form textarea,
.hero-form select{
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.hero-form textarea {
    resize: none;
    height: 90px;
}

.hero-form button {
    width: 100%;
    padding: 12px;
    background: #f15a29;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.hero-form button:hover {
    background: #d94d20;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-left h1 {
        font-size: 36px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #0f1b2d;
}

.capabilities {
    padding: 48px 24px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.title {
    text-align: center;
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.slider-wrap {
    position: relative;
    padding: 10px 45px;
    /* space for arrows */
}

/* SLIDER */
.slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    /* allow swipe */
    scroll-snap-type: x mandatory;
    padding: 0 16px;
    /* prevents edge cut */
}

@media only screen and (max-width: 600px) {
    .slider {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 16px;
        margin-left: -10%;
    }
}

.slider::-webkit-scrollbar {
    display: none;
}

/* CARD */
.card {
    scroll-snap-align: center;
    flex: 0 0 360px;
    /* card width */
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;

    background-image: var(--bg);
    background-size: cover;
    background-position: center;

    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.card-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(242, 102, 54, 0.55); */
    /* orange tint like screenshot */
    color: white;
}

.card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: left;
}


.card-content.center {
    text-align: center;
}

.card-content h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 320px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.card-content.center p {
    margin: 0 auto;
}

/* NAV BUTTONS */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #fff;
    color: #111;
    font-size: 26px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    display: grid;
    place-items: center;
    z-index: 10;
}

.nav:hover {
    transform: translateY(-50%) scale(1.03);
}

.nav-left {
    left: 0;
}

.nav-right {
    right: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .slider-wrap {
        padding: 10px 40px;
    }

    .card {
        flex-basis: 320px;
        height: 320px;
    }

    .card-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 520px) {
    .slider-wrap {
        padding: 10px 36px;
    }

    .card {
        flex-basis: 86vw;
        height: 300px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #0f1b2d;
}

.industries {
    padding: 0px 18px 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.industries-title {
    text-align: center;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
    color: #0f1b2d;
}

.industries-subtitle {
    max-width: 920px;
    margin: 0 auto 46px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #1a2a45;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 6px;
    padding: 42px 22px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
}

.icon {
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
    color: #111;
    opacity: 0.9;
}

.icon svg {
    width: 100%;
    height: 100%;
}



/* RESPONSIVE */
@media (max-width: 980px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .card h3 {
        font-size: 26px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
    background: #fff;
    color: #0f1b2d;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

/* OUR CLIENTS SECTION */
.clients {
    padding: 50px 0 30px;
    background: #fff;
}

.clients-title {
    text-align: center;
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 900;
    margin-bottom: 28px;
    color: #0f1b2d;
}

/* slider */
.clients-slider {
    overflow: hidden;
    width: 100%;
}

.track {
    display: flex;
    width: 200%;
    transition: transform .5s ease;
}

.slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 10px 30px 18px;
}

.slide img {
    height: 40px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.95;
}

/* indicators like small black/gray lines */
.indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.dot {
    width: 54px;
    height: 4px;
    border: none;
    border-radius: 999px;
    background: #bcbcbc;
    cursor: pointer;
}

.dot.active {
    background: #111;
}

/* CTA SECTION */
.cta {
    background-image: url("{{asset('website/assets/xsoln background2 (1) 1.png')}}");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
    padding: 70px 0;
    margin-top: 30px;
}

.cta-inner {
    text-align: left;
    color: #fff;
}

.cta-inner h3 {
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 900;
    margin-bottom: 14px;
}

.cta-inner p {
    font-size: 18px;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .slide {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 18px;
    }

    .slide img {
        height: 34px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
    background: #fff;
    color: #0f1b2d;
}

.faq {
    padding: 70px 16px 80px;
}

.faq-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 900;
    margin-bottom: 55px;
    color: #0f1b2d;
}

.faq-wrap {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.faq-item {
    background: #efefef;
    border-radius: 2px;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    border: none;
    background: transparent;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    cursor: pointer;
    color: #111;
}

.faq-btn span:first-child {
    text-align: left;
}

.arrow {
    font-size: 26px;
    transition: transform 0.25s ease;
}

/* accordion content */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #efefef;
}

.faq-content p {
    padding: 0 24px 18px;
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

/* active state */
.faq-item.active .faq-content {
    max-height: 180px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* responsive */
@media (max-width: 600px) {
    .faq-btn {
        font-size: 18px;
        padding: 18px 16px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.contact-section {
    background: #0b1433;
    color: #fff;
}

/* SECTION */
.contact-section {
    padding: 70px 0;
    min-height: 100vh;
}



/* LEFT BOX */
.quote-box {
    border: 1px solid rgba(255, 255, 255, 0.75);
    padding: 70px 55px;
    background: transparent;
}

.quote-box h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 34px;
}

/* FORM */
.quote-form input,
.quote-form textarea
{
    width: 100%;
    border: none;
    outline: none;
    background: #fff;
    color: #111;
    padding: 18px 18px;
    font-size: 20px;
}

/* add the thick separators like screenshot */
.quote-form input {
    border-bottom: 6px solid #0b1433;
}

.quote-form textarea {
    height: 190px;
    resize: none;
    border-top: 6px solid #0b1433;
}

/* BUTTON */
.quote-form button {
    width: 100%;
    margin-top: 14px;
    padding: 22px 16px;
    background: #e85a22;
    border: none;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, opacity .15s ease;
}

.quote-form button:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

/* RIGHT CONTENT */
.touch h2 {
    font-size: 52px;
    font-weight: 900;
    margin-top: 110px;
    /* aligns like screenshot */
    margin-bottom: 26px;
}

.touch p {
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 26px;
    max-width: 760px;
}

.touch strong {
    font-weight: 900;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .container {
        grid-template-columns: 520px 1fr;
        gap: 50px;
    }

    .touch h2 {
        margin-top: 60px;
    }
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .touch h2 {
        margin-top: 0;
    }

    .quote-box {
        padding: 50px 24px;
    }

    .quote-box h2 {
        font-size: 34px;
    }
}

.contact-section {
    background: #0b1433;
}

.quote-box {
    border: 1px solid #fff;
    padding: 25px;
    color: #fff;
}

.quote-form .form-control {
    padding: 14px;
    border-radius: 0;
}

.btn-warning {
    background: #e85a22;
    border: none;
}

.btn-warning:hover {
    background: #d64f1d;
}

.touch {
    padding-top: 60px;
}

.logo img {
    height: 100px;
    /* adjust size */
    width: auto;
}

@media only screen and (max-width: 600px) {
    .logo img {
        height: 50px;
        /* adjust size */
        width: auto;
    }
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
}

.desktop-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.desktop-menu ul li a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
}

.desktop-menu ul li a:hover {
    color: #007bff;
}


@media (max-width: 991px) {
    .desktop-menu {
        display: none;
    }
}

.desktop-menu ul li a {
    text-transform: uppercase;
    /* font-weight: 600; */
}

.hero-form {
    animation: tiltShake 4s ease-in-out infinite;
}

@keyframes tiltShake {

    0%,
    94%,
    100% {
        transform: rotate(0deg);
    }

    95% {
        transform: rotate(-1deg);
    }

    96% {
        transform: rotate(1deg);
    }

    97% {
        transform: rotate(-0.5deg);
    }

    98% {
        transform: rotate(0.5deg);
    }
}



.cta-inner h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta-inner p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #f15a29;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.cta-btn:hover {
    background: #f15a29;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

.slider-wrap {
    width: 100%;
    padding: 20px 0;
}

.slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 cards in one row */
    gap: 25px;
}

.card {
    position: relative;
    height: 320px;
    border-radius: 16px;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Overlay */
.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Card content */
.card-contents {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 2;
}

.card-contents h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: white;
}



/* Responsive */
@media (max-width: 992px) {
    .slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .slider {
        grid-template-columns: 1fr;
    }
}

.clients-slider {
    overflow: hidden;
    width: 100%;
}

.track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.slide {
    display: flex;
    gap: 60px;
    padding-right: 60px;
}



@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


