/*=======================================================
  SAMBARA THEME — modern light/blue skin
  Loaded after style.css; owns the sambara-* markup and
  re-skins shared inner-page components.
=======================================================*/

:root {
    --sambara-primary: #2563EB;
    --sambara-primary-dark: #1D4FD7;
    --sambara-dark: #0D1B3D;
    --sambara-body: #5A6478;
    --sambara-light: #F2F6FF;
    --sambara-border: #E3EAF6;
    --sambara-radius: 16px;
    --sambara-radius-sm: 10px;
    --sambara-shadow: 0 10px 35px rgba(13, 27, 61, 0.08);
    --sambara-shadow-lg: 0 20px 50px rgba(13, 27, 61, 0.12);
}

body.sambara-body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    color: var(--sambara-body);
    background: #ffffff;
    overflow-x: hidden;
}

body.sambara-body h1,
body.sambara-body h2,
body.sambara-body h3,
body.sambara-body h4,
body.sambara-body h5,
body.sambara-body h6 {
    color: var(--sambara-dark);
    font-weight: 700;
}

/*----- buttons -----*/
.sambara-btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    transition: all .3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.sambara-btn i {
    margin-right: 6px;
}
.sambara-btn-primary {
    background: linear-gradient(135deg, var(--sambara-primary) 0%, var(--sambara-primary-dark) 100%);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.30);
}
.sambara-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.40);
    color: #fff;
}
.sambara-btn-outline {
    background: #fff;
    border-color: var(--sambara-primary);
    color: var(--sambara-primary) !important;
}
.sambara-btn-outline:hover {
    background: var(--sambara-primary);
    color: #fff !important;
}
.sambara-btn-light {
    background: #fff;
    color: var(--sambara-primary) !important;
    box-shadow: 0 8px 20px rgba(13, 27, 61, 0.20);
}
.sambara-btn-light:hover {
    transform: translateY(-2px);
}
.sambara-btn-block {
    display: block;
    text-align: center;
}
.sambara-link {
    color: var(--sambara-primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}
.sambara-link i {
    font-size: 12px;
    margin-left: 4px;
    transition: margin .25s ease;
}
.sambara-link:hover {
    color: var(--sambara-primary-dark);
}
.sambara-link:hover i {
    margin-left: 8px;
}

/*----- section scaffolding -----*/
.sambara-section {
    padding: 90px 0;
}
.sambara-section-head {
    max-width: 620px;
    margin: 0 auto 50px;
    text-align: center;
}
.sambara-section-title {
    display: inline-block;
    color: var(--sambara-primary);
    background: rgba(37, 99, 235, 0.08);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.sambara-section-summary {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 0;
}

/*----- topbar -----*/
.sambara-topbar {
    background: var(--sambara-dark);
    padding: 8px 0;
    font-size: 13px;
}
.sambara-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.sambara-topbar-contact span {
    color: rgba(255, 255, 255, 0.85);
    margin-right: 22px;
}
.sambara-topbar-contact span i {
    color: #7EA6FF;
    margin-right: 6px;
}
.sambara-topbar-right {
    display: flex;
    align-items: center;
}
.sambara-topbar-socials {
    display: inline-flex;
    margin: 0 14px 0 0;
    padding: 0;
    list-style: none;
}
.sambara-topbar-socials li {
    margin-right: 12px;
}
.sambara-topbar-socials li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}
.sambara-topbar-socials li a:hover {
    color: #fff;
}
.sambara-topbar-login {
    color: #fff;
    font-weight: 600;
    margin-left: 16px;
}
.sambara-topbar-login:hover {
    color: #7EA6FF;
}
.sambara-lang {
    position: relative;
    margin-left: 16px;
}
.sambara-lang-btn {
    color: #fff;
    font-weight: 500;
}
.sambara-lang-btn:hover {
    color: #7EA6FF;
}
.sambara-lang-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    min-width: 170px;
    background: #fff;
    border-radius: var(--sambara-radius-sm);
    box-shadow: var(--sambara-shadow-lg);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s ease;
    z-index: 1050;
}
.sambara-lang:hover .sambara-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sambara-lang-dropdown li a {
    display: block;
    padding: 7px 18px;
    color: var(--sambara-dark);
    font-size: 13px;
}
.sambara-lang-dropdown li a:hover {
    background: var(--sambara-light);
    color: var(--sambara-primary);
}

