/* ==========================================================================
   SANSO NETWORKS - MASTER STYLESHEET
   Brand Color Palette: Navy (#073e72), SANSO Blue (#0756a4 / #0872c9), Accent (#1caae2)
   Responsive Setup, Typography, Hero Slider, Mobile Drawer & Animations
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --sanso-blue: #0077b6; /* Brand Blue */
  --tab-active-bg: #0077b6;
  --tab-border-color: #ededed;
  --heading-color: #333333;
  --body-text: #666666;
  --primary-color:#058ab3;
  --secondary-color:#0dcaf0;
}

/* =========================================
   USER TYPOGRAPHY SETUP
========================================= */

/* Base Body Setup */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563; /* Slate grey for softer readability */
    background: #ffffff;
    overflow-x: hidden;
}


/* Nav links, Buttons & Overlines */
.nav-link,
.sanso-nav-link,
.btn,
.sanso-header-btn,
.sanso-bs-btn,
.sanso-story-btn,
.sanso-products-view-all,
.sanso-partnership-button,
.sanso-cta-btn,
.eyebrow,
.sanso-bs-label,
.sanso-story-label,
.sanso-products-label,
.sanso-leadership-label,
.sanso-partnership-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Hero & Section Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0F172A; /* Deep navy/charcoal for strong contrast */
    letter-spacing: -0.025em; /* Tight kerning gives a sharp tech look */
    line-height: 1.15;
}


/* =========================================
   SANSO HEADER
========================================= */

.sanso-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 9999;
}

.sanso-header-container {
    width: 100%;
    max-width: 1440px;
    min-height: 84px;
    margin: 0 auto;
    padding: 0 42px;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Logo */
.sanso-logo-wrap {
    flex-shrink: 0;
}

.sanso-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.sanso-logo-wrap img {
    width: 155px;
    height: auto;
    display: block;
}

/* Navigation */
.sanso-navigation {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.sanso-nav-item {
    height: 84px;
    display: flex;
    align-items: center;
    position: relative;
}

.sanso-nav-link {
    height: 84px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #202020;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all .25s ease;
}

.sanso-nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.sanso-nav-active {
    color: var(--primary-color);
}

.sanso-nav-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 10px;
}

.sanso-arrow {
    font-size: 14px;
    line-height: 1;
    color: #444444;
    margin-top: 0px;
    transition: transform .4s ease-in-out;
}

.sanso-nav-item:hover > .sanso-nav-link .sanso-arrow {
    transform: rotate(180deg);
}


/* =========================================
   DESKTOP DROPDOWN MENUS
========================================= */

.sanso-dropdown {
    position: absolute;
    top: 84px;
    left: 0;
    width: 285px;
    max-height: 75vh;
    overflow: visible;
    background: #ffffff;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
    z-index: 99999;
}

.sanso-nav-item:hover > .sanso-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sanso-dropdown-item {
    position: relative;
}

.sanso-dropdown-link {
    min-height: 46px;
    padding: 11px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #333333;
    background: #ffffff;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
    border-bottom: 1px solid #eeeeee;
    white-space: normal;
    transition: all .2s ease;
}

.sanso-dropdown-link:hover {
    color: #ffffff;
    background: var(--primary-color);
}

.sanso-dropdown-arrow {
    flex-shrink: 0;
    font-size: 17px;
    color: #777777;
}

.sanso-dropdown-link:hover .sanso-dropdown-arrow {
    color: #ffffff;
}

/* Level 2 Sub-Dropdown */
.sanso-sub-dropdown {
    position: absolute;
    top: -2px;
    left: 100%;
    width: 285px;
    max-height: 75vh;
    overflow-y: auto;
    background: #ffffff;
    border-top: 2px solid #0756a4;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: all .2s ease;
    z-index: 999999;
}

.sanso-dropdown-item:hover > .sanso-sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sanso-dropdown::-webkit-scrollbar,
.sanso-sub-dropdown::-webkit-scrollbar {
    width: 5px;
}

.sanso-dropdown::-webkit-scrollbar-thumb,
.sanso-sub-dropdown::-webkit-scrollbar-thumb {
    background: #0756a4;
    border-radius: 10px;
}

/* Header Get A Quote Button */
.sanso-header-action {
    flex-shrink: 0;
}

.sanso-header-btn {
    min-width: 115px;
    height: 43px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1caae2;
    color: #ffffff;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}

.sanso-header-btn:hover {
    background: #0756a4;
    color: #ffffff;
}

/* Hamburger Toggle Button */
.sanso-menu-toggle {
    width: 42px;
    height: 42px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.sanso-menu-toggle span {
    width: 23px;
    height: 2px;
    background: #073e72;
    border-radius: 3px;
}


/* =========================================
   MOBILE MENU DRAWER & ACCORDION (SANSO BLUE BRAND THEME)
========================================= */

.sanso-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.65);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sanso-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sanso-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    /* SANSO Brand Navy & Blue Gradient Theme */
    background: #073e72;
    background: linear-gradient(180deg, #073e72 0%, #052c54 100%);
    z-index: 99999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.sanso-mobile-drawer.active {
    transform: translateX(0);
}

.sanso-drawer-header {
    height: 60px;
    padding: 0 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #052a50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.sanso-drawer-logo img {
    height: 36px;
    width: auto;
    /* filter: brightness(0) invert(1); */
}

.sanso-drawer-close {
    width: 54px;
    height: 60px;
    background: #000000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s ease;
}

.sanso-drawer-close:hover {
    background: #111111;
}

.sanso-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.sanso-drawer-body::-webkit-scrollbar {
    width: 5px;
}

.sanso-drawer-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.sanso-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sanso-mobile-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sanso-mobile-link-wrap,
.sanso-mobile-sublink-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sanso-mobile-link,
.sanso-mobile-sublink {
    display: block;
    flex: 1;
    padding: 14px 18px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.sanso-mobile-link:hover,
.sanso-mobile-sublink:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sanso-submenu-toggle {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.sanso-toggle-icon {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.25s ease;
}

.sanso-submenu-toggle.active .sanso-toggle-icon {
    transform: rotate(90deg);
}

.sanso-mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #052f5a;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sanso-mobile-submenu.open {
    display: block;
}

.sanso-mobile-subitem {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sanso-mobile-sublink {
    font-size: 13px;
    font-weight: 600;
    padding: 12px 18px 12px 25px;
    text-transform: none;
    color: rgba(255, 255, 255, 0.95);
}

.sanso-mobile-nested-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #042345;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sanso-mobile-nested-menu.open {
    display: block;
}

.sanso-mobile-nested-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sanso-mobile-nested-menu a {
    display: block;
    padding: 10px 18px 10px 36px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.sanso-mobile-nested-menu a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.sanso-drawer-action {
    padding: 18px;
    margin-top: auto;
    background: #042445;
}

.sanso-drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    background: #1caae2;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.sanso-drawer-btn:hover {
    background: #0756a4;
}


/* =========================================
   SANSO BOOTSTRAP HERO
========================================= */

.sanso-bs-hero {
    width: 100%;
    height: 610px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.sanso-bs-hero .carousel,
.sanso-bs-hero .carousel-inner,
.sanso-bs-hero .carousel-item {
    width: 100%;
    height: 100%;
}

.sanso-bs-hero-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 70% center;
}

.sanso-bs-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #d4dbe3 0%, #e1eaf5 22%, rgb(233 236 240 / 95%) 34%, rgba(200, 214, 229, 0.70) 45%, rgba(200, 214, 229, 0.25) 58%, rgba(255, 255, 255, 0) 72%);
}

.sanso-bs-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 10 !important;
    display: flex;
    align-items: center;
}

.sanso-bs-text {
    width: 510px;
    position: relative;
    z-index: 15 !important;
}

.sanso-bs-label {
    display: block;
    margin-bottom: 14px;
    color: #1676bb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .6px;
}

.sanso-bs-text span {
    margin: 0 0 17px;
    color: var(--primary-color);
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.2px;
}

.sanso-bs-text p {
    max-width: 510px;
    margin: 0 0 25px;
    color: #222222;
    font-size: 15px;
    line-height: 1.65;
}

.sanso-bs-btn {
    height: 43px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: .25s ease;
}

.sanso-bs-btn span {
    font-size: 18px;
}

.sanso-bs-btn:hover {
    background: #073e72;
    color: #ffffff;
}

.sanso-bs-hero .carousel-control-prev,
.sanso-bs-hero .carousel-control-next {
    width: 55px;
    z-index: 20;
}

.sanso-bs-hero .carousel-control-prev-icon,
.sanso-bs-hero .carousel-control-next-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(20%) saturate(1200%) hue-rotate(170deg);
}

.sanso-bs-hero .carousel-indicators {
    z-index: 20;
    margin-bottom: 15px;
    gap: 5px;
}

.sanso-bs-hero .carousel-indicators button {
    width: 9px;
    height: 9px;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background-color: #d5dce2;
    opacity: 1;
    transition: .25s ease;
}

.sanso-bs-hero .carousel-indicators button.active {
    width: 24px;
    border-radius: 10px;
    background-color: #1676bb;
}



/* =========================================
   SANSO OUR STORY SECTION
========================================= */

.sanso-story-section {
    width: 100%;
    background: #e3e2e2;
    padding: 70px 0 75px;
}

.sanso-story-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 42px;
    display: grid;
    grid-template-columns: 38% 62%;
    align-items: stretch;
}

