:root {
    --blue-600: #1A4FD6;
    --blue-700: #1e46e0;
    --blue-50: #E3E9FA;
    --ink-900: #0b1220;
    --ink-700: #37415a;
    --ink-500: #58616E;
    --ink-300: #98a1b8;
    --line: #e6e9f2;
    --bg-soft: #f4f6fb;
}

a {
    text-decoration: none;
}

.pn {
    padding: 0px
}

.bg-soft {
    background: var(--bg-soft);
    border-bottom: 1px solid #DEE5EE;
    border-top: 1px solid #DEE5EE;
}

/* Small utility shims — Bootstrap 3 has no flex/gap utilities, so add the few we need */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-2>* {
    margin-right: 8px;
}

.gap-2>*:last-child {
    margin-right: 0;
}

.gap-3>* {
    margin-right: 14px;
}

.gap-3>*:last-child {
    margin-right: 0;
}

.rounded-circle {
    border-radius: 50%;
}

.fw-bold {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.text-muted-brand {
    color: var(--ink-500);
}

.grid-gap {
    margin-left: -12px;
    margin-right: -12px;
}

.grid-gap>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

.no-gutter-bottom {
    margin-bottom: 0;
}

.btn-dark-brand {
    background: var(--ink-900);
    border-color: var(--ink-900);
    color: #fff;
    font-weight: 700;
}

.btn-dark-brand:hover,
.btn-dark-brand:focus {
    background: #000;
    border-color: #000;
    color: #fff;
}

/* ---- Hero ---- */
.hero {
    background-image: url('../images/content-arcade-bg.svg');
    padding: 76px 0 44px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: #0B1320
}

.hero h1 .hl {
    background: var(--blue-50);
    color: var(--blue-600);
    padding: 2px 14px;
    border-radius: 10px;
}

.hero p.lead {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: var(--ink-500);
    font-size: 18px;
    font-weight: 500
}

.strip-label {
    font-size: 16px;
    letter-spacing: .18em;
    font-weight: 700;
    color: var(--ink-500);
    text-transform: uppercase;
}

.carousel-arrow.primary {
    background: var(--blue-600);
    color: #fff;
    border-color: var(--blue-600);
}

.product-chip {
    display: flex;
    align-items: center;
    justify-content: center;
}

.strip-track {
    overflow-x: auto;
    -ms-overflow-style: none;
    flex: 1;
}

.strip-track::-webkit-scrollbar {
    display: none;
}

#productCarousel {
    position: relative;
    padding: 0 60px;
}

#productCarousel .item {
    text-align: center;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #000;
    text-decoration: none;
    z-index: 100;
}

.carousel-arrow.left {
    left: 0;
}

.carousel-arrow.right {
    right: 0;
}

.carousel-arrow:hover {
    text-decoration: none;
}

/* ---- Section headers ---- */
.section-title {
    font-size: 40px;
    font-weight: 600;
    color: #0B1320;
}

.section-sub {
    color: #58616E;
    font-size: 18px;
}

/* ---- Expertise cards ---- */
.expertise-section {
    padding: 70px 0
}

.expertise-section .heading-title {
    font-size: 40px;
    font-weight: 600;
    color: #0B1320;
    margin-bottom: 10px
}

.expertise-section .expertise-subtitle {
    color: #58616E;
    font-size: 18px;
    font-weight: 500
}

.slider-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    margin-left: 8px;
    transition: .3s;
}

.prev-icon {
    width: 10px;
    height: 14px;
    display: inline-block;
    background-image: url('../images/silders-image/slider-left-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.slider-btn:hover {
    background: #1A4FD6;
    border: 1px solid #1A4FD6;
}

.slider-btn:hover .prev-icon {
    background-image: url('../images/silders-image/white-arrow.svg');
    transform: rotate(180deg);
}

.next-icon {
    width: 10px;
    height: 14px;
    display: inline-block;
    background-image: url('../images/silders-image/slider-left-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(180deg);
}

.slider-btn:hover .next-icon {
    background-image: url('../images/silders-image/white-arrow.svg');
    transform: rotate(360deg);
}

.expert-card {
    border: 1px solid #DEE5EE;
    border-radius: 18px;
    padding: 35px 28px;
    width: 100%;
    height: 370px;
    transition: .3s;
    background: #F7F9FB
}

.expert-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0B1320
}

.expert-card p {
    color: #58616E;
    font-size: 14px;
    font-weight: 400
}

/* ---- Team / pills ---- */
.team-tabs.nav-pills {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-tabs.nav-pills>li {
    display: inline-block;
    float: none;
    margin: 4px;
}

.team-tabs.nav-pills>li>a {
    border: 1px solid #DEE5EE;
    color: #0B1320;
    font-size: 14px;
    border-radius: 8px;
    background: #fff;
    font-weight: 600;
}

.team-tabs.nav-pills>li>a span {
    font-size: 12px;
    font-weight: 500;
    color: #58616E
}

.team-tabs.nav-pills>li.active>a,
.team-tabs.nav-pills>li.active>a:hover,
.team-tabs.nav-pills>li.active>a:focus {
    background: #1A4FD6;
    color: #fff;
    border-color: #1A4FD6;
}

.team-tabs.nav-pills>li>a:hover {
    border-color: var(--blue-600);
    color: var(--blue-600);
    background: #fff;
}

.team-tabs.nav-pills>li.active>a span {
    color: #fff;
}

.team-heading {
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 40px;
    color: #0B1320;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(20, 30, 70, .06);
    transition: .2s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(20, 30, 70, .10);
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.team-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 2px;
}

.team-card span {
    font-size: 12px;
    color: #58616E;
    font-weight: 500
}

.team .team-item.is-hidden {
    display: none;
}

/* ---- Testimonials ---- */
.testimonial-section {
    padding: 80px 0;
}

.testimonial-section h2 {
    font-size: 40px;
    font-weight: 600;
    color: #0B1320;
    margin-bottom: 12px;
}

.testimonial-section .heading-decs {
    color: #58616E;
    margin-bottom: 30px;
}

.testimonial-card {
    border: 1px solid #DEE5EE;
    border-radius: 18px;
    padding: 20px;
    height: 276px;
    background: #fff;
    transition: .3s;
    width: 360px;
}

.stars {
    color: #FDBA12;
    font-size: 22px;
    letter-spacing: 4px;
    margin-bottom: 17px;
}

.review {
    color: #555;
    line-height: 1.8;
    min-height: 95px;
}

.user {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 44px;
    height: 44px;
    border: 1px solid #DEE5EE;
    border-radius: 50%;
    background: #eef2f7;
    text-align: center;
    line-height: 44px;
    font-weight: 600;
    font-size: 16px;
    color: #58616E;
    display: inline-block;
    float: left;
}

.info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #0B1320;
}

.info span {
    font-size: 13px;
    color: #58616E;
    font-weight: 500
}

.slider-nav {
    margin-top: 40px;
}

.nav-btn {
    width: 38px;
    height: 38px;
    display: inline-block;
    line-height: 38px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #444;
    margin: 0 4px;
    transition: .3s;
}

.wrap-testimonial {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* ---- Contact ---- */
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 44px;
    box-shadow: 0 4px 24px rgba(20, 30, 70, .06);
}

.input-group-addon {
    background: #fbfcfe;
    border-color: var(--line);
    color: var(--ink-300);
}

.subject-chip {
    border: 1px solid #DEE5EE;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #58616E;
    cursor: pointer;
    transition: .15s;
}

.subject-chip img {
    margin-right: 7px;
}

.subject-chip:hover,
.subject-chip.selected {
    border-color: var(--blue-600);
    color: var(--blue-600);
    background: var(--blue-50);
}

.border-left {
    border-right: 1px solid #DEE5EE;
}

#contact .input-group {
    border: 1px solid #DEE5EE;
    border-radius: 8px;
    background: #fff;
    width: 100%;
}