/*----- navbar -----*/
.sambara-navbar {
    background: #fff;
    box-shadow: 0 2px 14px rgba(13, 27, 61, 0.06);
    position: relative;
    z-index: 1000;
}
.sambara-navbar.sambara-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: sambaraSlideDown .35s ease;
    box-shadow: 0 6px 24px rgba(13, 27, 61, 0.10);
}
@keyframes sambaraSlideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}
.sambara-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sambara-logo img {
    max-height: 60px;
    width: auto;
    padding: 6px 0;
}
.sambara-nav-menu {
    flex: 1;
}
/* neutralise the absolute-header nav styling from style.css */
.sambara-navbar .main-menu {
    margin: 0;
    padding: 0;
    text-align: right;
}
.sambara-navbar .main-menu > li {
    display: inline-block;
    position: relative;
}
.sambara-navbar .main-menu > li > a {
    display: block;
    padding: 26px 15px;
    color: var(--sambara-dark);
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
}
.sambara-navbar .main-menu > li > a:hover {
    color: var(--sambara-primary);
}
/* kill style.css's animated top/bottom underline bars on top-level links */
.sambara-navbar .main-menu > li > a::before,
.sambara-navbar .main-menu > li > a::after {
    display: none;
}
.sambara-navbar .main-menu li .dropdown-lists {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: var(--sambara-radius-sm);
    box-shadow: var(--sambara-shadow-lg);
    padding: 10px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 1040;
    text-align: left;
}
.sambara-navbar .main-menu li:hover > .dropdown-lists {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sambara-navbar .main-menu li .dropdown-lists li {
    position: relative;
}
.sambara-navbar .main-menu li .dropdown-lists li a {
    display: block;
    padding: 8px 20px;
    color: var(--sambara-dark);
    font-size: 14px;
    font-weight: 500;
}
.sambara-navbar .main-menu li .dropdown-lists li a:hover {
    background: var(--sambara-light);
    color: var(--sambara-primary);
}
/* third-level flyout produced by create_menu() */
.sambara-navbar .main-menu li .dropdown-lists li ul {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 210px;
    background: #fff;
    border-radius: var(--sambara-radius-sm);
    box-shadow: var(--sambara-shadow-lg);
    padding: 10px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
}
.sambara-navbar .main-menu li .dropdown-lists li:hover > ul {
    opacity: 1;
    visibility: visible;
}
.sambara-nav-cta {
    margin-left: 18px;
    white-space: nowrap;
}
.sambara-nav-cta .sambara-btn {
    padding: 11px 26px;
}
/* regular dropdowns: beat style.css dark-theme rules (li bg #0a3041, white links) */
.sambara-navbar .main-menu li.dropdown ul.dropdown-lists {
    top: 100%;
    width: 240px;
    background: #fff;
    border-radius: var(--sambara-radius-sm);
    box-shadow: var(--sambara-shadow-lg);
    padding: 8px 0;
    overflow: hidden;
}
.sambara-navbar .main-menu li.dropdown ul.dropdown-lists li {
    background-color: #fff;
    border-bottom: 1px solid var(--sambara-border);
}
.sambara-navbar .main-menu li.dropdown ul.dropdown-lists li:last-child {
    border-bottom: none;
}
.sambara-navbar .main-menu li.dropdown ul.dropdown-lists li a {
    color: var(--sambara-dark);
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.sambara-navbar .main-menu li.dropdown ul.dropdown-lists li a::before {
    background-color: var(--sambara-light);
}
.sambara-navbar .main-menu li.dropdown ul.dropdown-lists li a:hover {
    color: var(--sambara-primary);
}
.sambara-navbar .main-menu li.dropdown ul.dropdown-lists li.active a {
    background-color: var(--sambara-primary);
    color: #fff;
}

/* mega menu: panel must position against the navbar, not the link */
.sambara-navbar .main-menu > li.mega-dropdown {
    position: static;
}
.sambara-navbar .main-menu .mega-dropdown > a {
    color: var(--sambara-dark);
}
.sambara-navbar .main-menu .mega-dropdown > a:hover {
    color: var(--sambara-primary);
}
.sambara-navbar .mega-dropdown .dropbtn {
    color: var(--sambara-dark);
    font-size: 15px !important;
    padding: 26px 15px;
}
.sambara-navbar .mega-dropdown:hover a.dropbtn {
    color: var(--sambara-primary);
}
.sambara-navbar .mega-dropdown .dropbtn::before,
.sambara-navbar .mega-dropdown .dropbtn::after {
    display: none;
}
.sambara-navbar .mega-dropdown-content {
    top: 100%;
    background-color: #fff;
    color: var(--sambara-dark);
    border-radius: 0 0 var(--sambara-radius) var(--sambara-radius);
    box-shadow: var(--sambara-shadow-lg);
    border-top: 1px solid var(--sambara-border);
    padding: 30px;
    text-align: left;
}
.sambara-navbar .mega-dropdown-content a {
    color: var(--sambara-dark);
}
.sambara-navbar .mega-dropdown-content a:hover {
    color: var(--sambara-primary);
}
.sambara-navbar .megamenu-cats ul li {
    border-bottom: 1px solid var(--sambara-border);
}
.sambara-navbar .megamenu-cats ul li a {
    color: var(--sambara-dark);
    padding: 9px 12px;
}
.sambara-navbar .megamenu-cats ul li a:hover,
.sambara-navbar .megamenu-cats ul li.active a {
    color: var(--sambara-primary);
}
.sambara-navbar .mega-tab h3.category a {
    color: var(--sambara-dark);
    font-size: 16px;
}
.sambara-navbar .mega-dropdown-content .title a {
    color: var(--sambara-body);
}
.sambara-navbar .mega-dropdown-content .title a:hover {
    color: var(--sambara-primary);
}
.sambara-navbar .mega-dropdown-content .thumb img {
    border-radius: var(--sambara-radius-sm);
}
/* slicknav mobile button on white header */
.sambara-navbar .slicknav_menu {
    background: transparent;
    padding: 0;
}
.sambara-navbar .slicknav_btn {
    background-color: var(--sambara-primary);
    border-radius: 8px;
    margin: 12px 0;
}
.sambara-navbar .slicknav_nav {
    background: #fff;
    border-radius: var(--sambara-radius-sm);
    box-shadow: var(--sambara-shadow-lg);
    position: absolute;
    left: 15px;
    right: 15px;
    z-index: 1100;
    text-align: left;
    padding: 10px;
}
.sambara-navbar .slicknav_nav a {
    color: var(--sambara-dark);
    font-weight: 500;
}
.sambara-navbar .slicknav_nav a:hover {
    background: var(--sambara-light);
    color: var(--sambara-primary);
    border-radius: 6px;
}

/*----- hero: full-bleed photo + brand scrim -----*/
.sambara-hero {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: center;
    padding: 110px 0 150px;
    overflow: hidden;
    background: var(--sambara-light);
}
.sambara-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.sambara-hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* bias the crop upward — faces/subjects sit in the top half of most photos */
    object-position: center 32%;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.4s ease, transform 7s ease-out;
}
.sambara-hero-bg img.is-active {
    opacity: 1;
    transform: scale(1);
}
/* scrim: solid on the text side, clear over the photo — keeps the headline
   legible no matter which image the client uploads */
.sambara-hero-scrim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 74%, rgba(255, 255, 255, 0.45) 100%),
        linear-gradient(95deg,
            rgba(240, 245, 255, 0.98) 0%,
            rgba(240, 245, 255, 0.94) 32%,
            rgba(240, 245, 255, 0.62) 48%,
            rgba(235, 242, 255, 0.14) 66%,
            rgba(13, 27, 61, 0.04) 100%);
}
.sambara-hero .container {
    position: relative;
    z-index: 2;
}
.sambara-hero-badge {
    display: inline-block;
    background: #fff;
    color: var(--sambara-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: var(--sambara-shadow);
    margin-bottom: 24px;
}
.sambara-hero-badge i {
    margin-right: 6px;
}
.sambara-hero-txt :is(h1,h2) {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.06;
    margin-bottom: 24px;
    color: var(--sambara-dark);
    letter-spacing: -1.2px;
}
.sambara-hero-txt :is(h1,h2) .sambara-hero-line {
    display: block;
}
.sambara-hero-txt :is(h1,h2) .sambara-accent {
    color: var(--sambara-primary);
    font-weight: 800;
}
/* short brand-blue divider bar between headline and subtext (ref look) */
.sambara-hero-txt :is(h1,h2)::after {
    content: "";
    display: block;
    width: 66px;
    height: 4px;
    border-radius: 4px;
    background: var(--sambara-primary);
    margin: 24px 0 0;
}
/* rotator: slides are stacked; JS reserves the tallest slide's height so the
   badge above and the note/trust/dots below never shift between slides */
.sambara-hero-rotator {
    position: relative;
}
.sambara-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity .7s ease, transform .7s ease;
    pointer-events: none;
}
.sambara-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}
.sambara-hero-slide :is(h1,h2) {
    margin-bottom: 24px;
}
.sambara-hero-slide p {
    margin-bottom: 30px;
}
.sambara-hero-txt p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 580px;
}
.sambara-hero-btns .sambara-btn {
    margin-right: 14px;
    margin-bottom: 12px;
}
.sambara-hero-note {
    font-size: 13px;
    color: var(--sambara-body);
    margin: 2px 0 0;
}
.sambara-hero-note i {
    color: #22A85B;
    margin-right: 5px;
}
.sambara-hero-trust {
    display: flex;
    flex-wrap: wrap;
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid rgba(13, 27, 61, 0.12);
    max-width: 560px;
}
.sambara-hero-trust-item {
    margin-right: 38px;
    margin-bottom: 8px;
}
.sambara-hero-trust-item:last-child {
    margin-right: 0;
}
.sambara-hero-trust-item strong {
    display: block;
    color: var(--sambara-dark);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}