.sanso-story-content {
    padding: 8px 55px 8px 0;
}

.sanso-story-label {
    display: block;
    margin-bottom: 15px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .7px;
}

.sanso-story-title {
    margin: 0 0 24px;
    color: var(--primary-color);
    font-size: 31px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.7px;
}

.sanso-story-text {
    max-width: 500px;
    margin: 0 0 21px;
    color: #000;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}

.sanso-story-btn {
    height: 40px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--primary-color);
    background: #ffffff;
    border: 1px solid #8db7df;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    transition: all .25s ease;
}

.sanso-story-btn span {
    font-size: 17px;
    transition: transform .25s ease;
}

.sanso-story-btn:hover {
    background: #0756a4;
    border-color: #0756a4;
    color: #ffffff;
}

.sanso-story-btn:hover span {
    transform: translateX(4px);
}

.sanso-story-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    transition: all 0.5s ease-in-out;
    /* border-top: 1px solid #e0e5ea; */
    /* border-left: 1px solid #e0e5ea; */
    /* gap: 10px; */
}

.sanso-story-card {
    min-height: 185px;
    padding: 28px 30px 24px;
    background: #edeeee;
    /* border-right: 1px solid #e0e5ea; */
    /* border-bottom: 1px solid #e0e5ea; */
    transition: all .5s ease-in-out;
    gap: 4px;
}

.sanso-story-card:hover {
    background: #f8fbfe;
}

.sanso-story-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 11px;
    color: var(--primary-color);
}

.sanso-story-icon svg {
    width: 100%;
    height: 100%;
}

.sanso-story-card h3 {
    margin: 0 0 9px;
    color: var(--primary-color);
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}

.sanso-story-card p {
    max-width: 330px;
    margin: 0;
    color: #4B5563;
    font-size: 14.5px;
    line-height: 1.65;
}


/* =========================================
   SANSO COUNTER SECTION (ANIMATED STATS)
========================================= */

.sanso-counter-section {
    width: 100%;
    padding: 0 0 55px;
    background: #ffffff;
}

.sanso-counter-container {
    width: calc(100% - 84px);
    max-width: 1356px;
    min-height: 105px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    background: var(--primary-color);
    border-radius: 4px;
    overflow: hidden;
}

.sanso-counter-item {
    min-height: 72px;
    padding: 8px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    color: #ffffff;
    transition: background .25s ease;
}

.sanso-counter-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 1px;
    height: 56px;
    background: rgba(255,255,255,.20);
}

.sanso-counter-icon {
    width: 29px;
    height: 29px;
    margin-bottom: 4px;
    color: #ffffff;
}

.sanso-counter-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sanso-counter-number {
    color: #ffffff;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.4px;
}

.sanso-counter-pan {
    font-size: 22px;
}

.sanso-counter-label {
    margin-top: 3px;
    color: rgba(255,255,255,.85);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

.sanso-counter-item:hover {
    background: rgba(255,255,255,.04);
}


/* =========================================
   SANSO PRODUCTS / SOLUTIONS SECTION
========================================= */

.sanso-products-section {
    width: 100%;
    padding: 60px 0;
    background: #ffffff;
}

.sanso-products-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 35px;
}

.sanso-products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.sanso-products-label {
    display: block;
    margin-bottom: 8px;
    color: #0872c9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
}

.sanso-products-heading h2 {
    max-width: 650px;
    margin: 0;
    color: var(--primary-color);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.7px;
}

.sanso-products-view-all {
    height: 39px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
    color: #0756a4;
    border: 1px solid #9cc4e6;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    transition: .25s ease;
}

.sanso-products-view-all span {
    font-size: 16px;
    transition: .25s ease;
}

.sanso-products-view-all:hover {
    color: #ffffff;
    background: #0756a4;
    border-color: #0756a4;
}

.sanso-products-view-all:hover span {
    transform: translateX(4px);
}

.sanso-products-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e6ebf0;
}

.sanso-products-tab {
    padding: 8px 16px;
    border: 0;
    border-radius: 3px;
    background: transparent;
    color: #68737e;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.sanso-products-tab:hover {
    color: #0756a4;
    background: #f1f7fc;
}

.sanso-products-tab.active {
    color: #ffffff;
    background: var(--primary-color);
}

.sanso-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sanso-product-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.sanso-product-card:hover {
    transform: translateY(-6px);
    border-color: #c9ddec;
    box-shadow: 0 14px 35px rgba(7, 62, 114, .10);
}

