:root {
    --background-color: #01070c;
    --text-color: #ffffff;
    --gradient-text: linear-gradient(
        90deg,
        rgba(82, 173, 255, 0.91) 0.75%,
        rgba(93, 116, 183, 0.91) 20.34%,
        rgba(150, 105, 173, 0.91) 29.19%,
        rgba(190, 93, 164, 0.91) 40.54%,
        rgba(238, 64, 115, 0.91) 55.31%,
        rgba(241, 75, 78, 0.91) 83.17%,
        rgba(244, 85, 42, 0.91) 92.79%
    );
    --color-lavender: #8574ff;
    --color-orchid: #e299fb;
    --color-coral: #ff577a;
    --card-bg: rgba(217, 217, 217, 0.02);
    --card-border-radius: 16px;
}

* {
    box-sizing: border-box;
    font-family: "Bai Jamjuree", sans-serif;
}
li {
    list-style-type: none;
}

body {
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: "Bai Jamjuree", sans-serif;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.basic-gradient {
    background: linear-gradient(180deg, #e5e5e5 7.17%, #8c8c8c 71.41%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-title {
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    letter-spacing: 6px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.custom-btn {
    border-radius: 25px;
    padding: 8px 20px;
    background-color: var(--background-color);
    color: var(--text-color); /* Text color */
    font-weight: 500;
    border: 2px solid transparent; /* Needed for gradient border */
    background-clip: padding-box, border-box;
    background-origin: border-box;
    background-image: linear-gradient(
            var(--background-color),
            var(--background-color)
        ),
        /* Inner background (white) */
            linear-gradient(
                110.19deg,
                var(--color-lavender) -33.66%,
                var(--color-orchid) 23.59%,
                var(--color-coral) 98.71%
            ); /* Border gradient */
    transition: color 0.3s ease, background 0.3s ease; /* Smooth transition */
}

.custom-btn:hover {
    background-image: linear-gradient(var(--text-color), var(--text-color)),
        /* Slight gray on hover */
            linear-gradient(
                110.19deg,
                var(--color-lavender) -33.66%,
                var(--color-orchid) 23.59%,
                var(--color-coral) 98.71%
            );
    color: #000;
}

/************************************************* custom css ************************************************/

/* CSS for section section:header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 10px 0;
}

.fixed-header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(9px);
    box-shadow: 0px 4px 20.7px 0px rgba(255, 255, 255, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 80px;
}

.logo {
    font-size: 32px;
    font-weight: 400;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-size: 20px;
}

.login-btns {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* .btn-primary {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--text-color);
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary:hover {
    background-color: var(--text-color);
    color: var(--background-color);
} */

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle {
    background: transparent;
    border: none;
}

@media (max-width: 768px) {
    .main-nav,
    .login-btns {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-nav-toggle .bi {
        font-size: 35px;
        color: white;
    }
}

/* CSS for section section:hero */
#hero {
    padding-top: 80px;
    padding-bottom: 60px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: blur(9px); */
}

.lamp-light {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.lamp-light img {
    width: 550px;
    margin-top: -25px;
    height: auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 9.6px;
    margin-bottom: 0px;
}

.hero-subtitle {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 6.12px;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    background: linear-gradient(180deg, #e5e5e5 7.17%, #8c8c8c 71.41%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-subtitle .bold-text {
    font-weight: 700;
}

.search-section {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

.search-bar {
    display: flex;
    align-items: center;
    padding: 5px 5px;
    width: 100%;
    max-width: 870px;
    border-radius: 25px;
    /* Gradient border */
    position: relative;
    background: transparent;
}

.search-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    /* full size */
    border-radius: 25px;
    padding: 2px;
    /* border thickness */
    background: linear-gradient(
        158.19deg,
        #8574ff99 -33.66%,
        #e299fbe3 23.59%,
        #ff577a 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    /* for Firefox */
    pointer-events: none;
    /* don’t block clicks */
}

.search-location {
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-right: solid 2px;
    /* gap: 10px; */
}

.search-location img {
    width: 25px;
    height: 25px;
}

.search-location span {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2.4px;
    margin-right: 80px;
}

.search-divider {
    margin-left: 10px;
    width: 2px;
    height: 32px;
    background-color: rgb(255 255 255 / 90%);
}

.search-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #e5e5e5;
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 14px;
    padding: 10px 60px;
    letter-spacing: 2.38px;
    flex: auto;
    white-space: nowrap; /* Prevents text from wrapping to a new line */
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 53%);
    /* content: "Try searching “Design, Print, Production, Service Expert, Consultant”"; */
}

.search-input:focus {
    outline: none;
}

.search-section .custom-btn {
    width: 166px;
}

.search-section .custom-btn:hover {
    opacity: 0.9;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1300px;
}

.category-card {
    background: var(--card-bg);
    border-radius: var(--card-border-radius);
    /* box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.6); */
    backdrop-filter: blur(30px);
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
    /* smooth for transform + shadow */
    position: relative;
}

.category-card .service-list {
    color: #e5e5e5;
}

.category-card:hover {
    box-shadow: 0px 0px 13.6px 0px rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    /* slide up effect */
}

/* Gradient text on hover */
.category-card .card-title {
    transition: background 0.3s ease, color 0.3s ease;
}

.category-card:hover .card-title {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-card:hover .more-link {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-card:hover .service-list {
    color: var(--text-color);
}

/* Common styles for all category-card borders */
.categories-grid .category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1.2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

/* Different gradients per card */
.categories-grid .category-card:first-child::before {
    background: linear-gradient(
        133deg,
        #81b4cd99 -12.89%,
        rgb(32 49 66 / 0%) 106.38%
    );
}

.categories-grid .category-card:nth-child(2)::before {
    background: linear-gradient(
        247deg,
        #e299fb9e -12.89%,
        rgb(32 49 66 / 0%) 106.38%
    );
}

.categories-grid .category-card:nth-child(3)::before {
    background: linear-gradient(
        155deg,
        #ff577a99 -12.89%,
        rgb(32 49 66 / 0%) 106.38%
    );
}

.categories-grid .category-card:nth-child(4)::before {
    background: linear-gradient(
        133deg,
        #8574ff6e -12.89%,
        rgb(32 49 66 / 0%) 106.38%
    );
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon-wrapper {
    /* width: 51px;
            height: 51px; */
    background-color: #0e0e0e;
    border-radius: 4px;
    box-shadow: 0px 0px 13.6px 0px rgba(255, 255, 255, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 12px;
}

.card-icon {
    width: 33px;
    height: 33px;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2.4px;
    line-height: 1.2;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-list a {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.7px;
}

.service-list img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #fff;
    padding: 5px;
    background: #000;
    object-fit: contain;
}

.more-link {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2.1px;
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #hero {
        padding-top: 120px;
    }

    .hero-bg {
        height: 100%;
    }

    .search-location span {
        margin-right: 5px;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 24px;
        letter-spacing: 4px;
        line-height: 25px;
        margin-top: 20px;
        padding-bottom: 5px;
    }

    .search-bar {
        /* flex-direction: column; */
        gap: 10px;
        /* padding: 15px; */
        background: rgba(0, 0, 0, 0.8);
    }

    .search-input {
        /* width: 90%; */
        padding: 10px 15px 10px 5px;
    }

    .search-input::placeholder {
        /* content: "Search your service"; */
    }

    .search-divider {
        /* display: none; */
    }

    .search-section .custom-btn {
        /* width: 100%; */
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:solutions */
#solutions {
    text-align: center;
}

#solutions .section-title {
    margin-bottom: 20px;
}

.solutions-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.solutions-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solutions-subtitle {
    font-size: 20px;
    letter-spacing: 1px;
    max-width: 962px;
    margin: 0 auto 60px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1350px;
    margin: 0 auto;
}

.solution-card {
    background: rgba(217, 217, 217, 0.01);
    border-radius: 20px;
    backdrop-filter: blur(7px);
    padding: 40px;
    text-align: left;
    box-shadow: 0px 4px 20.7px 0px rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.solution-number {
    font-size: 40px;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
    transition: background 0.4s ease, -webkit-text-fill-color 0.4s ease;
}

.solution-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: background 0.4s ease, -webkit-text-fill-color 0.4s ease;
}

.solution-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.solution-card:hover {
    box-shadow: 0px 0px 13.6px 0px rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    /* slide up effect */
}

.solution-card:hover .solution-title {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-card:hover .solution-number {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:cta-banner */
#cta-banner {
    padding: 0;
    height: 248px;
    position: relative;
    margin-top: 60px;
    margin-bottom: 60px;
}

.cta-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-slide {
    width: 100%;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(1, 7, 12, 0.3);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-color);
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 24px;
}

.slider-arrow {
    position: absolute;
    top: 27%;
    /* transform: translateY(-50%); */
    background: #ffffff9c;
    border: none;
    width: 80px;
    height: 104px;
    cursor: pointer;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.21);
}

.slider-arrow.prev {
    left: 0;
    border-radius: 5px 20px 20px 0px;
}

.slider-arrow.next {
    right: 0;
    border-radius: 20px 5px 5px 20px;
}

.slider-arrow.prev img {
    transform: rotate(180deg);
}

.slider-arrow img {
    /* width: 29px; */
    height: 60%;
}

.slider-dots {
    /* position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 4; */
    display: flex;
    gap: 15px;
    text-align: center;
    justify-content: center;
    margin-top: 20px;
}

.slider-dots .dot {
    width: 73px;
    height: 11px;
    border-radius: 380px;
    background: var(--text-color);
    opacity: 0.5;
    cursor: pointer;
}

.slider-dots .dot.active {
    opacity: 1;
    background: var(--gradient-text);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 18px;
    }

    .slider-arrow {
        width: 40px;
        height: 60px;
    }

    .slider-arrow img {
        width: 15px;
        height: 20px;
    }

    .slider-dots .dot {
        width: 40px;
        height: 8px;
    }
}

/* CSS for section section:top-cities */
#top-cities {
    padding-bottom: 60px;
}

.top-cities-gradient {
    background: linear-gradient(
        89deg,
        rgba(82, 173, 255, 0.91) 39.75%,
        rgba(190, 93, 164, 0.91) 52.54%,
        rgba(244, 85, 42, 0.91) 57.79%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Desktop (your existing layout) */
.cities-stack {
    position: relative;
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    height: 338px;
    margin: 0 auto;
}

.city-card {
    flex: 1;
    height: 338px;
    border-radius: 18px;
    overflow: hidden;
    transition: flex 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.city-card:hover {
    flex: 2;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.city-card:hover img {
    transform: scale(1.1);
}

/* Overlay */
.city-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.44);
    border-radius: 18px;
    transition: background 0.3s ease;
}

.city-card:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

/* City name */
.city-name {
    position: absolute;
    z-index: 2;
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: 400;
    color: #fff;
    transition: all 0.4s ease;
}

.city-card .city-name {
    top: 47%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* .city-card:not(:first-child) .city-name {
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  text-align: right;
} */
.city-card:hover .city-name {
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* ✅ Mobile: vertical stack */
@media (max-width: 767px) {
    .cities-stack {
        display: block;
        /* no flex */
        height: auto;
        /* remove fixed height */
        max-width: 100%;
        /* full width */
    }

    .city-card {
        width: 100%;
        height: 250px;
        /* adjust height for mobile */
        margin-bottom: 16px;
        flex: none;
        border-radius: 12px;
        transition: none;
        /* disable hover animations on mobile */
    }

    .city-card:hover {
        transform: none;
        box-shadow: none;
        z-index: auto;
    }

    .city-card::after {
        border-radius: 12px;
    }

    .city-name {
        font-size: 16px;
        letter-spacing: 2px;
    }
}

/* CSS for section section:top-partners */
/* Section Styling */
#top-partners {
    background-size: cover;
    padding: 40px 20px;
    min-height: 530px;
}

.partners-carousel {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    background-color: #0d0e12;
    border-radius: 16px;
}

/* Partner Card */
.partner-card {
    width: 240px;
    border-radius: 16px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.8) 0%, #0a032d 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    height: 100%;
    z-index: 10;
    position: relative;
}

/* Image */
.partner-image-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.partner-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */
.partner-name {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.partner-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #aaa;
}

.partner-location img {
    width: 12px;
    height: 14px;
}

/* Specializations as plain inline text */
.partner-specializations {
    font-size: 13px;
    font-weight: 400;
    color: #ddd;
    text-align: center;
    line-height: 1.4;
}

/* Hidden content (description + link) */
.partner-extra {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.8s ease;
    text-align: center;
}

.partner-card:hover .partner-extra {
    opacity: 1;
    max-height: 200px;
    /* adjust depending on content */
}

/* Description */
.partner-description {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 8px;
}

/* Link Button */
.partner-extra a {
    display: inline-block;

    /* text-decoration: none;
            transition: all 0.3s ease;
            background-color: rgba(17, 17, 17, 0.31);
            border: 0.5px solid rgba(255, 255, 255, 0.3); */
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-align: center;
    margin-top: auto;
}

.partner-link a:hover {
    opacity: 0.85;
}

/* Mobile: always show extra */
@media (max-width: 768px) {
    .partner-extra {
        opacity: 1;
        max-height: 300px;
    }

    .partner-card {
        width: 100%;
        height: 100%;
    }

    #top-partners {
        height: 100%;
    }
}

/* CSS for section section:gallery */
#gallery {
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
}

.gallery-item-container {
    display: flex;
    gap: 20px;
    padding: 0;
    height: 352px;
    overflow: hidden;
}

.gallery-item {
    flex: 1;
    /* all items take equal width */
    border-radius: 10px;
    overflow: hidden;
    transition: flex 0.5s ease;
    /* smooth expand */
    /* cursor: pointer; */
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* expand on hover */
.gallery-item:hover {
    flex: 2;
    /* this image takes more space */
}

.gallery-item:hover img {
    transform: scale(1.1);
    /* zoom effect */
}

/* 📱 Mobile view */
@media (max-width: 768px) {
    .gallery-item-container {
        flex-direction: column;
        /* stack vertically */
        height: auto;
        /* remove fixed height */
    }

    .gallery-item {
        flex: unset;
        /* disable flex expansion */
        width: 100%;
        height: 300px;
        /* fixed height for mobile */
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        transform: none !important;
        /* disable zoom */
    }

    .gallery-item:hover {
        flex: unset;
        /* no hover effect */
    }
}

/* CSS for section section:footer */
#site-footer {
    position: relative;
    padding-top: 60px;
    padding-bottom: 20px;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* control widths like screenshot */
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    position: relative;
    padding-right: 30px;
}

.footer-column:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    /* start from middle */
    right: 0;
    transform: translateY(-50%);
    /* center it vertically */
    width: 4.5px;
    /* thickness of the border */
    height: 300px;
    /* length of the oval */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    /* makes it oval/capsule shaped */
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    column-gap: 40px;
    /* space between columns */
}

.footer-column ul li {
    margin-bottom: 5px;
    /* spacing between items */
}

.footer-two-col {
    display: flex;
    /* gap: 40px; */
    /* space between the two lists */
}

.footer-two-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* spacing between items */
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-column li a,
.footer-column p {
    font-size: 14px;
    font-weight: 400;
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
}

.social-icons img {
    width: 30px;
    /* height: 30px; */
    margin-left: 5px;
    opacity: 0.8;
}

.social-icons img > a {
    cursor: pointer;
}

@media (max-width: 992px) {
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 20px; /* space between boxes */
    }

    .b2b-columns {
        flex-direction: column;
        gap: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-column:not(:last-child)::after {
        background-color: transparent;
    }
}
@media (max-width: 563px) {
    .footer-grid {
        grid-template-columns: 1fr; /* stack in single column */
    }
}

/* Input box (selected item) */
.chosen-container-single .chosen-single {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff !important;
}

/* Search input inside dropdown */
.chosen-container-single .chosen-search input {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
}

.chosen-container-single .chosen-search input[type="text"] {
    padding: 8px;
}

/* Dropdown */
.chosen-drop {
    min-width: 200px;
}
.chosen-container .chosen-drop {
    background: #161017 !important;
    border: 0.5px solid rgb(53, 53, 53);
    border-radius: 5px;
    margin-top: 8px;
    margin-left: -20px;
    padding: 5px;
}

/* Option list */
.chosen-container .chosen-results li {
    color: #fff !important;
    padding: 10px 0px;
    background: transparent !important;
    border-bottom: 0.2px solid #383737;
}

/* Remove border for the last li */
.chosen-container .chosen-results li:last-child {
    border-bottom: none;
}

.chosen-container .chosen-results li.highlighted {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

/* position the icon */
.chosen-container-single .chosen-single span {
    display: inline-block;
    max-width: 140px;
    /* adjust width */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    margin-right: 5px;
}

.location-icon {
    cursor: pointer;
}

.chosen-container-single .chosen-single div b {
    display: none;
}

/* Apply only inside chosen results dropdown */
.chosen-container .chosen-results {
    max-height: 200px;
    /* keep dropdown scrollable */
    overflow-y: auto;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #666 transparent;
}

/* Chrome, Edge, Safari */
.chosen-container .chosen-results::-webkit-scrollbar {
    width: 4px;
    /* thin scrollbar */
}

.chosen-container .chosen-results::-webkit-scrollbar-track {
    background: transparent;
}

.chosen-container .chosen-results::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 4px;
}

.no-results span {
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
}

#searchDropdownIcon {
    height: 18px;
    width: 18px;
}

@media (max-width: 768px) {
    .search-location {
        /* width: 80% !important; */
        margin: 0 auto;
    }

    .chosen-container-single .chosen-single span {
        max-width: 62px;
        margin-right: 0px;
    }

    #searchDropdownIcon {
        display: none;
    }
}

/* Make sure the slider and slides take full width and show height */

.cta-slider,
.cta-slide {
    width: 100%;
    height: 300px;
    /* Set desired height */
}

.pop-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999;

    overflow: hidden;
}