.sambara-hero-trust-item span {
    font-size: 13px;
    color: var(--sambara-body);
}
/* dots sit under the text, aligned with the content — never over the photo,
   so they can't collide with the floating cart/WhatsApp widgets */
.sambara-hero-dots {
    display: flex;
    margin-top: 26px;
}
.sambara-hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    margin-right: 8px;
    border: none;
    border-radius: 50px;
    background: rgba(13, 27, 61, 0.22);
    cursor: pointer;
    transition: all .3s ease;
}
.sambara-hero-dots button:hover {
    background: rgba(37, 99, 235, 0.55);
}
.sambara-hero-dots button.is-active {
    width: 28px;
    background: var(--sambara-primary);
}


/*----- feature strip: docks over the hero's bottom edge -----*/
.sambara-features {
    position: relative;
    z-index: 5;
    margin-top: -88px;
    padding-bottom: 20px;
}
.sambara-feature-card {
    background: #fff;
    border-radius: var(--sambara-radius);
    box-shadow: var(--sambara-shadow-lg);
    border: 1px solid var(--sambara-border);
    padding: 26px 14px;
    text-align: center;
    margin-bottom: 24px;
    height: calc(100% - 24px);
    transition: all .3s ease;
}
.sambara-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.35);
}
.sambara-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}
.sambara-feature-card h3 {
    font-size: 15px;
    margin: 0;
    line-height: 1.4;
    /* keep icons aligned when some titles wrap to 2 lines */
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*----- service / category cards -----*/
.sambara-services {
    background: #fff;
    padding-top: 70px;
}
.sambara-category-card {
    background: #fff;
    border: 1px solid var(--sambara-border);
    border-radius: var(--sambara-radius);
    padding: 30px 22px;
    text-align: center;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    transition: all .3s ease;
}
.sambara-category-card:hover {
    box-shadow: var(--sambara-shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.35);
}
.sambara-category-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: var(--sambara-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sambara-category-icon img {
    max-width: 42px;
    max-height: 42px;
}
.sambara-category-icon i {
    font-size: 32px;
    color: var(--sambara-primary);
    line-height: 1;
}
.sambara-category-card {
    padding: 40px 28px;
}
.sambara-category-card h4 {
    font-size: 20px;
}
.sambara-category-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
}
.sambara-category-card p {
    font-size: 14px;
    margin-bottom: 14px;
}
.sambara-service-card {
    background: #fff;
    border: 1px solid var(--sambara-border);
    border-radius: var(--sambara-radius);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all .3s ease;
}
.sambara-service-card:hover {
    box-shadow: var(--sambara-shadow-lg);
    transform: translateY(-6px);
}
.sambara-service-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.sambara-service-body {
    padding: 24px;
}
.sambara-service-body h4 {
    font-size: 19px;
    margin-bottom: 10px;
}
.sambara-service-body h4 a {
    color: var(--sambara-dark);
}
.sambara-service-body h4 a:hover {
    color: var(--sambara-primary);
}
.sambara-service-body p {
    font-size: 14px;
    margin-bottom: 14px;
}

/*----- intro -----*/
.sambara-intro {
    background: var(--sambara-light);
}
.sambara-intro-img {
    position: relative;
    border-radius: var(--sambara-radius);
    overflow: hidden;
    box-shadow: var(--sambara-shadow-lg);
}
.sambara-intro-img img {
    width: 100%;
    display: block;
}
.sambara-intro-txt {
    padding-left: 34px;
}
.sambara-intro-txt .sambara-section-summary {
    margin-bottom: 26px;
}

/*----- approach -----*/
.sambara-approach-summary {
    position: sticky;
    top: 110px;
}
.sambara-approach-summary .sambara-section-summary {
    margin-bottom: 26px;
}
.sambara-approach-lists {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sambara-approach-item {
    display: flex;
    background: #fff;
    border: 1px solid var(--sambara-border);
    border-radius: var(--sambara-radius);
    padding: 22px;
    margin-bottom: 18px;
    transition: all .3s ease;
}
.sambara-approach-item:hover {
    box-shadow: var(--sambara-shadow);
    border-color: rgba(37, 99, 235, 0.35);
}
.sambara-approach-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--sambara-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 18px;
}
.sambara-approach-text h4 {
    font-size: 17px;
    margin-bottom: 6px;
}
.sambara-approach-text p {
    font-size: 14px;
    margin: 0;
}

/*----- statistics -----*/
.sambara-stats {
    background: linear-gradient(135deg, var(--sambara-dark) 0%, #14295B 60%, #1D3A7A 100%);
    padding: 70px 0 40px;
}
.sambara-stat-card {
    text-align: center;
    margin-bottom: 30px;
}
.sambara-stat-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #7EA6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
body.sambara-body .sambara-stat-card h3 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 4px;
}
.sambara-stat-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    margin: 0;
}