.sanso-product-image {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #f3f7fa;
}

.sanso-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.sanso-product-card:hover .sanso-product-image img {
    transform: scale(1.06);
}

.sanso-product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    color: #0756a4;
    background: rgba(255,255,255,.94);
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.sanso-product-content {
    position: relative;
    padding: 21px 20px 20px;
}

.sanso-product-number {
    position: absolute;
    top: 20px;
    right: 18px;
    color: #dce8f2;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

.sanso-product-content h3 {
    max-width: 190px;
    margin: 0 0 10px;
    color: var(--primary-color);
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}

.sanso-product-content p {
    min-height: 65px;
    margin: 0 0 17px;
    color: #4B5563;
    font-size: 14.5px;
    line-height: 1.65;
}

.sanso-product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
}

.sanso-product-link span {
    font-size: 15px;
    transition: .25s ease;
}

.sanso-product-link:hover span {
    transform: translateX(4px);
}


/* =========================================
   SANSO LEADERSHIP SECTION
========================================= */

.sanso-leadership-section {
    width: 100%;
    padding: 45px 0 65px;
    background: #ffffff;
}

.sanso-leadership-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 42px;
}

.sanso-leadership-heading {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.sanso-leadership-label {
    display: block;
    margin-bottom: 8px;
    color: #0872c9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .7px;
}

.sanso-leadership-heading h2 {
    margin: 0 0 9px;
    color: var(--primary-color);
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.4px;
}

.sanso-leadership-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #4B5563;
    font-size: 14.5px;
    line-height: 1.6;
}

.sanso-leadership-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.sanso-leadership-card {
    min-width: 0;
    background: #f8f9fa;
    border: 1px solid #edf0f3;
    border-radius: 4px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.sanso-leadership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(7, 62, 114, .10);
}

.sanso-leadership-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #f1f3f5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.sanso-leadership-image img {
    width: 59%;
    height: 101%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform .35s ease;
}

.sanso-leadership-card:hover .sanso-leadership-image img {
    transform: scale(1.03);
}

.sanso-leadership-info {
    padding: 13px 15px 15px;
    background: #ffffff;
}

.sanso-leadership-info h3 {
    margin: 0 0 3px;
    color: var(--primary-color);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.sanso-leadership-role {
    display: block;
    margin-bottom: 9px;
    color: #0872c9;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
}

.sanso-leadership-info p {
    min-height: 42px;
    margin: 0 0 10px;
    color: #4B5563;
    font-size: 15px;
    line-height: 1.55;
    text-align: start;
}

.sanso-leadership-link {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0872c9;
    color: #ffffff;
    border-radius: 2px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    transition: background .2s ease;
}

.sanso-leadership-link:hover {
    background: #073e72;
}


/* =========================================
   SANSO PARTNERSHIP SECTION
========================================= */

.sanso-partnership-section {
    width: 100%;
    padding: 55px 0 48px;
    background: #f8f9fb;
}

.sanso-partnership-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 42px;
}

.sanso-partnership-heading {
    text-align: center;
    margin-bottom: 35px;
}

.sanso-partnership-label {
    display: block;
    margin-bottom: 9px;
    color: #0872c9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .7px;
}

.sanso-partnership-heading h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.4px;
}

.sanso-partnership-logos {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
}

.sanso-partner-item {
    min-height: 85px;
    padding: 8px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #d9dde2;
}

.sanso-partner-item:last-child {
    border-right: 0;
}

.sanso-partner-item img {
    max-width: 145px;
    max-height: 74px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform .25s ease;
}

.sanso-partner-item:hover img {
    transform: scale(1.04);
}

.sanso-partnership-button-wrap {
    margin-top: 27px;
    display: flex;
    justify-content: center;
}

.sanso-partnership-button {
    height: 38px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #0756a4;
    background: transparent;
    border: 1px solid #8db7df;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    transition: all .25s ease;
}

.sanso-partnership-button span {
    font-size: 17px;
    line-height: 1;
    transition: transform .25s ease;
}

.sanso-partnership-button:hover {
    color: #ffffff;
    background: #0756a4;
    border-color: #0756a4;
}

.sanso-partnership-button:hover span {
    transform: translateX(4px);
}


/* =========================================
   SANSO CTA SECTION
========================================= */

.sanso-cta-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    background: linear-gradient(135deg, #05627e 0%, #052c52 100%);
}

.sanso-cta-container {
    width: 100%;
    max-width: 1100px;
    min-height: 100px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.sanso-cta-content {
    max-width: 650px;
}

.sanso-cta-content h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.4px;
}

.sanso-cta-content p {
    max-width: 600px;
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 14.5px;
    line-height: 1.65;
}

.sanso-cta-action {
    flex-shrink: 0;
    margin-left: 40px;
}

.sanso-cta-btn {
    min-width: 122px;
    height: 40px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffffff;
    color: #0756a4;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 18px rgba(0,0,0,.12);
    transition: all .25s ease;
}

.sanso-cta-btn span {
    font-size: 17px;
    line-height: 1;
    transition: transform .25s ease;
}

.sanso-cta-btn:hover {
    background: #f1f7fc;
    color: #073e72;
}

.sanso-cta-btn:hover span {
    transform: translateX(4px);
}


/* =========================================
   SANSO COMPACT FOOTER
========================================= */

.sanso-footer {
    width: 100%;
    background: #0d0d0d;
    color: #073e72;
}

.sanso-footer-main {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 38px 35px 32px;
    display: grid;
    grid-template-columns: 1.55fr 1fr 1.2fr 1.15fr;
    column-gap: 45px;
}

.sanso-footer-about {
    padding-right: 20px;
}

.sanso-footer-brand {
    display: inline-block;
    width: 195px;
    margin-bottom: 13px;
}

.sanso-footer-brand img {
    width: 100%;
    height: auto;
    display: block;
}

.sanso-footer-about > p {
    max-width: 335px;
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

.sanso-footer-col h3 {
    position: relative;
    margin: 2px 0 18px;
    padding-bottom: 9px;
    color: #0dcaf0;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
}

.sanso-footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: #0872c9;
    border-radius: 5px;
}

.sanso-footer-links {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.sanso-footer-links li {
    margin: 0 0 9px !important;
    padding: 0 !important;
    list-style: none !important;
}

.sanso-footer-links li a {
    display: inline-block;
    padding: 0 !important;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
    text-decoration: none;
    transition: .2s ease;
}

.sanso-footer-links li a:hover {
    color: #0dcaf0;
    transform: translateX(2px);
}

.sanso-footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.sanso-footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f7fb;
    border: 1px solid #d8e5ef;
    border-radius: 4px;
    text-decoration: none;
    transition: .2s ease;
}

.sanso-footer-social svg {
    width: 21px;
    height: 21px;
    fill: var(--primary-color);
}

.sanso-footer-social a:hover {
    background: #0872c9;
    border-color: #0872c9;
}