#contact .input-group-addon:first-child {
    border: 0;
    border-radius: 8px;
}

#contact .input-group input.form-control {
    border: 0px !important;
    background: transparent;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    height: 48px;
    box-shadow: none;
    padding: 10px 0px;
    color: #79818B;
    font-size: 14px;
}

#contact .subjectGroup {
    display: flex;
    gap: 12px;
}

#contact .label-form-heading {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 12px;
    color: #0B1320;
}

#contact textarea.form-control {
    height: 100px;
    font-weight: 500;
    font-size: 14px;
    border: 0px;
    border-radius: 8px;
    box-shadow: none;
    padding: 20px 20px 20px 0px;
    color: #79818B;
    resize: none;
}

#contact button.contact-submit {
    width: 220px;
    padding: 14px;
    background: #1A4FD6;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    margin-top: 10px;
}

/* footer */
footer {
    background: var(--ink-900);
    color: #c9cfe0;
    padding-top: 56px;
}

.height-set:before,
.height-set:after {
    content: inherit;
}

.footer-top {
    min-height: 300px;
}

footer h6 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
    font-size: 16px;
}

footer .footer-links {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
    color: #B5B8BC;
    text-decoration: none;
}

footer a {
    color: #aab1c7;
}

footer a:hover {
    color: #fff;
}

footer .footer-bottom {
    background: #060D17;
}

.hightlight-policy {
    color: #0B1320;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0px 0px 5px 0px;
}

p.text-muted-brand {
    font-weight: 500;
    font-size: 14px;
    color: #58616E;
    margin-bottom: 0px;
}

.last-footer {
    height: 60px;
    background: #060d17;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.last-footer span {
    color: #B5B8BC;
}



/* Tablet */
@media (max-width:991px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-section h2 {
        font-size: 34px;
    }

    .wrap-testimonial {
        gap: 15px;
    }

    .testimonial-card {
        width: 100%;
        height: auto;
        min-height: 260px;
    }
}

/* ---- Media Query start ---- */
@media (max-width:767px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero {
        padding: 52px 0 34px;
    }

    section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .contact-card {
        padding: 26px 20px;
    }

    .navbar-nav {
        margin-top: 8px;
    }

    .team-tabs.nav-pills {
        display: inline-block;
    }

    .team-card {
        height: 230px
    }

    .team-card h4 {
        font-size: 14px
    }

    /* testimonial-section */
    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-section h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .testimonial-section .heading-decs {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 25px;
    }

    .wrap-testimonial {
        display: block;
    }

    .wrap-testimonial>div {
        width: 100%;
        margin-bottom: 18px;
    }

    .wrap-testimonial>div:last-child {
        margin-bottom: 0;
    }

    .testimonial-card {
        width: 100%;
        height: auto;
        padding: 18px;
    }

    .review {
        min-height: auto;
    }

    .stars {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .user {
        margin-top: 18px;
    }

    .slider-nav {
        margin-top: 25px;
    }

    .nav-btn {
        width: 42px;
        height: 42px;
        line-height: 42px;
    }

    #contact .subjectGroup {
        display: inline-block
    }

    #contact textarea.form-control {
        padding: 10px 10px 10px 0px
    }

    .container.height-set {
        height: 110px;
        padding: 20px;
    }

    .last-footer {
        display: block
    }

    .expertise-section {
        padding: 0px;
    }

    .expert-card {
        margin: 20px 0px;
    }

    .border-left {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 500px) {
    .drop_box {
        top: 30px;
        width: 290px;
        padding: 0px;
        left: 10px;
    }
}