/*----- portfolio -----*/
.sambara-portfolio {
    background: var(--sambara-light);
}
.sambara-portfolio-card {
    background: #fff;
    border-radius: var(--sambara-radius);
    overflow: hidden;
    box-shadow: var(--sambara-shadow);
    transition: all .3s ease;
}
.sambara-portfolio-card:hover {
    box-shadow: var(--sambara-shadow-lg);
}
.sambara-portfolio-thumb img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.sambara-portfolio-body {
    padding: 22px;
}
.sambara-portfolio-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: var(--sambara-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.sambara-portfolio-body h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.sambara-portfolio-body h4 a {
    color: var(--sambara-dark);
}
.sambara-portfolio-body h4 a:hover {
    color: var(--sambara-primary);
}

/*----- testimonials -----*/
.sambara-testimonial-card {
    background: #fff;
    border: 1px solid var(--sambara-border);
    border-radius: var(--sambara-radius);
    padding: 30px;
    box-shadow: var(--sambara-shadow);
}
.sambara-testimonial-quote {
    color: rgba(37, 99, 235, 0.25);
    font-size: 30px;
    margin-bottom: 14px;
}
.sambara-testimonial-comment {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
}
.sambara-testimonial-author {
    display: flex;
    align-items: center;
}
/* owl-carousel forces .owl-item img to width:100%; keep avatars square */
.sambara-testimonial-author img,
.owl-carousel .owl-item .sambara-testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 14px;
}
.sambara-testimonial-author h6 {
    margin: 0 0 2px;
    font-size: 15px;
}
.sambara-testimonial-author span {
    font-size: 13px;
    color: var(--sambara-primary);
}