.sanso-footer-social a:hover svg {
    fill: #ffffff;
}

.sanso-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sanso-footer-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sanso-footer-contact-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef6fc;
    border-radius: 4px;
}

.sanso-footer-contact-icon svg {
    width: 21px;
    height: 21px;
    fill: var(--primary-color);
}

.sanso-footer-contact-row span {
    display: block;
    margin-bottom: 2px;
    color: #babdc1;
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 5px;
}

.sanso-footer-contact-row a,
.sanso-footer-contact-row p {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
    text-decoration: none;
}

.sanso-footer-contact-row a:hover {
    color: #0872c9;
}

.sanso-footer-bottom {
    width: 100%;
    border-top: 1px solid #e5e9ee;
    background: #0d0d0d;
}

.sanso-footer-bottom-inner {
    width: 100%;
    max-width: 1350px;
    min-height: 42px;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sanso-footer-bottom-inner p {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

.sanso-footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sanso-footer-legal a,
.sanso-footer-legal span {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.sanso-footer-legal a:hover {
    color: #0872c9;
}


/* =========================================
   SCROLL REVEAL UP ANIMATIONS
========================================= */

.sanso-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.sanso-reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* =========================================
   RESPONSIVE BREAKPOINTS (MOBILE PERFECT REFLECTION)
========================================= */

@media (max-width: 1150px) {
    .sanso-header-container {
        padding: 0 25px;
        gap: 20px;
    }
    .sanso-navigation {
        gap: 17px;
    }
    .sanso-nav-link {
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .sanso-header-container {
        min-height: 72px;
        padding: 0 20px;
    }
    .sanso-navigation,
    .sanso-header-action {
        display: none;
    }
    .sanso-menu-toggle {
        display: flex;
        margin-left: auto;
    }
    
    /* Hero Banner Mobile Optimization */
    .sanso-bs-hero {
        height: auto;
        min-height: 460px;
    }
    .sanso-bs-hero-img {
        object-position: center;
    }
    .sanso-bs-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 255, 255, 0.86) 65%,
            rgba(255, 255, 255, 0.35) 100%
        );
    }
    .sanso-bs-content {
        padding: 40px 22px;
        align-items: center;
    }
    .sanso-bs-text {
        width: 100%;
    }
    .sanso-bs-text h1 {
        font-size: 32px;
        line-height: 1.15;
    }
    .sanso-bs-text p {
        font-size: 14.5px;
    }
    
    /* Our Story Section Mobile */
    .sanso-story-container {
        padding: 0 25px;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sanso-story-content {
        padding-right: 0;
    }
    
    /* Counter Section Mobile */
    .sanso-counter-container {
        width: calc(100% - 40px);
        grid-template-columns: repeat(3, 1fr);
        padding: 15px 10px;
    }
    .sanso-counter-item:nth-child(3)::after {
        display: none;
    }
    
    /* Products Section Mobile */
    .sanso-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Leadership Section Mobile */
    .sanso-leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Partnerships Mobile */
    .sanso-partnership-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* CTA Section Mobile */
    .sanso-cta-container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    /* Footer Mobile */
    .sanso-footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 35px 25px;
    }
}

@media (max-width: 600px) {
    .sanso-header-container {
        min-height: 64px;
        padding: 0 16px;
    }
    .sanso-logo-wrap img {
        width: 135px;
    }
    
    /* Hero Banner Smartphone View */
    .sanso-bs-hero {
        height: auto;
        min-height: 180px;
    }
    .sanso-bs-content {
        padding: 35px 18px 45px;
    }
    .sanso-bs-text h1 {
        font-size: 27px;
        line-height: 1.18;
    }
    .sanso-bs-text p {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    /* Story Section Smartphone View */
    .sanso-story-section {
        padding: 45px 0;
    }
    .sanso-story-container {
        padding: 0 18px;
    }
    .sanso-story-title {
        font-size: 25px;
    }
    .sanso-story-cards {
        grid-template-columns: 1fr;
    }
    .sanso-story-card {
        min-height: auto;
        padding: 22px 20px;
    }

    /* Counter Section Smartphone View */
    .sanso-counter-section {
        padding-bottom: 40px;
    }
    .sanso-counter-container {
        width: calc(100% - 30px);
        grid-template-columns: repeat(2, 1fr);
        padding: 10px;
    }
    .sanso-counter-item {
        min-height: 80px;
        padding: 10px 12px;
    }
    .sanso-counter-item::after {
        display: none;
    }
    .sanso-counter-number {
        font-size: 22px;
    }
    .sanso-counter-pan {
        font-size: 19px;
    }

    /* Products Tabs Smartphone View */
    .sanso-products-section {
        padding: 45px 0;
    }
    .sanso-products-container {
        padding: 0 18px;
    }
    .sanso-products-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .sanso-products-heading h2 {
        font-size: 24px;
    }
    .sanso-products-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
    }
    .sanso-products-grid {
        grid-template-columns: 1fr;
    }

    /* Leadership Smartphone View */
    .sanso-leadership-section {
        padding: 40px 0 50px;
    }
    .sanso-leadership-container {
        padding: 0 18px;
    }
    .sanso-leadership-heading h2 {
        font-size: 24px;
    }
    .sanso-leadership-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .sanso-leadership-image {
        height: 210px;
    }

    /* Partnership Smartphone View */
    .sanso-partnership-section {
        padding: 40px 0;
    }
    .sanso-partnership-container {
        padding: 0 18px;
    }
    .sanso-partnership-heading h2 {
        font-size: 23px;
    }
    .sanso-partnership-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    .sanso-partner-item {
        min-height: 75px;
        padding: 10px 15px;
        border-right: 1px solid #d9dde2;
        border-bottom: 1px solid #d9dde2;
    }
    .sanso-partner-item:nth-child(2n) {
        border-right: 0;
    }
    .sanso-partner-item:nth-child(5),
    .sanso-partner-item:nth-child(6) {
        border-bottom: 0;
    }

    /* CTA Section Smartphone View */
    .sanso-cta-section {
        padding: 35px 0;
    }
    .sanso-cta-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 18px;
    }
    .sanso-cta-content h2 {
        font-size: 23px;
    }
    .sanso-cta-action {
        margin-left: 0;
    }

    /* Footer Smartphone View */
    .sanso-footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 35px 18px;
    }
    .sanso-footer-about {
        padding-right: 0;
    }
    .sanso-footer-bottom-inner {
        min-height: auto;
        padding: 15px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .sanso-partner-item img{
        max-width: 100px;
    }
}


.solutions-section {
  width: 100%;
  padding: 60px 0;
  background-color: #e1edee;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.solutions-heading {
  font-size: 35px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  text-align: left;
}

.solutions-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-text);
  margin: 0 0 35px 0;
  text-align: left;
}

/* Tab Bar */
.tabs-wrapper {
  width: 100%;
  border: 1px solid var(--tab-border-color);
  border-bottom: none;
  background-color: #ffffff;
  margin-bottom: 14px;
}

