* {
    padding: 0px;
    margin: 0px;
}

:root {
    --primary: #3b5bdb; /* Main brand color (Indigo) */
    --p-light: #748ffc; /* Accent / hover / highlights */
    --t-dark: #111827; /* Strong text / headings */
    --natural-w: #e7f2f8; /* Background / card soft tone */
    --swh-white: #ffffff;
    --swh-card-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

body {
    overflow-x: hidden;
}

.HomeBanner {
    background-image: url(../images/slider1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

    .HomeBanner::after {
        content: '';
        width: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: -1;
    }

.hb-center-text {
    position: relative;
    z-index: 2;
}

.hb-title {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 90px;
    text-align: center;
    color: #fff;
}


.hb-searchbar {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .hb-searchbar input {
        flex: 1;
        padding: 14px 20px;
        border: none;
        outline: none;
        font-size: 16px;
        color: #333;
    }

    .hb-searchbar button {
        background-color: var(--p-light);
        border: none;
        padding: 0 20px;
        color: #fff;
        cursor: pointer;
        transition: 0.3s;
    }

        .hb-searchbar button:hover {
            background-color: var(--primary);
        }

.hb-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

    .hb-tags span {
        background: rgba(255, 255, 255, 0.1);
        padding: 8px 18px;
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        cursor: pointer;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s;
    }

        .hb-tags span:hover {
            background: rgba(255, 255, 255, 0.25);
        }

.design-section {
    padding: 60px 0;
}

.design-heading {
    font-size: 26px;
    font-weight: 500;
    color: #222;
}

.btn-more {
    border: 1px solid #000;
    border-radius: 6px;
    padding: 8px 18px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: all 0.3s;
}

    .btn-more:hover {
        background: #000;
        color: #fff;
    }

.design-card {
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

    .design-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .design-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .design-card p {
        margin: 15px 0;
        font-weight: 500;
    }

.owl-nav button {
    position: static;
    bottom: -60px;
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
}



.owl-nav span {
    font-size: 28px;
    color: var(--primary) !important;
    line-height: 25px;
}

.uwj-section {
    background-color: var(--p-light);
    border-radius: 25px;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.uwj-card {
    color: #fff;
}

.uwj-left {
    border-right: 1px solid #f9f9f9;
    padding: 0px 40px;
}


.uwj-heading {
    font-weight: 600;
    color: #fff;
}

.uwj-highlight {
    color: #fff;
    font-size: 40px;
}

.uwj-desc {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.uwj-input-wrapper {
    max-width: 300px;
    border-radius: 6px;
    overflow: hidden;
}

.uwj-input {
    border: none;
    box-shadow: none;
    background-color: transparent;
    border-bottom: 1px solid #f9f9f9;
    border-bottom-right-radius: 0px;
}

    .uwj-input::placeholder {
        color: #b1b1b1;
    }

    .uwj-input:focus {
        border: none;
        box-shadow: none;
        background-color: transparent;
        border-bottom: 1px solid #f9f9f9;
        border-bottom-right-radius: 0px;
    }

.uwj-btn {
    background-color: #fff;
    color: var(--primary);
    border-radius: 0;
}

.uwj-logo {
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.uwj-links {
    font-size: 14px;
    color: #fff;
}

.uwj-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.uwj-dash {
    margin: 0 10px;
    color: #fff;
}

.swh-section {
    position: relative;
}

.uspRight {
    position: absolute;
    right: 0px;
    top: 56%;
    transform: translateY(-50%);
}

/* Heading */
.swh-heading {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
    margin-left: 40px;
}

/* Phone image */
.swh-phone {
    max-width: 620px;
    float: left;
    position: relative;
    bottom: -5px;
}

.uspLeft {
    background: linear-gradient(135deg, var(--primary), var(--p-light));
    color: var(--swh-white);
    width: 85%;
    border-radius: 30px;
    position: relative;
    left: 0px;
    padding: 50px 0px;
    overflow: hidden;
    height: 700px;
}
/* Cards */
.swh-card {
    background: var(--swh-white);
    color: var(--t-dark);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--swh-card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .swh-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

/* Card titles and text */
.swh-card-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 30px;
}

.swh-card-text {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Button */
.swh-btn {
    background: var(--primary);
    color: var(--swh-white);
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

    .swh-btn:hover {
        background: var(--p-light);
        color: #fff;
    }

.centrHeading {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 50px;
}

.rew-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--swh-card-shadow);
    border: 1px solid var(--rew-neutral-light);
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
}

.rew-category {
    color: var(--rew-primary);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rew-quote {
    font-size: 15px;
    line-height: 1.5;
    color: var(--rew-text-dark);
    margin: 0;
}

.rew-stars {
    color: #ffb100; /* star color */
    font-size: 18px;
}

.rew-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rew-info p {
    margin: 2px 0;
    font-size: 14px;
}

.rew-name {
    font-weight: 600;
}

.rew-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.rewSection {
    background-color: var(--natural-w);
    padding-bottom: 30px;
}


.mosw-container {
    width: 95%;
    max-width: 1300px;
    margin: auto;
    padding: 30px 0;
}

.mosw-title {
    font-size: 28px;
    margin-bottom: 22px;
    font-weight: 600;
}

.mosw-masonry {
    column-count: 4; /* number of columns on large screens */
    column-gap: 15px;
}

.mosw-item {
    width: 100%;
    margin-bottom: 15px;
    break-inside: avoid; /* prevent image from being cut */
    border-radius: 10px;
    display: block;
    transition: transform .3s ease;
}

    .mosw-item:hover {
        transform: scale(1.05);
    }


@media (max-width: 1200px) {
    .mosw-masonry {
        column-count: 3;
    }
}

@media (max-width: 1024px) {
    .swh-card-title {
        font-size: 20px;
    }

    .swh-card {
        padding: 15px;
    }

    .swh-card-text {
        margin-bottom: 0px;
    }

    .uwj-highlight, .uwj-logo {
        font-size: 25px;
    }

    .uwj-heading {
        font-size: 18px;
    }

    .hb-title {
        font-size: 50px;
        line-height: 55px;
    }

    .HomeBanner {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .uspLeft {
        width: 100%;
    }

    .swh-phone {
        display: none;
    }

    .uspRight {
        top: 62%;
        width: 100%;
    }

    .swh-heading {
        text-align: center;
        margin: 0px;
    }
}

@media (max-width: 768px) {
    .hb-title {
        font-size: 32px;
    }

    .mosw-masonry {
        column-count: 2;
    }

    .owl-nav button {
        display: none;
    }

    .hb-searchbar input {
        font-size: 14px;
    }

    .swh-heading {
        font-size: 36px;
    }

    .uspLeft {
        height: 470px;
    }

    .swh-phone {
        max-width: 400px;
    }
}

@media (max-width: 700px) {
    .hb-title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .design-section {
        padding: 30px 0;
    }

        .design-section div {
            text-align: center;
            justify-content: center;
        }

        .design-section .btn-more {
            text-align: center;
            display: block;
            margin: auto;
        }

    .design-card {
        border: 1px solid #ddd;
        width: 95%;
        margin: auto;
    }

    .swh-heading {
        font-size: 22px;
    }

    .uspLeft {
        padding-top: 20px;
        height: 700px;
    }

    .uspRight {
        top: 53%;
        width: 100%;
    }

    .design-heading {
        font-size: 22px;
    }

    .marginTpDesk {
        margin-top: 20px;
    }

    .centrHeading {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .uwj-logo {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .mosw-masonry {
        column-count: 1;
    }
}