/*----- team -----*/
.sambara-team {
    background: var(--sambara-light);
}
.sambara-team-card {
    background: #fff;
    border-radius: var(--sambara-radius);
    overflow: hidden;
    box-shadow: var(--sambara-shadow);
}
.sambara-team-img {
    position: relative;
    overflow: hidden;
}
.sambara-team-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .4s ease;
}
.sambara-team-card:hover .sambara-team-img img {
    transform: scale(1.05);
}
.sambara-team-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 10px;
    background: linear-gradient(0deg, rgba(13, 27, 61, 0.85), rgba(13, 27, 61, 0));
    transition: bottom .3s ease;
}
.sambara-team-card:hover .sambara-team-socials {
    bottom: 0;
}
.sambara-team-socials li {
    margin: 0 6px;
}
.sambara-team-socials li a {
    color: #fff;
    font-size: 14px;
}
.sambara-team-socials li a:hover {
    color: #7EA6FF;
}
.sambara-team-info {
    text-align: center;
    padding: 18px;
}
.sambara-team-info h5 {
    font-size: 16px;
    margin-bottom: 2px;
}
.sambara-team-info span {
    font-size: 13px;
    color: var(--sambara-primary);
}

/*----- pricing -----*/
.sambara-pricing-card {
    background: #fff;
    border: 1px solid var(--sambara-border);
    border-radius: var(--sambara-radius);
    padding: 34px 28px;
    text-align: center;
    transition: all .3s ease;
}
.sambara-pricing-card:hover {
    box-shadow: var(--sambara-shadow-lg);
    border-color: rgba(37, 99, 235, 0.35);
}
.sambara-pricing-name {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: var(--sambara-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.sambara-pricing-price .sambara-pricing-amount {
    font-size: 42px;
    margin-bottom: 18px;
    /* was an <h1>; restore the weight/colour it inherited from the base heading rule */
    font-weight: 700;
    color: var(--sambara-dark);
    line-height: 1.2;
}
.sambara-pricing-features {
    margin-bottom: 24px;
}
.sambara-pricing-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sambara-pricing-features ul li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--sambara-border);
    font-size: 14px;
}
.sambara-pricing-features ul li:last-child {
    border-bottom: none;
}