.tabs-list {
  display: flex;
  width: 100%;
}

.tab-btn {
  flex: 1;
  padding: 16px 10px;
  font-size: 15px;
  font-weight: 700;
  color: #222222;
  background-color: #e9ecef7a;
  border: none;
  border-right: 1px solid #ddd;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn:hover:not(.active) {
  background-color: #f9f9f9;
}

.tab-btn.active {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Panel & Content */
.tabs-content {
  width: 100%;
}

.panel {
  display: none;
  width: 100%;
}

.panel.active {
  display: block;
}

.panel-image {
  width: 100%;
  line-height: 0;
}

.panel-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Bottom Text Area */
.panel-info {
  padding: 24px 0;
  text-align: left;
}

.panel-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 8px 0;
}

.panel-info p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body-text);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .solutions-heading {
    font-size: 32px;
  }
  
  .tabs-list {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    flex: 1 1 33.33%;
    border-bottom: 1px solid var(--tab-border-color);
  }
  
  .panel-image img {
    height: 280px;
  }
}

@media (max-width: 580px) {
  .tab-btn {
    flex: 1 1 100%;
  }
}



:root {
  --cisco-blue: #0056b3;
  --cisco-primary: #0077b6;
  --cisco-dark: #002d62;
  --cisco-text-dark: #1e293b;
  --cisco-body: #555555;
  --cisco-border: #f1f5f9;
}

.about-cisco-section {
  width: 100%;
  padding: 60px 0;
  background-color: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
}

.cisco-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 50px;
  align-items: stretch;
}

/* ---------------- LEFT VISUAL COLUMN ---------------- */
.cisco-visual-col {
  position: relative;
}

.visual-inner {
  position: relative;
  height: 100%;
  min-height: 600px;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1000&q=80') center center / cover no-repeat;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  clip-path: polygon(0 0, 85% 0, 100% 42%, 88% 100%, 0 100%);
}

.visual-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214, 236, 255, 0.82) 0%, rgba(144, 202, 249, 0.45) 55%, rgba(0, 45, 98, 0.6) 100%);
  pointer-events: none;
}

/* Floating Tech Icon Badges */
.floating-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid #90caf9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cisco-primary);
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.floating-icon svg {
  width: 22px;
  height: 22px;
}

.icon-security { top: 22%; left: 6%; }
.icon-wifi { top: 12%; right: 22%; }

/* Cisco Premier Partner Card */
.cisco-badge-card {
  position: absolute;
  top: 16%;
  left: 10%;
  width: 152px;
  height: 159px;
  background: linear-gradient(180deg, #0dcaf0 0%, #0077c8 100%);
  border-radius: 12px;
  z-index: 3;
  padding: 10px 35px 16px;;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 36px rgba(0, 75, 145, 0.35);
  color: #ffffff;
}

.cisco-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cisco-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 28px;
}

.cisco-bars .bar {
  width: 4.5px;
  background: #ffffff;
  border-radius: 2px;
}

.cisco-bars .h-sm { height: 12px; }
.cisco-bars .h-md { height: 20px; }
.cisco-bars .h-lg { height: 28px; }

.cisco-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
}

.cisco-partner-tag {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.cisco-partner-tag span {
  font-size: 22px;
  font-weight: 300;
}

.cisco-partner-tag strong {
  font-size: 24px;
  font-weight: 700;
}

/* Trust Ribbon Box */
.trust-banner {
  position: relative;
  z-index: 3;
  background: #00254d;
  color: #ffffff;
  padding: 26px 48px;
  margin: 0;
}

.trust-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.trust-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #0090ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon-circle svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

.trust-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.trust-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

/* ---------------- RIGHT CONTENT COLUMN ---------------- */
.cisco-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background-color: var(--cisco-blue);
}

.eyebrow-text {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--cisco-blue);
  letter-spacing: 1.5px;
}

.main-cisco-heading {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-color);
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.main-cisco-heading .blue-text {
  color: #000;
}

.cisco-heading-underline {
  width: 48px;
  height: 2px;
  background-color: #0066cc;
  margin-bottom: 30px;
}

/* Features List */
.cisco-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.cisco-feature-item:last-of-type {
  border-bottom: none;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #eaf4ff;
  border: 1px solid #cce3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0066cc;
  margin-top: 2px;
}

.feature-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.feature-text p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--cisco-body);
  margin: 0;
}

.feature-text em {
  font-style: italic;
  color: #334155;
}

.inline-link {
  color: #0066cc;
  font-weight: 700;
  text-decoration: none;
}

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

/* Bottom Action Row */
.cisco-action-row {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 30px;
}

.cisco-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 14px 28px;
  /* border-radius: 4px; */
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cisco-btn:hover {
  background-color: #004c99;
  transform: translateY(-1px);
}

.btn-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-arrow svg {
  width: 12px;
  height: 12px;
}

.cisco-help-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.help-phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #002d62;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002d62;
}

.help-phone-icon svg {
  width: 20px;
  height: 20px;
}

.help-text {
  display: flex;
  flex-direction: column;
}

.help-label {
  font-size: 13px;
  color: #64748b;
}

.help-title {
  font-size: 16px;
  font-weight: 700;
  color: #002d62;
}

/* ---------------- SANSO REVEAL ANIMATION ---------------- */
.sanso-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sanso-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- RESPONSIVE BREAKPOINTS ---------------- */
@media (max-width: 1024px) {
  .cisco-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .visual-inner {
    min-height: 520px;
    clip-path: none;
    border-radius: 8px;
  }
}

@media (max-width: 640px) {
  .main-cisco-heading {
    font-size: 28px;
  }

  .cisco-badge-card {
    position: relative;
    top: auto;
    left: auto;
    margin: 30px auto;
    width: 80%;
  }

  .cisco-action-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}



.why-choose-us-section {
  position: relative;
  background-color: #333c43;
  padding: 60px 20px;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #ffffff;
}

/* Background Ambient Glows */
.bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.bg-glow-left {
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(0, 119, 182, 0.4) 0%, transparent 70%);
  display: none;
}

.bg-glow-right {
  bottom: -10%;
  right: -10%;
  background: radial-gradient(circle, rgba(13, 202, 240, 0.25) 0%, transparent 70%);
  display: none;
}

.why-choose-us-section .container {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  z-index: 2;
}

/* Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--secondary-color);
}

.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background-color: var(--secondary-color);
}

.title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0;
}

/* 4-Column Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  /* border: 1px solid rgba(255, 255, 255, 0.12); */
  border-radius: 12px;
  padding: 36px 26px;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--secondary-color);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(13, 202, 240, 0.2);
}

.card-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: #3c4547;
  /* border: 1px solid rgba(13, 202, 240, 0.35); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.card-icon-box svg {
  width: 26px;
  height: 26px;
}

.feature-card:hover .card-icon-box {
  /* background: var(--secondary-color); */
  color: var(--primary-color);
  transform: scale(1.05);
}