.pop-menu.active {
    display: block;
}

.pop-menu .container {
    background: #fff;
    max-width: 1400px;
    margin: 70px auto;
    padding: 20px;
    border-radius: 8px;

    height: auto;
}

/* Left navigation */
.pmenu-left {
    height: 55vh;
    border-right: 1px solid #ddd;
}

.pmenu-left a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
}

.pmenu-left a:hover {
    color: #9c27b0;
}

/* Right categories */
.pmenu-right ul li {
    font-weight: 600;
    font-size: 18px;
}

.pmenu-left ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pmenu-left ul li > img {
    width: 20px;
    height: 20px;
}

.pmenu-right {
    height: 55vh;
}

.pmenu-right ul li ul li {
    font-weight: normal;
    color: #555;
}

/* Close button */
.clopme {
    /* position: absolute; */
    position: relative;
    /* top: 15px;
            right: 20px; */
    font-size: 35px;
    color: #444;
}

/* Bottom section */
.pmenu-bottom {
    width: 100%;
    border-top: 1px solid #ddd;
}

.close-icon {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .pop-menu {
        position: fixed;
        height: auto;
        top: 0;
        left: -100%;
        /* initially hidden */
        width: 80%;
        /* take 80% width on mobile */
        max-width: 600px;
        /* optional limit */
        max-height: 100vh;
        background: #fff;
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.8s ease-in-out;
        /* smooth slide animation */
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }

    /* When active, slide in */
    .pop-menu.active {
        left: 0;
    }

    .pmenu-left {
        border-right: none;
        /* remove desktop border */
        border-bottom: 1px solid #ddd;
        /* add bottom border for separation */
        margin-bottom: 15px;
        height: auto;
        /* let content decide */
    }

    .pmenu-left a {
        font-size: 14px;
    }

    .pmenu-right {
        height: auto;
        border-bottom: 1px solid #ddd;
    }

    .pmenu-right ul {
        flex-direction: column;
    }

    .pmenu-right ul li {
        font-size: 16px;
    }

    /* .mobile-top-buttons{
                border-bottom:1px solid #ddd;
                border-right:none;
            } */

    .pmenu-bottom {
        border: none;
        padding-bottom: 20px;
    }

    .custom-btn {
        width: 200px;
        max-width: 300px;
    }

    .pop-menu .container {
        padding: 0px !important;
        margin: 0px !important;
    }

    .close-icon {
        background: var(--gradient-text);
        padding: 10px;
        display: flex;
        align-items: center;
    }

    .clopme {
        color: white;
    }

    .mobile-top-buttons {
        margin: 20px 0px;
    }

    .custom-link {
        font-weight: 600;
        color: text-gradient !important;
    }
}