/*----- blog -----*/
.sambara-blog {
    background: var(--sambara-light);
}
.sambara-blog-card {
    background: #fff;
    border-radius: var(--sambara-radius);
    overflow: hidden;
    box-shadow: var(--sambara-shadow);
    transition: all .3s ease;
}
.sambara-blog-card:hover {
    box-shadow: var(--sambara-shadow-lg);
}
.sambara-blog-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}
.sambara-blog-body {
    padding: 22px;
}
.sambara-blog-meta {
    font-size: 13px;
    color: var(--sambara-body);
    margin-bottom: 10px;
}
.sambara-blog-meta i {
    color: var(--sambara-primary);
    margin-right: 4px;
}
.sambara-blog-body h4 {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 10px;
}
.sambara-blog-body h4 a {
    color: var(--sambara-dark);
}
.sambara-blog-body h4 a:hover {
    color: var(--sambara-primary);
}
.sambara-blog-summary {
    font-size: 14px;
    margin-bottom: 14px;
}

/*----- CTA -----*/
.sambara-cta {
    padding: 40px 0 90px;
}
.sambara-cta-inner {
    background: linear-gradient(135deg, var(--sambara-primary) 0%, var(--sambara-primary-dark) 55%, var(--sambara-dark) 130%);
    border-radius: 22px;
    padding: 50px 55px;
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.35);
}
body.sambara-body .sambara-cta-inner h3 {
    color: #fff;
    font-size: 27px;
    line-height: 1.4;
    margin: 0;
}
.sambara-cta-btn-wrapper {
    text-align: right;
}
.sambara-cta-btn-wrapper .sambara-btn i {
    margin-left: 8px;
    margin-right: 0;
}

/*----- partners -----*/
.sambara-partners {
    padding: 30px 0 80px;
}
.sambara-partner-item {
    background: #fff;
    border: 1px solid var(--sambara-border);
    border-radius: var(--sambara-radius-sm);
    padding: 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 96px;
    filter: grayscale(1);
    opacity: .65;
    transition: all .3s ease;
}
.sambara-partner-item:hover {
    filter: grayscale(0);
    opacity: 1;
}
.sambara-partner-item img {
    max-height: 54px;
    max-width: 100%;
    width: auto !important;
    margin: 0 auto;
}