.card-title {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.35;
}

.card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #cbd5e1;
  margin: 0;
}

/* Stats Counter Bar */
.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px 40px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #cbd5e1;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.12);
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .why-choose-us-section {
    padding: 70px 16px;
  }

  .title {
    font-size: 28px;
  }

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

  .stats-container {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
}



.testimonial-section {
  position: relative;
  background-color: #f8fafc;
  padding: 60px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
}

.testimonial-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header */
.testimonial-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.testimonial-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--sanso-blue);
}

.testimonial-header .eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background-color: var(--sanso-blue);
}

.testimonial-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.testimonial-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body-text);
  margin: 0;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--tab-border-color);
  border-radius: 14px;
  padding: 12px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(7, 62, 114, 0.04);
  transition: all 0.35s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 119, 182, 0.3);
  box-shadow: 0 20px 40px rgba(7, 62, 114, 0.08);
}

/* Featured / Accent Card Highlight */
.testimonial-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border: 1.5px solid var(--sanso-blue);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.quote-badge {
  width: 38px;
  height: 38px;
  background-color: rgba(0, 119, 182, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sanso-blue);
}

.quote-badge svg {
  width: 20px;
  height: 20px;
}

.star-rating {
  color: #f59e0b;
  font-size: 17px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--heading-color);
  margin: 0 0 30px;
  flex-grow: 1;
}

/* Client Identity Footer */
.client-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.avatar-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--secondary-color);
  flex-shrink: 0;
}

.avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-meta {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 3px;
}

.client-role {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 70px 16px;
  }

  .testimonial-title {
    font-size: 28px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Ticker Outer Mask */
.ticker-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  /* mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); */
}

/* Continuous Sliding Track */
.ticker-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: infiniteScroll 25s linear infinite;
}

/* Pause on user hover */
.ticker-track:hover {
  animation-play-state: paused;
}

/* Set fixed card width inside ticker */
.ticker-track .testimonial-card {
  width: 360px;
  flex-shrink: 0;
}

/* Keyframe for 50% loop shift */
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .ticker-track .testimonial-card {
    width: 300px;
  }
}





/* Light Background for the Section */
.faq-section {
  position: relative;
  background-color: #e6ecf3;
  padding: 60px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.faq-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* ---------------- LEFT COLUMN (Clean Light UI) ---------------- */
.faq-left-col .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--sanso-blue);
}

.faq-left-col .eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background-color: var(--sanso-blue);
}

.faq-heading {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary-color);
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}

.faq-heading .highlight {
  color: #000;
}

.faq-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-text);
  margin: 0 0 35px;
}

/* Direct Support Box */
.faq-support-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(7, 62, 114, 0.04);
}

.support-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: rgba(0, 119, 182, 0.1);
  color: var(--sanso-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-icon svg {
  width: 22px;
  height: 22px;
}

.support-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 4px;
}

.support-info p {
  font-size: 13.5px;
  color: var(--body-text);
  line-height: 1.5;
  margin: 0 0 10px;
}

.support-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--sanso-blue);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.support-link:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

/* ---------------- RIGHT COLUMN (Dark Blue Accordion Cards) ---------------- */
.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: var(--primary-color) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(7, 62, 114, 0.12);
}

.accordion-item:hover {
  border-color: rgba(13, 202, 240, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7, 62, 114, 0.18);
}

.accordion-item.active {
  border-color: var(--secondary-color);
  box-shadow: 0 12px 30px rgba(7, 62, 114, 0.25), 0 0 20px rgba(13, 202, 240, 0.15);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.accordion-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.2s ease;
  line-height: 1.45;
}

.accordion-item.active .accordion-title {
  color: #fff;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.accordion-icon svg {
  width: 14px;
  height: 14px;
}

.accordion-item.active .accordion-icon {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

.accordion-item.active .vertical-line {
  display: none;
}

/* Accordion Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-body {
  padding: 0 26px 26px 20px !important;
  font-size: 14.5px;
  line-height: 1.7;
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
  padding-top: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 70px 16px;
  }

  .faq-heading {
    font-size: 30px;
  }

  .accordion-header {
    padding: 18px 20px;
  }

  .accordion-title {
    font-size: 15px;
  }
  
  .accordion-body {
    padding: 0 20px 20px 20px !important;
  }
}




/* ---------------- FIXED BOTTOM LEFT ACTIONS ---------------- */
.sanso-sticky-actions {
  position: fixed;
  left: 20px;
  bottom: 10%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.sticky-action-item {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  outline: none;
}

.sticky-action-item:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

/* Individual Icon Colors */
.item-phone {
  background-color: var(--primary-color); /* Matches your dark brand blue */
}

.item-whatsapp {
  background-color: #25d366; /* Official WhatsApp green */
}

.item-enquiry {
  background-color: #111827; /* Deep Charcoal/Black envelope button */
}

/* WhatsApp Ripple Effect */
.action-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.6);
  z-index: -1;
  animation: pulseRipple 2s infinite ease-out;
}

.ripple-delay {
  animation-delay: 0.75s;
}

@keyframes pulseRipple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ---------------- ENQUIRY MODAL POPUP ---------------- */
.enquiry-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 62, 114, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.enquiry-modal-overlay.modal-active {
  opacity: 1;
  visibility: visible;
}

.enquiry-modal-card {
  width: 100%;
  max-width: 350px;
  background: #ffffff;
  /* border-radius: 14px; */
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.enquiry-modal-overlay.modal-active .enquiry-modal-card {
  transform: scale(1) translateY(0);
}

/* Header Band */
.modal-header-band {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--sanso-blue) 100%);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}

.modal-title-text {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  letter-spacing: -0.2px;
}

.modal-close-x {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.modal-close-x:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* Body & Inputs */
.modal-body-content {
  padding: 24px;
}

.modal-urgent-text {
  font-size: 13.5px;
  color: var(--body-text);
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 12px 14px;
  background-color: #f0f9ff;
  border-left: 3px solid var(--secondary-color);
  border-radius: 4px;
}

.modal-phone-link {
  display: block;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  margin-top: 2px;
}

.modal-phone-link:hover {
  text-decoration: underline;
}

.modal-form-element .form-group {
  margin-bottom: 14px;
}

.custom-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--heading-color);
  background-color: #eaecee;
  border: 1px solid #fff;
  /* border-radius: 6px; */
  transition: border-color 0.2s ease, background-color 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.custom-input:focus {
  background-color: #ffffff;
  border-color: var(--sanso-blue);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.12);
}

.text-area-input {
  resize: vertical;
  min-height: 80px;
}

.btn-modal-submit {
  width: 100%;
  padding: 14px 20px;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  /* border-radius: 6px; */
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  margin-top: 8px;
}

.btn-modal-submit:hover {
  background-color: var(--sanso-blue);
  transform: translateY(-1px);
}