.hom-nav .bl {
    float: right;
    margin: 0;
    padding-top: 4px;
}

.hom-nav .bl li {
    float: left;
    margin-left: 10px;
    font-weight: 500;
}

.hom-nav .bl li a {
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    font-size: 12px;
    line-height: 49px;
    padding: 5px 6px;
    border-radius: 5px;
    float: left;
    display: inline-block;
    line-height: 24px;
}

.hom-nav .bl li:last-child a {
    color: #fff;
    border-radius: 5px;
    margin-left: 10px;
    padding: 3px 7px;
}

.hom-nav .bl li:nth-last-child(2) a {
    color: #fff;
    border-radius: 5px;
    margin-left: 10px;
    padding: 3px 6px;
}

.hom-nav .bl li:last-child a:hover {
    background: #1834bf;
    border: 1px solid #0a2192;
}

.hom-nav .bl li:nth-last-child(2) a {
    background: #1834bf;
    border: 1px solid #0a2192;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
}

.custom-toggle {
    cursor: pointer;
    display: inline-block;
}

.dropdown-menu {
    width: 180px;
    display: none;
    position: absolute;
    top: 100%;
    right: -6px;
    background-color: #fff;
    min-width: 150px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.dropdown-menu li {
    padding: 2px 5px;
    cursor: pointer;
    width: 100%;
    margin-left: 0px !important;
}

.dropdown-menu li:hover {
    background-color: #f1f1f1;
}

/* Show dropdown when active */
.custom-dropdown.active .dropdown-menu {
    display: block;
}

.custom_dropdown_item > a {
    background-color: transparent !important;
    border-color: transparent !important;
    color: black !important;
}

.dropdown-menu li:last-child > a {
    color: red !important;
}
.email {
    color: #0d42ca;
    transition: 0.2s ease-in-out;
}
.email:hover {
    color: #2d4ea8;
}

/* homepage responsive style for larger screens */

@media (min-width: 1536px) {
    .container {
        max-width: 90% !important;
    }
    .header-container {
        max-width: 90% !important;
    }
    .categories-grid {
        max-width: 100% !important;
    }
    .search-bar {
        max-width: 70% !important;
    }

    .solutions-grid {
        max-width: 100%;
    }

    .cities-stack {
        max-width: 1550px;
    }

    .partner-card {
        width: 18%;
    }
}

@media (min-width: 1700px) {
}

.cta-slider img {
    width: 100%;
    height: auto; /* maintain aspect ratio */
    object-fit: contain; /* ensure full image fits inside slider */
}

/* Hide navigation arrows on small screens */
@media (max-width: 1200px) {
    .prev,
    .next {
        display: none !important;
    }
}

#cta-banner {
    width: 100%; /* Stretches full width */
    height: auto; /* Automatically adjusts */
}

.cta-slider,
.cta-slide {
    width: 100%;
}

#cta-banner {
    position: relative;
    width: 100%;
    padding-top: calc(100% / 6); /* 1/6th of width = 6:1 ratio */
}

#cta-banner > .cta-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-link:hover {
    text-decoration: underline;
}

.category-link:hover {
    text-decoration: underline;
}