/*----- owl carousel spacing -----*/
.sambara-portfolio-carousel .owl-stage-outer,
.sambara-testimonial-carousel .owl-stage-outer,
.sambara-team-carousel .owl-stage-outer,
.sambara-pricing-carousel .owl-stage-outer,
.sambara-blog-carousel .owl-stage-outer {
    padding: 14px 6px 22px;
    margin: -14px -6px -8px;
}
.sambara-portfolio-carousel .owl-dots,
.sambara-testimonial-carousel .owl-dots,
.sambara-team-carousel .owl-dots,
.sambara-pricing-carousel .owl-dots,
.sambara-blog-carousel .owl-dots {
    text-align: center;
    margin-top: 16px;
}
.sambara-portfolio-carousel .owl-dots .owl-dot span,
.sambara-testimonial-carousel .owl-dots .owl-dot span,
.sambara-team-carousel .owl-dots .owl-dot span,
.sambara-pricing-carousel .owl-dots .owl-dot span,
.sambara-blog-carousel .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.25);
    display: block;
    margin: 0 4px;
    transition: all .3s ease;
}
.sambara-portfolio-carousel .owl-dots .owl-dot.active span,
.sambara-testimonial-carousel .owl-dots .owl-dot.active span,
.sambara-team-carousel .owl-dots .owl-dot.active span,
.sambara-pricing-carousel .owl-dots .owl-dot.active span,
.sambara-blog-carousel .owl-dots .owl-dot.active span {
    width: 24px;
    background: var(--sambara-primary);
}

/*----- breadcrumb (inner pages) -----*/
.sambara-breadcrumb {
    position: relative;
    background: linear-gradient(135deg, var(--sambara-dark) 0%, #14295B 60%, #1D3A7A 100%);
    padding: 70px 0;
    overflow: hidden;
}
.sambara-breadcrumb-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(126, 166, 255, 0.16), rgba(126, 166, 255, 0.02));
}
.sambara-breadcrumb-shape-1 {
    width: 320px;
    height: 320px;
    top: -140px;
    right: -80px;
}
.sambara-breadcrumb-shape-2 {
    width: 180px;
    height: 180px;
    bottom: -90px;
    left: 6%;
}
.sambara-breadcrumb-txt {
    position: relative;
    z-index: 2;
}
.sambara-breadcrumb-label {
    display: inline-block;
    color: #7EA6FF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
body.sambara-body .sambara-breadcrumb-txt h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 12px;
}
.sambara-breadcrumb-txt .breadcumb {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.sambara-breadcrumb-txt .breadcumb li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}
.sambara-breadcrumb-txt .breadcumb li + li::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.45);
}
.sambara-breadcrumb-txt .breadcumb li a {
    color: #fff;
}
.sambara-breadcrumb-txt .breadcumb li a:hover {
    color: #7EA6FF;
}