/* Mobile Alignment */
@media (max-width: 600px) {
  .sanso-sticky-actions {
    left: 14px;
    bottom: 18px;
    gap: 10px;
  }
  
  .sticky-action-item {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}


/* Desktop default: hide text labels inside circular floating buttons */
.sticky-action-item .action-label {
  display: none;
}

/* ---------------- MOBILE BOTTOM BAR (< 768px) ---------------- */
@media (max-width: 768px) {
  .sanso-sticky-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 52px;
    display: flex;
    flex-direction: row;
    gap: 0;
    z-index: 99999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  }

  .sticky-action-item {
    flex: 1;
    height: 100%;
    width: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none;
    padding: 0 4px;
  }

  /* Show labels on mobile */
  .sticky-action-item .action-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
  }

  .sticky-action-item i {
    font-size: 16px !important;
    color: #ffffff !important;
  }

  /* Colors matching the image */
  .item-phone {
    background-color: #ff6a00; /* Call Now Orange */
  }

  .item-whatsapp {
    background-color: #38b449; /* WhatsApp Green */
  }

  .item-enquiry {
    background-color: #5b2c8e; /* Enquiry Purple / or use var(--primary-color) */
  }

  /* Disable hover transform and ripple animations on mobile */
  .sticky-action-item:hover {
    transform: none;
    box-shadow: none;
  }

  .action-ripple {
    display: none;
  }

  /* Prevent page content from being hidden behind the bottom bar */
  body {
    padding-bottom: 52px;
  }
}


@media (max-width: 900px) {
  /* 1. Make the white overlay stronger across the entire text area */
  .sanso-bs-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.106) 0%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0.289) 100%
    ) !important;
  }

  /* 2. Add padding so text doesn't touch the header or bottom edge */
  .sanso-bs-hero {
    min-height: 480px;
    display: flex;
    align-items: center;
  }

  .sanso-bs-content {
    position: relative;
    z-index: 5;
    padding: 30px 20px;
  }

  /* 3. Strengthen text colors & typography hierarchy */
  .sanso-bs-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #0077b6; /* Brand Blue */
    display: inline-block;
    margin-bottom: 8px;
  }

  .sanso-bs-text h1 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--primary-color); /* Deep Navy */
    margin-bottom: 12px;
  }

  .sanso-bs-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #334155; /* Slate dark gray for strong contrast */
    margin-bottom: 20px;
    max-width: 100%;
  }

  /* 4. Ensure button is prominent and tap-friendly */
  .sanso-bs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(7, 62, 114, 0.25);
  }

  /* 5. Keep the background image anchored behind the overlay */
  .sanso-bs-hero-img {
    height: 100%;
    object-fit: cover;
    object-position: center right;
  }

  .sanso-header{
    position:sticky;
    top: 0;
  }
}



.sanso-topbar {
  display: none;
  background-color: var(--primary-color);
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1000;
}

/* 2. Show ONLY on Mobile (screens <= 768px) */
@media (max-width: 768px) {
  .sanso-topbar {
    display: block; /* Visible on mobile */
  }

  .topbar-container {
    width: 100%;
    padding: 7px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .topbar-left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px; 
  }

  .topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f1f5f9;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 500;
  }

  .topbar-link i {
    color: var(--secondary-color);
    font-size: 12px;
  }

  .topbar-right {
    display: none; /* Keeps the mobile bar minimal with only phone & email */
  }
}



.how-we-work-section {
  position: relative;
  background-color: #f4f4f4;
  padding: 30px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
}

.hww-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header */
.hww-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 65px;
}

.hww-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--sanso-blue);
}

.hww-header .eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background-color: var(--sanso-blue);
}

.hww-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.hww-subtitle {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body-text);
  margin: 0;
}

/* 5-Column Process Flow */
.process-flow-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-bottom: 50px;
}

.process-step-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--sanso-blue);
  box-shadow: 0 16px 32px rgba(7, 62, 114, 0.08);
}

/* Step Number Floating Badge */
.step-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 13px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.step-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: #f0f9ff;
  border: 1px solid rgba(0, 119, 182, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sanso-blue);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step-icon-box svg {
  width: 24px;
  height: 24px;
}

.process-step-card:hover .step-icon-box {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 10px;
}

.step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--body-text);
  margin: 0;
}

/* Bottom Assurance Banner */
.hww-footer-card {
  background: linear-gradient(135deg, #05627e 0%, #052c52 100%);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 62, 114, 0.15);
}

.footer-card-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 202, 240, 0.15);
  border: 1px solid rgba(13, 202, 240, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 18px;
  flex-shrink: 0;
}

.footer-card-left h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #ffffff;
}

.footer-card-left p {
  font-size: 13.5px;
  color: #cbd5e1;
  margin: 0;
}

.hww-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.hww-cta-btn:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
  color: #000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1100px) {
  .process-flow-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .how-we-work-section {
    padding: 70px 16px;
  }

  .hww-title {
    font-size: 28px;
  }

  .process-flow-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hww-footer-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .hww-cta-btn {
    width: 100%;
    justify-content: center;
  }
}



/* Card Container (Maintains exact position, size, and styling) */
.cisco-badge-card {
  position: absolute;
  top: 16%;
  left: 10%;
  width: 160px;
  height: 160px;
  background: transparent;
  border-radius: 12px;
  z-index: 3;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(0, 75, 145, 0.35);
  overflow: hidden;
}

/* Image inside the card (Maintains aspect ratio and fits cleanly) */
.cisco-badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Prevents distortion/stretching */
  display: block;
}

/* Mobile Responsive Adjustment */
@media (max-width: 640px) {
  .cisco-badge-card {
    position: relative;
    top: auto;
    left: auto;
    width: 200px;
    height: 220px;
    margin: 30px auto;
  }
}
.about-section {
  background-color: #f8fafc;
}

.about-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Image Column */
.about-image-col {
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
}

.about-image-col img {
  object-fit: contain;
  border-radius: 16px;
}

/* Subtitle & Title */
.about-subtitle {
  color: #058ab3;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-subtitle::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #058ab3;
}

.about-title {
  font-size: 30px;
  font-weight: 800;
  color: #058ab3;
  line-height: 1.25;
  margin: 8px 0;
}

@media (min-width: 992px) {
  .about-title {
    font-size: 30px;
  }
}

.about-title-line {
  width: 40px;
  height: 3px;
  background-color: #058ab3;
}

/* Description Box */
.about-icon-circle {
  width: 48px;
  height: 48px;
  background-color: #eef4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #058ab3;
  font-size: 18px;
}

.about-desc-text {
  color: #4a5568;
  line-height: 1.6;
  font-size: 14px;
}

.about-desc-text strong {
  color: #058ab3;
}

/* Features Grid */
.about-features-grid {
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.about-feature-item {
  position: relative;
}

@media (min-width: 576px) {
  .about-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #edf2f7;
  }
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background-color: #eef4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #058ab3;
  font-size: 16px;
  margin: 0 auto 10px auto;
}

.about-feature-itemh3 {
  font-size: 20px;
  font-weight: 700;
  color: #058ab3;
  margin-bottom: 6px;
}

.about-feature-item p {
    color: #718096;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.about-feature-line {
  width: 25px;
  height: 2px;
  background-color: #058ab3;
  margin: 0 auto;
}

/* Bottom Banner & Button */
.about-banner {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
  border-radius: 12px;
}

.about-phone-icon {
  width: 40px;
  height: 40px;
  background-color: #dbe5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #058ab3;
  font-size: 16px;
}

.about-banner-info p {
  font-size: 12px;
  color: #4a5568;
}

.about-banner-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0d2366;
}

.about-cta-btn {
  background-color: #058ab3;
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 18px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.about-cta-btn:hover {
  color: #ffffff;
  opacity: 0.9;
}

.about-btn-arrow {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.about-btn-text span {
  display: block;
  font-size: 9px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-btn-text strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
}
.about-desc-box p {
    text-align: justify;
}
/* White Section Background */
.industries-section {
  background: #ffffff;
}

.industries-pill {
  color: #058ab3;
  letter-spacing: 1.5px;
  background-color: rgba(5, 138, 179, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
}

.main-heading {
  font-size: 38px;
  color: #0f172a;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 28px;
  }
}

.sub-lead {
  color: #64748b;
  line-height: 1.6;
}

/* Card Styling */
.clean-card {
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.clean-card:hover {
  transform: translateY(-6px);
  border-color: #058ab3;
  box-shadow: 0 20px 35px rgba(5, 138, 179, 0.12);
}

.clean-icon-box {
  width: 46px;
  height: 46px;
  background-color: #f0f9ff;
  border: 1px solid rgba(5, 138, 179, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #058ab3;
  transition: all 0.3s ease;
}

.clean-card:hover .clean-icon-box {
  background-color: #058ab3;
  color: #ffffff;
  border-color: #058ab3;
}

.clean-tag {
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 1px;
}

.clean-title {
  color: #0f172a;
}

.clean-text {
  color: #475569;
  line-height: 1.65;
}

.bottom-accent-bar {
  height: 3px;
  width: 0%;
  background-color: #058ab3;
  transition: width 0.35s ease;
  border-radius: 2px;
}

.clean-card:hover .bottom-accent-bar {
  width: 100%;
}
    .faq-section {
        padding: 80px 20px;
        background: #edf3f8;
    }

    .faq-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
        width: 100%;
        max-width: 1240px;
        margin: 0 auto;
        align-items: start;
    }

    .faq-left-col,
    .faq-right-col {
        width: 100%;
        min-width: 0;
    }

    /* Form Design */
    .faq-form-box {
        padding: 35px;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 70, 100, 0.12);
    }

    .faq-form-heading {
        margin-bottom: 25px;
    }

    .faq-form-label {
        display: inline-block;
        margin-bottom: 8px;
        color: #0794b9;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .faq-form-heading h3 {
        margin: 0 0 10px;
        color: #102536;
        font-size: 30px;
        font-weight: 700;
    }

    .faq-form-heading p {
        margin: 0;
        color: #687680;
        font-size: 15px;
        line-height: 1.6;
    }

    .faq-enquiry-form {
        display: flex;
        flex-direction: column;
        gap: 17px;
    }

    .faq-form-group {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    .faq-form-group label {
        margin: 0;
        color: #223746;
        font-size: 14px;
        font-weight: 600;
    }

    .faq-form-group input,
    .faq-form-group textarea {
        width: 100%;
        padding: 13px 15px;
        color: #243746;
        background: #f8fafc;
        border: 1px solid #dce5eb;
        border-radius: 8px;
        outline: none;
        font-family: inherit;
        font-size: 14px;
        transition: 0.3s ease;
        box-sizing: border-box;
    }

    .faq-form-group textarea {
        min-height: 115px;
        resize: vertical;
    }

    .faq-form-group input:focus,
    .faq-form-group textarea:focus {
        background: #ffffff;
        border-color: #0794b9;
        box-shadow: 0 0 0 3px rgba(7, 148, 185, 0.12);
    }

    .faq-form-group input::placeholder,
    .faq-form-group textarea::placeholder {
        color: #98a4ad;
    }

    .faq-submit-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 14px 20px;
        color: #ffffff;
        background: #0794b9;
        border: 0;
        border-radius: 8px;
        font-family: inherit;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .faq-submit-btn:hover {
        background: #057c9c;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(7, 148, 185, 0.25);
    }

    /* FAQ Heading */
    .faq-top-content {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .faq-top-content .eyebrow {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        color: #057fa5;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .faq-top-content .eyebrow-line {
        display: block;
        width: 25px;
        height: 1px;
        background: #0794b9;
    }

    .faq-heading {
        margin: 12px 0 10px;
        color: #0b1720;
        font-size: 40px;
        font-weight: 700;
        line-height: 1.15;
    }

    .faq-heading .highlight {
        color: #0794b9;
    }

    .faq-desc {
        max-width: 520px;
        margin: 0 auto;
        color: #687680;
        font-size: 15px;
        line-height: 1.7;
    }

    /* Accordion */
    .accordion-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .accordion-item {
        overflow: hidden;
        background: #0794b9;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 91, 122, 0.12);
    }

    .accordion-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        width: 100%;
        padding: 22px 25px;
        color: #ffffff;
        background: transparent;
        border: 0;
        font-family: inherit;
        text-align: left;
        cursor: pointer;
    }

    .accordion-title {
        font-size: 15px;
        font-weight: 700;
        line-height: 1.5;
    }

    .accordion-icon {
        display: flex;
        flex: 0 0 34px;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 50%;
    }

    .accordion-icon svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
    }

    .accordion-item.active .accordion-icon svg {
        transform: rotate(180deg);
    }

    .accordion-item.active .vertical-line {
        opacity: 0;
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .accordion-body {
        padding: 0 25px 24px;
        color: rgba(255, 255, 255, 0.9);
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        font-size: 14px;
        line-height: 1.75;
    }

    .accordion-body p {
        margin: 18px 0 10px;
    }

    .accordion-body ul {
        margin: 10px 0 0;
        padding-left: 20px;
    }

    .accordion-body li {
        margin-bottom: 5px;
    }

    @media (max-width: 991px) {
        .faq-section {
            padding: 60px 20px;
        }

        .faq-container {
            grid-template-columns: 1fr;
            gap: 45px;
        }

        .faq-heading {
            font-size: 34px;
        }
    }

    @media (max-width: 575px) {
        .faq-section {
            padding: 45px 15px;
        }

        .faq-form-box {
            padding: 25px 20px;
        }

        .faq-form-heading h3 {
            font-size: 25px;
        }

        .faq-heading {
            font-size: 29px;
        }

        .accordion-header {
            padding: 18px;
        }

        .accordion-title {
            font-size: 14px;
        }

        .accordion-body {
            padding: 0 18px 20px;
        }
    }