/*----- footer -----*/
.sambara-footer {
    background: linear-gradient(160deg, var(--sambara-dark) 0%, #10224C 100%);
    padding-top: 80px;
}
.sambara-footer .top-footer-section {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.sambara-footer .footer-logo-wrapper img {
    max-height: 54px;
    width: auto;
    margin-bottom: 20px;
}
body.sambara-body .sambara-footer h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.sambara-footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    border-radius: 3px;
    background: var(--sambara-primary);
}
.sambara-footer .footer-txt,
.sambara-footer p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}
.sambara-footer .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sambara-footer .footer-links li {
    margin-bottom: 10px;
}
.sambara-footer .footer-links li a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    transition: all .25s ease;
}
.sambara-footer .footer-links li a:hover {
    color: #7EA6FF;
    padding-left: 5px;
}
.sambara-footer .footer-newsletter input {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    padding: 11px 20px;
    color: #fff;
    margin-bottom: 12px;
}
.sambara-footer .footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}
.sambara-footer .footer-newsletter button {
    background: linear-gradient(135deg, var(--sambara-primary) 0%, var(--sambara-primary-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 11px 28px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}
.sambara-footer .footer-newsletter button:hover {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}
.sambara-footer .footer-contact-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sambara-footer .footer-contact-info ul li {
    display: flex;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    margin-bottom: 14px;
}
.sambara-footer .footer-contact-info ul li i {
    color: #7EA6FF;
    margin-right: 12px;
    margin-top: 4px;
}
.sambara-footer .copyright-section {
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}
.sambara-footer .copyright-section a {
    color: #7EA6FF;
}

/*----- sidebar subscribe widget: light text on the dark navy box -----*/
.sambara-body .subscribe-section {
    background: linear-gradient(160deg, var(--sambara-dark) 0%, #12275A 100%);
    border-radius: var(--sambara-radius);
    padding: 30px 26px;
}
.sambara-body .subscribe-section span {
    color: #7EA6FF;
    letter-spacing: 1px;
}
.sambara-body .subscribe-section h3 {
    color: #fff;
    margin-top: 8px;
}
.sambara-body .subscribe-section .subscribe-form input[type="email"] {
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #fff;
    padding: 12px 20px;
}
.sambara-body .subscribe-section .subscribe-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.5);
}
.sambara-body .subscribe-section .subscribe-form input[type="submit"] {
    background: var(--sambara-primary);
    border: none;
    border-radius: 50px;
    color: #fff;
    padding: 11px 30px;
    transition: all .3s ease;
}
.sambara-body .subscribe-section .subscribe-form input[type="submit"]:hover {
    box-shadow: 0 8px 20px rgba(37,99,235,0.35);
}

/*----- inner-page polish over style.css -----*/
.sambara-body .boxed-btn,
.sambara-body .hero-boxed-btn,
.sambara-body .intro-btn,
.sambara-body .readmore-btn,
.sambara-body .pricing-btn {
    border-radius: 50px;
}
.sambara-body .services-item,
.sambara-body .single-category,
.sambara-body .single-blog,
.sambara-body .single-pricing-table,
.sambara-body .single-testimonial,
.sambara-body .card {
    border-radius: var(--sambara-radius);
    overflow: hidden;
}
.sambara-body .form-control,
.sambara-body input[type="text"],
.sambara-body input[type="email"],
.sambara-body textarea {
    border-radius: var(--sambara-radius-sm);
}
.sambara-body .pagination .page-link {
    border-radius: 8px;
    margin: 0 3px;
    border-color: var(--sambara-border);
    color: var(--sambara-dark);
}
.sambara-body .pagination .page-item.active .page-link {
    background: var(--sambara-primary);
    border-color: var(--sambara-primary);
    color: #fff;
}
.sambara-body .back-to-top {
    background: linear-gradient(135deg, var(--sambara-primary) 0%, var(--sambara-primary-dark) 100%);
    border-radius: 12px;
}

/*----- responsive -----*/
@media (max-width: 1199px) {
    .sambara-hero-txt :is(h1,h2) {
        font-size: 40px;
    }
    .sambara-navbar .main-menu > li > a {
        padding: 26px 10px;
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    .sambara-topbar-contact span {
        margin-right: 12px;
    }
    .sambara-nav-cta {
        display: none;
    }
    .sambara-hero {
        min-height: 0;
        padding: 70px 0 120px;
    }
    /* tablet/mobile: photo sits behind a top-down scrim, text stacks over it */
    .sambara-hero-bg img {
        object-position: center;
    }
    /* lighter than it looks: dark navy text over this still clears 9:1 contrast,
       so the photo stays visible instead of washing out to flat white */
    .sambara-hero-scrim {
        background:
            linear-gradient(180deg,
                rgba(240, 245, 255, 0.93) 0%,
                rgba(240, 245, 255, 0.86) 48%,
                rgba(240, 245, 255, 0.62) 76%,
                rgba(255, 255, 255, 0.55) 100%);
    }
    .sambara-hero-txt {
        margin-bottom: 0;
    }
    .sambara-hero-txt :is(h1,h2) {
        font-size: 36px;
    }
    .sambara-hero-txt p {
        max-width: 100%;
    }
    .sambara-hero-dots {
        display: none;
    }
    .sambara-section {
        padding: 70px 0;
    }
    .sambara-section-summary {
        font-size: 28px;
    }
    .sambara-intro-txt {
        padding-left: 0;
        margin-top: 34px;
    }
    .sambara-approach-summary {
        position: static;
        margin-bottom: 34px;
    }
    .sambara-cta-inner {
        padding: 40px 30px;
        text-align: center;
    }
    .sambara-cta-inner h3 {
        margin-bottom: 24px;
    }
    .sambara-cta-btn-wrapper {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .sambara-topbar-inner {
        justify-content: center;
    }
    .sambara-topbar-contact {
        margin-bottom: 4px;
    }
    .sambara-hero-txt :is(h1,h2) {
        font-size: 29px;
    }
    .sambara-hero-trust-item {
        margin-right: 24px;
    }
    .sambara-hero-trust-item strong {
        font-size: 20px;
    }
    .sambara-section-summary {
        font-size: 24px;
    }
    .sambara-breadcrumb {
        padding: 50px 0;
    }
    .sambara-breadcrumb-txt h1 {
        font-size: 27px;
    }
    .sambara-features {
        margin-top: -30px;
    }
}
