
/*----------------------------------------------------------------------------------------------------------------------
Project:	    Selfer
Version:        1.0.0

Default Color   #581ca0;
Background Color  #020312;

Body copy:		'Arial', sans-serif; 14px;
Headers:		'Arial', sans-serif;


----------------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------------------
[Table of contents]

A. Basic Styling
  -- Styling

B. Helpers
  -- Animations
  -- Borders
  -- Colors
  -- Column Count
  -- Transitions
  -- Background
  -- Headings
  -- Height
  -- Margin
  -- No Gutter
  -- Opacity
  -- Overflow
  -- Padding
  -- Position
  -- Shadow
  -- Shape Mask
  -- Typography
  -- Title
  -- Transitions
  -- Utilities
  -- Width
  -- Z-Index

C. Components
  -- Block
  -- Blockquote
  -- Box
  -- Buttons
  -- Card
  -- Circle
  -- Forms
  -- Inputs
  -- Item
  -- List
  -- Map
  -- Hero
  -- Navbar
  -- Page
  -- Partners
  -- Plugins
  -- Price Box
  -- Progress
  -- Promo Numbers
  -- Select
  -- Slider
  -- Tabs

D. Plugins Styles
  -- Magnific Popup
  -- Owl Carousel

E. Template Specific Elements
  -- Price Box
  -- Other
  -- Story


----------------------------------------------------------------------------------------------------------------------*/

/***********************************************************************************************************************
A. Basic Styling
***********************************************************************************************************************/

/*-------------------------------------------
  -- Styling - Colors, Font Size, Font Family
-------------------------------------------*/

body {
    color: #fff;
    background-color: #020312;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

html {
    font-size: 80%;
}

h1, h2, h3, h4, h5 {
    font-weight: 400;
}

h1, .ts-h1 {
    font-size: 2.5rem;
}

h2, .ts-h2 {
    font-size: 1.5rem;
}

h3, .ts-h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5625rem;
}

h4, .ts-h4 {
    margin-bottom: 1.875rem;
}

h5, .ts-h5 {
    font-size: 1.125rem;
}

h6, .ts-h6 {
    font-size: 1rem;
}

/* NEW */

/***********************************************************************************************************************
B. Helpers
***********************************************************************************************************************/

/*-------------------------------------------
  -- Animations
-------------------------------------------*/

[data-animate] {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: .6s;
    animation-timing-function: ease;
}

/* Fade In Up */

@keyframes ts-fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 1.25rem, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.ts-fadeInUp {
    animation-name: ts-fadeInUp;
}

/* Fade In Down */

@keyframes ts-fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -1.25rem, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.ts-fadeInDown {
    animation-name: ts-fadeInDown;
}

/* Fade In Left */

@keyframes ts-fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-1.25rem, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.ts-fadeInLeft {
    animation-name: ts-fadeInLeft;
}

/* Fade In Right */

@keyframes ts-fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(1.25rem, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.ts-fadeInRight {
    animation-name: ts-fadeInRight;
}

/* Zoom In */

@keyframes ts-zoomIn {
    from {
        opacity: 0;
        transform: scale(.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ts-zoomIn {
    animation-name: ts-zoomIn;
}

/* Zoom Out In */

@keyframes ts-zoomOutIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ts-zoomOutIn {
    animation-name: ts-zoomOutIn;
}

/* Zoom In Short */

@keyframes ts-zoomInShort {
    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ts-zoomInShort {
    animation-name: ts-zoomInShort;
}

/* -- Align */

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

/*-------------------------------------------
  -- Borders
-------------------------------------------*/

.ts-border-radius__sm {
    border-radius: .125rem;
    overflow: hidden;
}

.ts-border-radius__md {
    border-radius: .25rem;
    overflow: hidden;
}

.ts-border-radius__lg {
    border-radius: .5rem;
    overflow: hidden;
}

.ts-border-radius__xl {
    border-radius: .75rem;
    overflow: hidden;
}

.ts-border-radius__pill {
    border-radius: 6.25rem !important;
    overflow: hidden;
}

.ts-border-radius__round-shape {
    border-radius: 187.5rem;
    overflow: hidden;
}

.ts-border-none {
    border: none;
}

.ts-border-bottom {
    border-bottom: .0625rem solid rgba(0, 0, 0, .1);
}

.ts-border-muted {
    border-color: rgba(25, 25, 25, .1) !important;
}

.ts-border-light {
    border-color: rgba(255, 255, 255, .2) !important;
}

.ts-font-color__white {
    color: #fff;
}

.ts-font-color__black {
    color: #000;
}

.ts-font-color__primary {
    color: #581ca0;
}

.ts-bg-primary {
    background-color: #581ca0;
}

.ts-column-count-2 {
    column-count: 2;
}

.ts-column-count-3 {
    column-count: 3;
}

.ts-column-count-4 {
    column-count: 4;
}

/*-------------------------------------------
  -- Background
-------------------------------------------*/

[data-bg-image] {
    background-size: cover;
    background-position: 50%;
}

.ts-background {
    bottom: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: -2;
}

.ts-background .ts-background {
    height: 100%;
    width: 100%;
}

.ts-background-repeat {
    background-repeat: repeat;
    background-size: inherit;
}

.ts-background-repeat .ts-background-image {
    background-repeat: repeat;
    background-size: inherit;
}

.ts-background-image, .ts-img-into-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.ts-background-image img, .ts-img-into-bg img {
    display: none;
}

.ts-background-original-size {
    background-size: inherit;
}

.ts-background-size-cover {
    background-size: cover;
}

.ts-background-size-contain {
    background-size: contain;
}

.ts-background-repeat-x {
    background-repeat: repeat-x;
}

.ts-background-repeat-y {
    background-repeat: repeat-y;
}

.ts-background-repeat-repeat {
    background-repeat: repeat;
    background-size: inherit;
}

.ts-background-position-top {
    background-position: top;
}

.ts-background-position-center {
    background-position: center;
}

.ts-background-position-bottom {
    background-position: bottom;
}

.ts-background-position-left {
    background-position-x: left !important;
}

.ts-background-position-right {
    background-position-x: right !important;
}

.ts-background-particles {
    height: 120%;
    left: 0;
    margin-left: -10%;
    margin-top: -10%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 120%;
    z-index: 1;
}

.ts-background-is-dark {
    color: #fff;
}

.ts-background-is-dark .form-control {
    box-shadow: 0 0 0 .125rem rgba(255, 255, 255, .2);
}

.ts-background-is-dark .form-control:focus {
    box-shadow: 0 0 0 .125rem rgba(255, 255, 255, .4);
}

.ts-background-is-dark .ts-btn-border-muted {
    border-color: rgba(255, 255, 255, .1);
}

.ts-video-bg {
    height: 100%;
}

.ts-video-bg .fluid-width-video-wrapper {
    height: 100%;
}

/*-------------------------------------------
  -- Height
-------------------------------------------*/

.ts-height__50px {
    height: 3.125rem;
}

.ts-height__100px {
    height: 6.25rem;
}

.ts-height__150px {
    height: 9.375rem;
}

.ts-height__200px {
    height: 12.5rem;
}

.ts-height__250px {
    height: 15.625rem;
}

.ts-height__300px {
    height: 18.75rem;
}

.ts-height__350px {
    height: 21.875rem;
}

.ts-height__400px {
    height: 25rem;
}

.ts-height__450px {
    height: 28.125rem;
}

.ts-height__500px {
    height: 31.25rem;
}

.ts-height__600px {
    height: 37.5rem;
}

.ts-height__700px {
    height: 43.75rem;
}

.ts-height__800px {
    height: 50rem;
}

.ts-height__900px {
    height: 56.25rem;
}

.ts-height__1000px {
    height: 62.5rem;
}

/*-------------------------------------------
  -- Margin
-------------------------------------------*/

.ts-mt__0 {
    margin-top: 0 !important;
}

.ts-mr__0 {
    margin-right: 0 !important;
}

.ts-mb__0 {
    margin-bottom: 0 !important;
}

.ts-ml__0 {
    margin-left: 0 !important;
}

/*-------------------------------------------
  -- No Gutters - Removes padding from col*
-------------------------------------------*/

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

/*-------------------------------------------
  -- Opacity
-------------------------------------------*/

.ts-opacity__5 {
    opacity: .05;
}

.ts-opacity__10 {
    opacity: .1;
}

.ts-opacity__20 {
    opacity: .2;
}

.ts-opacity__30 {
    opacity: .3;
}

.ts-opacity__40 {
    opacity: .4;
}

.ts-opacity__50 {
    opacity: .5;
}

.ts-opacity__60 {
    opacity: .6;
}

.ts-opacity__70 {
    opacity: .7;
}

.ts-opacity__80 {
    opacity: .8;
}

.ts-opacity__90 {
    opacity: .9;
}

/*-------------------------------------------
  -- Overflow
-------------------------------------------*/

.ts-overflow__hidden {
    overflow: hidden;
}

.ts-overflow__visible {
    overflow: visible;
}

/*-------------------------------------------
  -- Padding
-------------------------------------------*/

.ts-pt__0 {
    padding-top: 0 !important;
}

.ts-pr__0 {
    padding-right: 0 !important;
}

.ts-pb__0 {
    padding-bottom: 0 !important;
}

.ts-pl__0 {
    padding-left: 0 !important;
}

/*-------------------------------------------
  -- Position
-------------------------------------------*/

/* Top */

.ts-top__0 {
    top: 0%;
}

.ts-top__50 {
    top: 50%;
}

.ts-top__100 {
    top: 100%;
}

/* Right */

.ts-right__0 {
    right: 0%;
}

.ts-right__50 {
    right: 50%;
}

.ts-right__100 {
    right: 100%;
}

.ts-right__inherit {
    right: inherit;
}

/* Bottom */

.ts-bottom__0 {
    bottom: 0%;
}

.ts-bottom__50 {
    bottom: 50%;
}

.ts-bottom__100 {
    bottom: 100%;
}

/* Left */

.ts-left__0 {
    left: 0%;
}

.ts-left__50 {
    left: 50%;
}

.ts-left__100 {
    left: 100%;
}

.ts-left__inherit {
    left: inherit;
}

.ts-push-left__100 {
    transform: translateX(100%);
}

.ts-push-down__50 {
    transform: translateY(50%);
}

.ts-push-up__50 {
    transform: translateY(-50%);
}

/*-------------------------------------------
  -- Shadow
-------------------------------------------*/

.ts-shadow__sm {
    box-shadow: 0 .125rem .3125rem rgba(0, 0, 0, .1);
}

.ts-shadow__md {
    box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
}

.ts-shadow__lg {
    box-shadow: .375rem .3125rem 1.5625rem rgba(0, 0, 0, .2);
}

.ts-shadow__none {
    box-shadow: none !important;
}

/*-------------------------------------------
  -- Typography
-------------------------------------------*/

a {
    color: #581ca0;
    transition: .3s ease;
}

a:hover {
    color: rgb(237, 58, 18);
    text-decoration: none;
}

p {
    line-height: 1.6875rem;
    margin-bottom: 1.875rem;
    /*opacity: .5;*/
}

.ts-font-weight__normal {
    font-weight: normal;
}

.ts-font-weight__light {
    font-weight: lighter;
}

.ts-font-weight__bold {
    font-weight: bold;
}

.ts-text-small {
    font-size: .8125rem !important;
}

.ts-xs-text-center {
}

/*-------------------------------------------
  -- Title
-------------------------------------------*/

.ts-title {
}

.ts-title h5 {
    font-weight: normal;
    opacity: .5;
}

/*-------------------------------------------
  -- Utilities
-------------------------------------------*/

.ts-element {
    position: relative;
}

/* Social Icons */

.ts-social-icons {
    font-size: 120%;
}

.ts-social-icons a {
    padding: .125rem .25rem;
    color: #9e9e9e;
}

/* Overlay */

.ts-has-overlay {
    position: relative;
}

.ts-has-overlay:after {
    background-color: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: .5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

/* Flip x */

.ts-flip-x {
    transform: scaleY(-1);
}

/* Flip Y */

.ts-flip-y {
    transform: scaleX(-1);
}

.ts-has-talk-arrow {
    position: relative;
}

/*
.ts-has-talk-arrow:after {
    border-style: solid;
    border-width: .625rem .625rem 0 0;
    border-color: #581ca0 transparent transparent transparent;
    bottom: -0.625rem;
    content: "";
    left: 1rem;
    position: absolute;
}
*/

/* Custom */
.ts-has-talk-arrow::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #007bff transparent transparent transparent;
}

/* Custom removal*/
#testimonials .ts-has-talk-arrow::after {
  display: none !important;
}

/* =========================================================
   SEI Philosophy — Black Title Section
   ========================================================= */
#philosophy-title {
  color: #fff;
}

#philosophy-title .ts-title h2 {
  margin: 0;
}

/* =========================================================
   SEI Philosophy — Image Background Section
   ========================================================= */
#testimonials.ts-block {
  position: relative;
  background: url("../img/sei-philosophy-bg.png") center center / cover no-repeat;
  color: #fff;

  overflow: hidden;
}

/* Optional subtle overlay for readability (adjust opacity as needed) */
#testimonials.ts-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25); /* Slight dark overlay for legibility */
  z-index: 1;
}

/* Ensure content sits above overlay */
#testimonials .container {
  position: relative;
  z-index: 2;
}


/* Quote icon */
#testimonials figure.ts-has-talk-arrow {
  font-size: 2.5rem;
}

#testimonials .fa-quote-right {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: #ffffff;
  opacity: 1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

/* Paragraph styling */
#testimonials p {
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
  color: #fff;
  opacity: 0.95;
}

/* Responsive refinement */
@media (max-width: 768px) {
  #testimonials.ts-block {
    padding-top: 14px;
    padding-bottom: 22px;
  }

  #testimonials figure.ts-has-talk-arrow {
    font-size: 2.1rem;
    margin-bottom: 0.3rem;
  }

  #testimonials p {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 0.55rem;
  }
}

/*-------------------------------------------
  -- Width
-------------------------------------------*/

.ts-width__10px {
    width: .625rem;
}

.ts-width__20px {
    width: 1.25rem;
}

.ts-width__30px {
    width: 1.875rem;
}

.ts-width__40px {
    width: 2.5rem;
}

.ts-width__50px {
    width: 3.125rem;
}

.ts-width__100px {
    width: 6.25rem;
}

.ts-width__200px {
    width: 12.5rem;
}

.ts-width__300px {
    width: 18.75rem;
}

.ts-width__400px {
    width: 25rem;
}

.ts-width__500px {
    width: 31.25rem;
}

.ts-width__inherit {
    width: inherit !important;
}

.ts-width__auto {
    width: auto !important;
}

/*-------------------------------------------
  -- Z-index
-------------------------------------------*/

.ts-z-index__-1 {
    z-index: -1 !important;
}

.ts-z-index__0 {
    z-index: 0 !important;
}

.ts-z-index__1 {
    z-index: 1 !important;
}

.ts-z-index__2 {
    z-index: 2 !important;
}

.ts-z-index__1000 {
    z-index: 1000 !important;
}

/***********************************************************************************************************************
C. Components
***********************************************************************************************************************/

/*-------------------------------------------
  -- Block
-------------------------------------------*/

.ts-block {
    padding-bottom: 5rem;
    padding-top: 5rem;
    position: relative;
    /*
  &:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'  width='103.987' height='105.599'%3E%3cpath fill='var(--color-primary-svg)' d='M101.017 45.961c-10.338 22.34-33.156 61.239-62.326 59.586-31.984-1.803-44.52-48.772-36.182-73.996 15.682-47.439 120.287-40.376 98.508 14.41-10.998 23.766 1.923-4.836 0 0z'/%3E%3c/svg%3E");
  }
  */
}

.ts-block-inside {
    padding: 1.25rem;
    position: relative;
}

section {
    position: relative;
}

/*-------------------------------------------
  -- Blockquote
-------------------------------------------*/

blockquote {
    font-size: 1.125rem;
    position: relative;
    padding-bottom: 2rem;
}

blockquote [class*="ts-circle"] {
    box-shadow: .375rem .3125rem 1.5625rem rgba(0, 0, 0, .2);
    position: relative;
    z-index: 2;
    margin-top: 1rem;
}

blockquote p {
    background-color: #f1f1f1;
    border-radius: .25rem;
    margin-top: -2.5rem;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

blockquote p:after {
    border-color: #f1f1f1 transparent transparent transparent;
    border-style: solid;
    border-width: .8125rem .8125rem 0 .8125rem;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -0.8125rem;
}

blockquote h4 {
    margin-bottom: .3125rem;
}

blockquote h6 {
    opacity: .5;
}

.blockquote-footer {
    color: inherit;
}

.blockquote-footer:before {
    display: none;
}

.ts-carousel-blockquote .owl-item figure, .ts-carousel-blockquote .owl-item p,
.ts-carousel-blockquote .owl-item .blockquote-footer {
    opacity: 0;
    transition: .6s ease;
    transform: translateY(.625rem);
}

.ts-carousel-blockquote .owl-item.active figure,
.ts-carousel-blockquote .owl-item.active p,
.ts-carousel-blockquote .owl-item.active .blockquote-footer {
    opacity: 1;
    transform: translateY(0);
}

.ts-carousel-blockquote .owl-item.active p {
    transition-delay: .1s;
}

.ts-carousel-blockquote .owl-item.active .blockquote-footer {
    transition-delay: .2s;
}

/*-------------------------------------------
  -- Box
-------------------------------------------*/

.ts-box {
    background-color: #fff;
    border-radius: .25rem;
    margin-bottom: 1.875rem;
    box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
    padding: 1.5625rem;
}

/*-------------------------------------------
  -- Buttons
-------------------------------------------*/

.btn {
    border-radius: 0;
    box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
    display: inline-block;
    font-weight: 500;
    font-size: 1rem;
    padding: .75rem 1.25rem;
    position: relative;
    outline: none !important;
    text-transform: none;
}

.btn:hover .fa-arrow-right {
    transform: translateX(.5rem);
}

.btn.ts-btn-arrow:after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: .625rem;
    margin-left: .75rem;
    position: relative;
    top: -0.0625rem;
    vertical-align: middle;
}

.btn span {
    transition: .3s ease;
}

.btn .status {
    bottom: 0;
    height: 1.375rem;
    left: 0;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    width: 1.5rem;
}

.btn .status .spinner {
    left: .3125rem;
    transition: .3s ease;
    top: .1875rem;
    position: absolute;
    opacity: 0;
}

.btn .status .status-icon {
    border-radius: 50%;
    left: 0;
    opacity: 0;
    font-size: .625rem;
    padding: .25rem .4375rem;
    position: relative;
    transition: .3s ease;
    z-index: 1;
    transform: scale(0);
}

.btn .status .status-icon.valid {
    background-color: var(--green);
}

.btn .status .status-icon.invalid {
    background-color: var(--red);
}

.btn.processing span {
    opacity: .2;
}

.btn.processing .spinner {
    opacity: 1;
}

.btn.done .ts-spinner {
    opacity: 0;
}

.btn.done .status-icon {
    transform: scale(1);
    opacity: 1;
}

.ts-btn-effect {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}

.ts-btn-effect:hover .ts-hidden {
    transform: translateX(0%);
}

.ts-btn-effect:hover .ts-visible {
    transform: translateX(100%);
}

.ts-btn-effect .ts-visible {
    transform: translateX(0%);
    transition: .3s ease;
}

.ts-btn-effect .ts-hidden {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: .3s ease;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #581ca0;
    border-color: #fff;
    box-shadow: none;
}

.btn-primary {
    background-color: #581ca0;
    border-color: #581ca0;
    color: #fff;
}

.btn-lg {
    padding: .75rem 1.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    font-size: .8125rem;
    padding: .375rem 1rem;
}

.btn-xs {
    font-size: .75rem;
    font-weight: 600;
    padding: .125rem .6875rem;
    text-transform: uppercase;
}

[class*="btn-outline-"] {
    box-shadow: none;
}

.ts-link-arrow-effect {
    overflow: hidden;
    display: inline-block;
    font-size: .75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-right: 2rem;
    /*
  &:hover {
    color: var(--color-white);
    &:before {
      animation: ts-link-arrow-effect-animation-in;
      animation-fill-mode: forwards;
      animation-duration: .4s;
      animation-timing-function: cubic-bezier(.6,.01,0,1);
    }
    span {
      transform: translateX(0%);
    }
  }
  */
}

.ts-link-arrow-effect:before {
    animation: ts-link-arrow-effect-animation-out;
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.6, .01, 0, 1);
    background-color: #581ca0;
    bottom: 0;
    height: .125rem;
    margin: auto;
    left: 0;
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    transform: scaleX(.2);
    transform-origin: left center;
    z-index: -1;
}

.ts-link-arrow-effect span {
    position: relative;
    transform: translateX(-200%);
    display: inline-block;
    transition: .6s cubic-bezier(.6, .01, 0, 1);
}

@keyframes ts-link-arrow-effect-animation-in {
    0% {
        transform-origin: left center;
        transform: scaleX(.2);
    }

    70% {
        transform-origin: left center;
        transform: scaleX(1);
    }

    71% {
        transform-origin: right center;
    }

    100% {
        transform-origin: right center;
        transform: scaleX(.2);
    }
}

@keyframes ts-link-arrow-effect-animation-out {
    0% {
        transform-origin: right center;
        transform: scaleX(.2);
    }

    70% {
        transform-origin: right center;
    }

    71% {
        transform-origin: left center;
        transform: scaleX(1);
    }

    100% {
        transform-origin: left center;
        transform: scaleX(.2);
    }
}

/*-------------------------------------------
  -- Card
-------------------------------------------*/

.card {
    backface-visibility: hidden;
    border: none;
    box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
    margin-bottom: 1.875rem;
    overflow: hidden;
}

.card-columns .card {
    margin-bottom: 1.25rem;
}

.card-body, .card-footer, .card-header {
    padding: 1.5625rem;
}

.ts-cards-same-height > div[class*='col-'] {
    display: flex;
}

.ts-cards-same-height > div[class*='col-'] .card {
    width: 100%;
}

.ts-card__flat {
    border-radius: 0;
    box-shadow: none;
}

.ts-card__flat .card-footer {
    background-color: transparent;
    border: none;
}

.ts-card__image {
}

/*-------------------------------------------
  -- Circle
-------------------------------------------*/

.ts-circle__xs {
    border-radius: 50%;
    display: inline-block;
    height: 3rem;
    flex: 0 0 3rem;
    overflow: hidden;
    text-align: center;
    line-height: 3rem;
    width: 3rem;
}

.ts-circle__sm {
    border-radius: 50%;
    display: inline-block;
    height: 4.375rem;
    flex: 0 0 4.375rem;
    overflow: hidden;
    text-align: center;
    line-height: 4.375rem;
    width: 4.375rem;
}

.ts-circle__md {
    border-radius: 50%;
    display: inline-block;
    height: 6.25rem;
    flex: 0 0 6.25rem;
    overflow: hidden;
    text-align: center;
    line-height: 6.25rem;
    width: 6.25rem;
}

.ts-circle__lg {
    border-radius: 50%;
    display: inline-block;
    height: 8.125rem;
    flex: 0 0 8.125rem;
    overflow: hidden;
    text-align: center;
    line-height: 8.125rem;
    width: 8.125rem;
}

.ts-circle__xl {
    border-radius: 50%;
    display: inline-block;
    height: 10rem;
    flex: 0 0 10rem;
    overflow: hidden;
    text-align: center;
    line-height: 10rem;
    width: 10rem;
}

.ts-circle__xxl {
    border-radius: 50%;
    display: inline-block;
    height: 15.625rem;
    flex: 0 0 15.625rem;
    overflow: hidden;
    text-align: center;
    line-height: 15.625rem;
    width: 15.625rem;
}

/* --Description */

dl dt {
    color: #581ca0;
}

dl dd {
    margin-bottom: 1rem;
}

/*-------------------------------------------
  -- Forms
-------------------------------------------*/

form.ts-labels-inside-input .form-group,
.ts-form.ts-labels-inside-input .form-group {
    position: relative;
}

form.ts-labels-inside-input .form-group label,
.ts-form.ts-labels-inside-input .form-group label {
    line-height: 2.625rem;
    left: .8125rem;
    opacity: .4;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: .3s ease;
}

form.ts-labels-inside-input .form-group label.focused,
.ts-form.ts-labels-inside-input .form-group label.focused {
    top: -2.1875rem;
    left: 0;
    font-size: .75rem;
    opacity: 1;
}

.form-control {
    background-color: rgba(255, 255, 255, .1);
    border: 0;
    box-shadow: none;
    border-radius: 0;
    color: #fff;
    padding: .5625rem .75rem;
    transition: .3s ease;
}

.form-control:hover {
    background-color: rgba(255, 255, 255, .2);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, .3);
    box-shadow: none;
    color: #fff;
}

.form-group {
    margin-bottom: 1.5625rem;
}

.form-group label {
    font-size: .8125rem;
}

.ts-gallery {
    position: relative;
}

.ts-gallery .ts-gallery__item {
    border-radius: 0;
    background-color: transparent;
}

.ts-gallery .ts-gallery__item .ts-gallery__item-description {
    background-color: rgba(0, 0, 0, .8);
    backface-visibility: hidden;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 101%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    transform: scale(1.2);
    transition: .6s ease;
    opacity: 0;
}

.ts-gallery .ts-gallery__item:hover .ts-gallery__item-description {
    transform: scale(1);
    opacity: 1;
}

.ts-gallery .ts-gallery__item:hover img {
    transform: scale(1.3) rotate(-9deg);
}

.ts-gallery .ts-gallery__item h4 {
    margin-bottom: 0;
}

.ts-gallery .ts-gallery__item img {
    border-radius: 0;
    transform: scale(1) rotate(0deg);
    backface-visibility: hidden;
    transition: .8s ease;
}

/* =============================
   RESPONSIVE OPTIMIZATION
   ============================= */

/* Tablet adjustments */
@media (max-width: 992px) {
  .ts-gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
  }

  .ts-gallery .ts-gallery__item:hover img {
    transform: scale(1.15) rotate(-6deg);
  }

  .ts-gallery .ts-gallery__item .ts-gallery__item-description {
    font-size: 0.95rem;
  }
}

/* Mobile optimization */
@media (max-width: 600px) {
  .ts-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .ts-gallery .ts-gallery__item .ts-gallery__item-description {
    transform: none;
    opacity: 1; /* always visible on mobile for better UX */
    background-color: rgba(0, 0, 0, 0.6);
    font-size: 0.9rem;
  }

  .ts-gallery .ts-gallery__item:hover img {
    transform: scale(1.05) rotate(-3deg);
  }
}

/*-------------------------------------------
  -- HR
-------------------------------------------*/

.ts-hr-light {
    border-color: rgba(255, 255, 255, .2);
}

/*-------------------------------------------
  -- Inputs
-------------------------------------------*/

.ts-input__static {
    pointer-events: none;
    box-shadow: none;
}

.ts-inputs__transparent input, .ts-inputs__transparent textarea {
    background-color: transparent;
    color: #fff;
}

.ts-inputs__transparent input:active, .ts-inputs__transparent input:focus,
.ts-inputs__transparent textarea:active, .ts-inputs__transparent textarea:focus {
    background-color: transparent;
    color: #fff;
}

.ts-item {
    height: 100%;
    padding-bottom: 4rem;
}

.ts-item:hover .icon, .ts-item:hover h4, .ts-item:hover p {
    transform: translateY(-0.625rem);
}

.ts-item:hover .ts-link-arrow-effect {
    color: #fff;
}

.ts-item:hover .ts-link-arrow-effect:before {
    animation: ts-link-arrow-effect-animation-in;
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.6, .01, 0, 1);
}

.ts-item:hover .ts-link-arrow-effect span {
    transform: translateX(0%);
}

.ts-item .icon, .ts-item h4, .ts-item p {
    transition: .3s ease;
    transform: translateY(0);
}

.ts-item h4 {
    transition-delay: .05s;
}

.ts-item p {
    transition-delay: .1s;
}

.ts-item-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ts-item-header {
    margin-bottom: 1.5rem;
    position: relative;
}

.ts-item-header .icon {
    position: relative;
    display: inline-block;
}

.ts-item-header .icon .step {
    background-color: #581ca0;
    top: 0;
    box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    line-height: 2rem;
    right: 0;
    height: 2rem;
    position: absolute;
    text-align: center;
    width: 2rem;
}

.ts-item-body {
    flex: 1 1 auto;
}

.ts-item-footer {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/*-------------------------------------------
  -- List
-------------------------------------------*/

ul.ts-list-colored-bullets li:before {
    content: "•";
    color: #581ca0;
    vertical-align: middle;
    font-size: 1.75rem;
    padding-right: .75rem;
}

/*-------------------------------------------
  -- Loading Screen
-------------------------------------------*/

body.has-loading-screen:before {
    background-color: #000;
    content: "";
    height: 100%;
    right: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    transition: 1.5s ease;
    opacity: 1;
}

body.has-loading-screen:after {
    content: url("../../assets/img/loading.svg");
    height: 2.5rem;
    width: 2.5rem;
    position: fixed;
    margin: auto;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
    transform: scale(1);
    transition: 1.5s ease;
    top: 0;
    z-index: 10000;
}

body.has-loading-screen.loading-done:before {
    width: 0;
}

body.has-loading-screen.loading-done:after {
    transform: scale(0);
    opacity: 0;
}

/*-------------------------------------------
  -- Map
-------------------------------------------*/

.map {
    min-height: 12.5rem;
}

.map a[href^="http://maps.google.com/maps"] {
    display: none !important;
}

.map a[href^="https://maps.google.com/maps"] {
    display: none !important;
}

.map .gmnoprint a, .map .gmnoprint span, .map .gm-style-cc {
    display: none;
}

/* =====================================================================
   HERO SECTION (CUSTOM)
   ---------------------------------------------------------------------
   Includes: Background image, tagline area, logo spacing, scroll icon,
   and hover-strip transition rules.
   ===================================================================== */

/* === BASE CONTAINER ================================================== */
#ts-hero {
  position: relative;
  min-height: 100vh;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  text-align: center;

  background-image: url("../img/sei-hero-banner-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* === OVERLAY (readability tint) ===================================== */
#ts-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

/* === HERO CONTENT WRAPPER =========================================== */
#ts-hero .hero-content {
  position: relative;
  z-index: 1;
  padding-top: 10%; /* controls vertical placement of logo/text */
  padding-bottom: 0;
}

/* === HERO LOGO ====================================================== */
.sei-hero-logo-img {
  display: block;
  padding-top: 35px;
  margin: 0 auto;
  height: auto;
  max-width: 395px;
}

/* === HEADLINE / TAGLINE ============================================ */
#ts-hero .ts-bubble-border {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 4.2rem);
  line-height: 1.1;
  margin: 30px auto;
}

/* === OPTIONAL SUBTEXT CONTAINER ==================================== */
#ts-hero .sei-hero-tagline-area {
  background: #000;
  padding: clamp(60px, 8vh, 100px) 0;
}

/* === SCROLL ICON ==================================================== */
.hero-scroll {
  position: absolute;
  bottom: clamp(18px, 3vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  transition: transform 0.2s ease;
}
.hero-scroll .ts-circle__sm {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* ===============================================================
   RESPONSIVE ADJUSTMENTS
   =============================================================== */
@media (max-width: 991px) {
  #ts-hero {
    height: 80vh;
    min-height: 500px;
  }
  #ts-hero .hero-content {
    padding-top: 8%;
  }
}

@media (max-width: 767px) {
  #ts-hero {
    height: auto;
    min-height: 420px;
  }
  #ts-hero .hero-content {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  #ts-hero .ts-bubble-border {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  #ts-hero {
    min-height: 350px;
  }
  .sei-hero-logo-img {
    max-width: 240px;
  }
}

/* ===============================================================
   HOVER STRIP (Follows Hero)
   =============================================================== */
.sei-hover-strip {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 80px;
}

.sei-hover-strip .image-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 0.7s ease;
}

.sei-hover-strip .image-layer.default {
  background-image: url("../img/active-gen-ai-strip.png");
  opacity: 1;
}

.sei-hover-strip .image-layer.hover {
  background-image: url("../img/hover-gen-ai-strip.png");
  opacity: 0;
}

.sei-hover-strip:hover .image-layer.hover {
  opacity: 1;
}

/* === STRIP TEXT CONTENT ============================================== */
.strip-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  color: #fff;
  font-size: clamp(1rem, 1vw + 0.8rem, 1.4rem);
  font-weight: 500;
  padding: 0 30px 35px;
  z-index: 3;
  transform: translateY(10%);
}

.strip-content .arrow {
  background: #3b147a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.strip-content .arrow span {
  display: inline-block;
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.sei-hover-strip:hover .arrow {
  background: #fff;
  color: #3b147a;
  transform: scale(1.08);
}

.sei-hover-strip:hover .arrow span {
  transform: translateY(-2px) scale(1.08);
}

/* END OF CUSTOM HERO */

#ts-hero .ts-background-image {
    background-position: top center;
}

#ts-hero.ts-animate-hero-items h1:not(.ts-bubble-border) {
    opacity: 0;
    transition: .5s cubic-bezier(.03, .18, .05, 1.01);
    transition-duration: 1s;
    transform: translateY(1.25rem);
}

#ts-hero.ts-animate-hero-items .ts-background {
    opacity: 0;
    transition: 1s ease;
    transition-delay: 1.3s;
}

#ts-hero.ts-animate-hero-items .ts-social-icons {
    opacity: 0;
    transition: .3s ease;
    transform: translateX(.3125rem) rotate(.002deg);
    transition-delay: 1.2s;
    transition-duration: 1s;
}

body.loading-done #ts-hero.ts-animate-hero-items .ts-background {
    opacity: 1;
}

body.loading-done #ts-hero.ts-animate-hero-items h1:not(.ts-bubble-border) {
    opacity: 1;
    transform: translateY(0);
}

body.loading-done #ts-hero.ts-animate-hero-items .ts-social-icons {
    opacity: 1;
    transform: translateX(0) rotate(.002deg);
}

/*-------------------------------------------
  -- Navbar
-------------------------------------------*/

.navbar {
    font-size: .875rem;
    font-weight: 500;
    transition: .3s ease;
    text-transform: uppercase;
    padding-top: 0;
    padding-bottom: 0;
}

/* Custom */
.navbar-brand-wrapper {
  position: relative;
  display: inline-block;
}

/* Custom rule for logo */
/* Bigger navbar logo */
.navbar-brand img {
  max-height: 64px;   
  height: auto;
  width: auto;
}


.navbar .ts-background {
    transition: 1s ease;
}

.nav-link.active:after {
    opacity: 1;
}

.nav-link {
    position: relative;
}

.nav-link:after {
    border-top: .1875rem solid #581ca0;
    content: "";
    height: .1875rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: 1s ease;
}

.navbar-toggler {
    margin-left: auto;
    margin-top: .5rem;
    margin-bottom: .5rem;
}

[class*="navbar-expand"] .navbar-nav .nav-link {
    padding-top: .5rem;
    padding-bottom: .5rem;
    border-bottom: .0625rem solid rgba(0, 0, 0, .1);
}

/*XL*/

/*LG*/

/*MD*/

/*SM*/

/*-------------------------------------------
  -- Page
-------------------------------------------*/

.ts-page-wrapper {
    overflow: hidden;
}

/*-------------------------------------------
  -- Partners
-------------------------------------------*/

.ts-partners a {
    display: block;
    padding: .625rem .3125rem;
}

/*-------------------------------------------
  -- Plugins
-------------------------------------------*/

.tv-site-widget {
    border: none !important;
}

iframe div {
    border: none;
}

/*-------------------------------------------
  -- Progress
-------------------------------------------*/
/*
.progress {
    background-color: transparent;
    border-radius: 0;
    height: 3rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: visible;
}
*/

/* Progress bar adjustments */
.progress {
  background: transparent;      
  border-radius: 0;
  height: 2.5rem;               
  margin-bottom: 1.5rem;
  position: relative;
  overflow: visible;
}

/* Title inside progress */
.progress .ts-progress-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;                  
  position: relative;
  z-index: 2;
}

/* Progress bar */
.progress .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, #7209b7, #3a0ca3);
  border-radius: 0;
  z-index: 1;
  transition: width 1s ease;
}

.progress .ts-progress-value {
    border: .125rem solid #fff;
    bottom: 0;
    padding: .125rem .375rem;
    position: absolute;
    left: 0%;
    transform: translateX(-1rem);
}

.progress .ts-progress-value:after {
    border-style: solid;
    border-width: .3125rem .3125rem 0 0;
    border-color: #fff transparent transparent transparent;
    bottom: -0.4375rem;
    content: "";
    left: .375rem;
    position: absolute;
}

/*
.progress .progress-bar {
    background-color: #581ca0;
    bottom: 0;
    height: .1875rem;
    position: absolute;
    width: 0%;
}
*/

.progress .progress-bar, .progress .ts-progress-value {
    transition: 1s ease;
}

/*-------------------------------------------
  -- Promo Numbers
-------------------------------------------*/

.ts-promo-number {
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.ts-promo-number figure {
    color: #581ca0;
    font-weight: 400;
}

/*-------------------------------------------
  -- Select
-------------------------------------------*/

select.form-control {
    box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
    border-radius: .25rem;
    cursor: pointer;
    height: 2.8125rem !important;
    margin-top: -0.125rem;
    padding: .5rem;
    -webkit-appearance: none;
       -moz-appearance: none;
    text-indent: .0625rem;
    text-overflow: '';
}

select.form-control:focus, select.form-control:hover {
    box-shadow: .375rem .3125rem 1.5625rem rgba(0, 0, 0, .2);
}

select::-ms-expand {
    display: none;
}

.select-wrapper {
    position: relative;
}

.select-wrapper:before {
    position: absolute;
    display: inline-block;
    font-weight: 900;
    text-rendering: auto;
    top: 0;
    margin: auto;
    bottom: 0;
    right: .9375rem;
    height: 1.875rem;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome\ 5 Free";
    content: "\f0dd";
}

/*-------------------------------------------
  -- Slider
-------------------------------------------*/

.ts-slider {
    height: 100% !important;
}

.ts-slider div {
    height: 100% !important;
}

/*-------------------------------------------
  -- Tabs
-------------------------------------------*/

.nav-tabs {
    border-bottom: none;
}

.nav-tabs h4 {
    font-weight: normal;
    margin-bottom: 0;
}

.nav-tabs .nav-link {
    background-color: transparent;
    border: none;
    border-bottom: .1875rem solid transparent;
    margin-left: .9375rem;
    margin-right: .9375rem;
    padding-right: 0;
    padding-left: 0;
    color: inherit;
    opacity: .5;
}

.nav-tabs .nav-link.active {
    color: #191919;
    background-color: transparent;
    border-bottom: .1875rem solid #581ca0;
    opacity: 1;
}

/***********************************************************************************************************************
D. Plugins Styles
***********************************************************************************************************************/

/*-------------------------------------------
  -- Magnific Popup
-------------------------------------------*/

/* overlay at start */

.mfp-fade.mfp-bg {
    opacity: 0;
    background-color: #000;
    -webkit-transition: all .15s ease-out;
       -moz-transition: all .15s ease-out;
            transition: all .15s ease-out;
}

/* overlay animate in */

.mfp-fade.mfp-bg.mfp-ready {
    opacity: .8;
}

/* overlay animate out */

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all .15s ease-out;
       -moz-transition: all .15s ease-out;
            transition: all .15s ease-out;
}

/* content animate it */

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

/* content animate out */

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/*-------------------------------------------
  -- Owl Carousel
-------------------------------------------*/

.owl-carousel .owl-stage, .owl-carousel .owl-stage-outer,
.owl-carousel .owl-item {
    height: 100%;
}

.owl-carousel .owl-dots {
    text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    padding: .3125rem;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background-color: #581ca0;
    opacity: 1;
}

.owl-carousel .owl-dots .owl-dot:hover span {
    background-color: #fff;
    opacity: .7;
}

.owl-carousel .owl-dots .owl-dot span {
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    height: .625rem;
    opacity: .2;
    transition: .3s ease;
    width: .625rem;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: -1.25rem;
    bottom: 0;
    height: 0;
    margin: auto;
    width: 100%;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
    background-color: rgba(255, 255, 255, .6);
    border-radius: 50%;
    box-shadow: 0 .125rem .3125rem rgba(0, 0, 0, .1);
    color: #fff;
    display: inline-block;
    height: 2.5rem;
    position: absolute;
    text-align: center;
    transition: .3s ease;
    width: 2.5rem;
}

.owl-carousel .owl-nav .owl-prev:after, .owl-carousel .owl-nav .owl-next:after {
    font-family: "Font Awesome\ 5 Free";
    font-weight: 900;
    font-size: 1.375rem;
    line-height: 2.5rem;
    -webkit-font-smoothing: antialiased;
}

.owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-next:hover {
    background-color: rgba(25, 25, 25, .8);
}

.owl-carousel .owl-nav .owl-next {
    right: .3125rem;
}

.owl-carousel .owl-nav .owl-next:after {
    content: "\f105";
    margin-left: .1875rem;
}

.owl-carousel .owl-nav .owl-prev {
    left: .3125rem;
}

.owl-carousel .owl-nav .owl-prev:after {
    content: "\f104";
    margin-right: .0625rem;
}

/***********************************************************************************************************************
E. Template Specific Elements
***********************************************************************************************************************/
.ts-bubble-border {
    display: inline-block;
    position: relative;
    transition: .6s ease;
}

.ts-bubble-border i {
    background-color: #fff;
    position: absolute;
    transition: .2s ease-in;
}

.ts-bubble-border i:nth-child(1) {
    top: 0;
    left: 0;
    height: .1875rem;
    width: 0%;
}

.ts-bubble-border i:nth-child(2) {
    height: 0%;
    right: 0;
    top: 0;
    width: .1875rem;
    transition-delay: .2s;
}

.ts-bubble-border i:nth-child(3) {
    bottom: 0;
    right: 0;
    height: .1875rem;
    width: 0%;
    transition-delay: .4s;
}

.ts-bubble-border i:nth-child(4) {
    height: 0%;
    left: 0;
    bottom: 0;
    width: .1875rem;
    transition-delay: .6s;
}

/*
.ts-bubble-border i:nth-child(5) {
    bottom: 0;
    opacity: 0;
    transition-delay: .6s;
    left: 2rem;
}
*/

/* Kill the triangle “tail” */
.ts-bubble-border i:nth-child(5),
.ts-bubble-border i:nth-child(5):after {
  display: none !important;
}

.ts-bubble-border i:nth-child(5):after {
    border-style: solid;
    border-width: .625rem .625rem 0 0;
    border-color: #fff transparent transparent transparent;
    content: "";
    position: absolute;
}

.ts-bubble-border .ts-title-rotate {
    left: 0;
    /*padding: 24px 36px;*/
    position: absolute;
    top: 0;
}

.ts-bubble-border .ts-title-rotate span {
    padding: 1.5rem 2.25rem;
    display: inline-block;
    position: absolute;
    transition: .8s ease;
    transition-delay: .3s;
    transform: translateY(-0.3125rem) rotate(.02deg);
    opacity: 0;
    white-space: nowrap;
}

.ts-bubble-border .ts-title-rotate span.active {
    opacity: 0;
    transform: translateY(-0.3125rem) rotate(.02deg);
}

.ts-bubble-border.in .ts-title-rotate span.active {
    opacity: 1;
    transform: translateY(0) rotate(.02deg);
}

.ts-bubble-border.in .ts-title-rotate span.out {
    opacity: 0;
    transform: translateY(.3125rem) rotate(.02deg);
}

.ts-bubble-border.in i:nth-child(1), .ts-bubble-border.in i:nth-child(3) {
    width: 100%;
}

.ts-bubble-border.in i:nth-child(2), .ts-bubble-border.in i:nth-child(4) {
    height: 100%;
}

.ts-bubble-border.in i:nth-child(5) {
    opacity: 1;
}

#ts-content .ts-bubble-border, #ts-footer .ts-bubble-border {
    padding: 1.5rem 2.25rem;
}

/*-------------------------------------------
  -- Centered Slider
-------------------------------------------*/

.ts-carousel-centered .slide {
    margin-bottom: 1rem;
    margin-top: 1rem;
    padding: 1rem;
}

.ts-carousel-centered .owl-item {
    perspective: 1000;
}

.ts-carousel-centered .owl-item .slide {
    opacity: .5;
    transition: .3s ease;
    transform: scale(.95);
}

.ts-carousel-centered .owl-item.active.center .slide {
    opacity: 1;
    transform: scale(1);
}

.ts-carousel-centered .owl-nav .owl-prev,
.ts-carousel-centered .owl-nav .owl-next {
    height: 3.75rem;
    width: 3.75rem;
}

.ts-carousel-centered .owl-nav .owl-prev:after,
.ts-carousel-centered .owl-nav .owl-next:after {
    font-size: 1.375rem;
    line-height: 3.75rem;
}

.ts-carousel-centered .owl-nav .owl-prev:hover,
.ts-carousel-centered .owl-nav .owl-next:hover {
    background-color: rgb(25, 25, 25);
}

.ts-carousel-centered .owl-nav .owl-next {
    right: 1.25rem;
}

.ts-carousel-centered .owl-nav .owl-prev {
    left: 1.25rem;
}

/*-------------------------------------------
  -- Hero Form Floated
-------------------------------------------*/

.floated {
    position: relative;
    width: 100%;
    z-index: 1;
    bottom: -1.875rem;
}

.floated form {
    position: relative;
    padding: 1.875rem 3.75rem;
}

/*-------------------------------------------
  -- Price Box
-------------------------------------------*/

.ts-price-box__promoted {
    box-shadow: .375rem .3125rem 1.5625rem rgba(0, 0, 0, .2);
    margin-top: -1.25rem;
    margin-bottom: .625rem;
    z-index: 2;
}

.ts-price-box__promoted .ts-title {
    transform: scale(1.2);
}

/*-------------------------------------------
  -- Time Line
-------------------------------------------*/

.ts-time-line__horizontal {
    padding-bottom: .625rem;
    padding-top: .625rem;
    position: relative;
    /* timeline line */
}

.ts-time-line__horizontal ul {
    padding-left: 1.875rem;
    list-style: none;
    position: relative;
}

.ts-time-line__horizontal:after {
    background-color: #474747;
    content: "";
    bottom: 6.875rem;
    height: .1875rem;
    left: 0;
    position: absolute;
    width: 100%;
}

.ts-time-line__horizontal .ts-time-line__item {
    flex: 0 0 auto;
    margin-right: 1.875rem;
    position: relative;
    width: 18.75rem;
}

.ts-time-line__horizontal .ts-time-line__item .ts-box {
    position: relative;
    /* dot */
}

.ts-time-line__horizontal .ts-time-line__item .ts-box:before {
    background-color: #474747;
    bottom: -4.375rem;
    border-radius: 100%;
    content: "";
    left: 1.6875rem;
    height: .75rem;
    position: absolute;
    width: .75rem;
}

.ts-time-line__horizontal .ts-time-line__item .ts-box {
    /*triangle*/
}

.ts-time-line__horizontal .ts-time-line__item .ts-box:after {
    border-color: #fff transparent transparent transparent;
    border-style: solid;
    border-width: .5rem .5rem 0 .5rem;
    bottom: -0.4375rem;
    content: "";
    left: 1.5625rem;
    height: 0;
    position: absolute;
    width: 0;
}

.ts-time-line__horizontal .ts-time-line__item.ts-time-line__milestone {
    width: 4.375rem;
}

.ts-time-line__horizontal .ts-time-line__item.ts-time-line__milestone .ts-box {
    background-color: #581ca0;
    color: #fff;
}

.ts-time-line__horizontal .ts-time-line__item.ts-time-line__milestone .ts-box:after {
    border-color: #581ca0 transparent transparent transparent;
}

.ts-time-line__horizontal .ts-time-line__item.ts-time-line__milestone h5 {
    writing-mode: vertical-lr;
    margin: 0;
}

.ts-time-line__horizontal .ts-time-line__item figure {
    margin-left: 1.875rem;
    margin-top: 4.6875rem;
}

.ts-time-line__horizontal .ts-time-line__item figure small {
    text-transform: uppercase;
    opacity: .4;
}

.ts-time-line__horizontal .ts-time-line__item figure small,
.ts-time-line__horizontal .ts-time-line__item figure h6 {
    font-weight: 600;
}

.ts-time-line__horizontal .owl-stage-outer {
    padding: 1rem 1rem 0 1rem;
}

.ts-time-line__horizontal .owl-stage {
    align-items: flex-end;
    display: flex;
}

.ts-time-line__horizontal .ts-sly-frame.ts-loaded > ul {
    align-items: flex-end;
    display: flex;
}

/*-------------------------------------------
  -- SVG Shapes
-------------------------------------------*/

.ts-svg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 0;
    z-index: -1;
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    margin: auto;
}

.ts-story:hover {
    color: #fff;
}

.ts-story:hover p {
    color: #fff;
}

.ts-story:hover .ts-background {
    background-color: #000 !important;
}

.ts-story:hover .ts-background-image {
    opacity: .4 !important;
}

.ts-story {
    margin-bottom: 2rem;
    padding: 14rem 2rem 2rem 2rem;
    position: relative;
}

.ts-story .ts-background, .ts-story .ts-background-image {
    transition: .3s ease;
}

.ts-story figure {
    background-color: #fff;
    color: rgba(25, 25, 25, .2);
    font-weight: 500;
    position: absolute;
    top: -0.375rem;
    left: 3rem;
    padding: 1rem;
    transform: rotate(-90deg);
    transform-origin: bottom;
}

/*-------------------------------------------
  -- Other
-------------------------------------------*/

#testimonials {
  color: #fff; 
  padding-bottom: 80px;
}

/* Target words needing spacing tweaks for visual balance */
.adjust-spacing {
  display: inline-block;
  margin-right: 21%;   
  /*letter-spacing: 5px; */
}

/* Make it responsive-safe */
@media (max-width: 768px) {
  .adjust-spacing {
    margin-left: 2px;
    letter-spacing: 0.2px;
  }
}

/* ============================================
  SEE LESS INDUSTRIES
   ============================================ */
.extra-industries {
  display: block; 
}

/* =========================================================
   COUNTUP SECTION — COMPACT v3 (Ultra Balanced)
   ========================================================= */
.promo-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: clamp(28px, 4vh, 42px) 0 clamp(20px, 3.5vh, 38px); 
  color: #fff;
  overflow: hidden;
}

/* Container */
.ts-promo-numbers {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Summary sentence — refined alignment and color */
.promo-summary-row {
  margin-top: -20%;       
  margin-bottom: 12px;   
}

.promo-summary {
  font-size: clamp(1rem, 0.6rem + 1vw, 1.3rem); 
  font-weight: 600;
  color: #fff;           
  max-width: 880px;       
  margin: 0 auto 0 0;
  letter-spacing: 0.55px;
  line-height: 1.45;
  position: relative;
  left: 5%;               
}



/* Stat container */
.ts-promo-number {
  margin-bottom: 18px; /* tighter between rows */
}

/* Prefix + number + suffix alignment */
.stat-value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
  line-height: 1;
}

/* Main number */
.count-number {
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  font-weight: 800;
  color: #581ca0;
  line-height: 1;
  display: inline-block;
  margin: 0 0.03em;
}

/* Prefix & suffix */
.stat-value .prefix,
.stat-value .suffix {
  font-size: clamp(1.25rem, 4vw, 2.3rem);
  font-weight: 700;
  color: #581ca0;
  line-height: 1;
  letter-spacing: -0.01em;
  transform: translateY(-0.04em);
  display: inline-block;
}

/* Labels under each stat */
.ts-promo-number h5 {
  margin-top: 6px;
  font-size: clamp(0.9rem, 0.75rem + 0.5vw, 1.05rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  letter-spacing: 0.25px;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

/* Overlay for subtle contrast */
.promo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.04);
  z-index: 1;
}

/* =========================
   RESPONSIVE OPTIMIZATION
   ========================= */
@media (max-width: 768px) {
  .promo-section {
    padding: 28px 0 25px;
  }


  .count-number {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .stat-value .prefix,
  .stat-value .suffix {
    font-size: clamp(1.1rem, 7vw, 1.8rem);
  }

  .ts-promo-number h5 {
    font-size: 0.9rem;
    margin-top: 3px;
  }
}


/* =========================================================
   ABOUT SEI — Inline Counter Block (Compact Integration)
   ========================================================= */
#about-sei .about-counter {
  background: transparent;
  padding: 10px 0 0;
 padding-top: 60px; 
  margin-top: 20px; /* spacing below the buttons */
}

/* Each stat block */
#about-sei .about-counter .ts-promo-number {
  margin-bottom: 12px;
}

/* Main number */
#about-sei .about-counter .count-number {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: #581ca0;
  font-weight: 800;
  line-height: 1;
}

/* Prefix & suffix — 20% smaller */
#about-sei .about-counter .stat-value .prefix,
#about-sei .about-counter .stat-value .suffix {
  font-size: clamp(1rem, 3vw, 1.8rem);
  color: #581ca0;
  font-weight: 700;
  transform: translateY(-0.04em);
  display: inline-block;
}

/* Label under each stat */
#about-sei .about-counter h5 {
  font-size: clamp(0.8rem, 1vw, 1rem);
  color: #fff;
  margin-top: 4px;
  font-weight: 600;
  line-height: 1.3;
}

/* Summary line above the counter */
#about-sei .about-counter .promo-summary {
  color: #fff;
  font-weight: 600;
  font-size: clamp(0.55rem, 0.3rem + 0.5vw, 0.75rem); 
  margin-bottom: 0.8rem;
}

/* Mobile optimization */
@media (max-width: 768px) {
  #about-sei .about-counter {
    margin-top: 18px;
  }

  #about-sei .about-counter .count-number {
    font-size: 1.4rem;
  }

  #about-sei .about-counter .stat-value .prefix,
  #about-sei .about-counter .stat-value .suffix {
    font-size: 1.2rem;
  }

  #about-sei .about-counter h5 {
    font-size: 0.85rem;
  }
}

/* ============================================
   ABOUT SEI — Align text to top, buttons to bottom
   ============================================ */
.about-content-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  align-items: flex-end;          
  height: 100%;
  font-size: 1.3rem;
  padding-bottom: 1px;
  text-align: left;               
}



/* optional — if columns aren’t full-height yet */
.ts-align__vertical {
  align-items: stretch; 
}

/* keep buttons grouped at bottom but lifted 10px */
.about-buttons {
  margin-top: auto;     
  transform: translateY(-41px);     

}

/* optional: tweak button spacing if needed */
.about-buttons a {
  margin-bottom: 4px;
}

/* ============================================
   ABOUT SEI — Subtle Divider Styling
   ============================================ */
.ts-hr-light {
  border: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(88,28,160,0.6) 50%, rgba(255,255,255,0) 100%);
  width: 100%;
  margin: 25px 0;
}

/* ===============================
   ABOUT SEI — Hyperlink Styling
   =============================== */
#about-sei a {
  color: #ffffff; /* Default SEI purple */
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

#about-sei a:hover,
#about-sei a:focus {
  color: #581ca0; 
  text-decoration: underline;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

#about-sei a:active {
  color: #ffffff; /* Back to purple on click */
  text-shadow: none;
}

/* Prevent affecting button links */
#about-sei .btn a {
  color: inherit;
  text-decoration: none;
}

#about-sei .btn a:hover {
  color: inherit;
  text-decoration: none;
}

/* =======================================
   SEI Team Section (3-column responsive)
   ======================================= */
#sei-team {
  background: #fff;
  color: #000;
  padding-top: clamp(40px, 6vh, 80px);
  padding-bottom: clamp(40px, 6vh, 80px);
margin-top: 60px; 
}

#sei-team .ts-title h2 {
  font-weight: 700;
  letter-spacing: 1px;
}

.team-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.team-photo {
  width: 100%;
  height: auto;
  border-radius: 2px;
  margin-bottom: 12px;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #00123d;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.95rem;
  color: #444;
  font-weight: 500;
}

/* ===============================
   Responsive stacking adjustments
   =============================== */
@media (max-width: 768px) {
  .team-card {
    margin-bottom: 25px;
  }

  .team-photo {
    width: 85%;        
    margin: 0 auto 12px;  
    display: block;
  }

  #sei-team {
    margin-top: 40px; 
  }
}

/* ============================================
   MANAGING PARTNER SPOTLIGHTS (SIDE-BY-SIDE)
   ============================================ */
#partner-spotlights {
  background: #000;
  color: #fff;
  padding: 30px 0;
  font-family: Arial, sans-serif;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

/* Container for both partner cards */
.partners-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

/* Individual card */
.partner-card {
  flex: 1 1 45%;
  max-width: 600px;
  background: transparent;
  color: #fff;
}

/* Top row: image + bullets */
.partner-header {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.partner-photo {
  width: 220px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.partner-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

/* Bullet list */
.partner-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.partner-bullets li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
  font-size: 0.9rem; 
  line-height: 1.45;
}

.partner-bullets li::before {
  content: "▪";
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 0.7rem;
  color: #fff;
}

/* Expertise section */
.expertise {
  margin-top: 25px;
  width: 100%;
}

.expertise h4 {
  color: #581ca0;
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

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

.expertise li {
  border-bottom: 2px solid #581ca0;
  padding: 6px 0;
  font-size: 0.9rem;
}

/* Responsive stacking for mobile */
@media (max-width: 991px) {
  .partners-wrap {
    flex-direction: column;
    align-items: center;
  }

  .partner-card {
    max-width: 90%;
  }

  .partner-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .partner-photo {
    width: 200px;
  }

  .partner-info h3 {
    text-align: center;
  }

  .partner-bullets {
    text-align: left;
    margin-top: 8px;
  }

  .expertise {
    text-align: center;
  }
}

/* ===============================
   Strategic Partner Spotlight 
   =============================== */
#strategic-spotlight {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 0;
  max-width: 1100px;      
  margin: 0 auto 80px;    
  overflow: hidden;
}

.spotlight-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* LEFT INFO PANEL */
.spotlight-info {
  flex: 0 0 32%;
  background: linear-gradient(180deg, #581ca0 0%, #360670 100%);
  padding: 60px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  text-align: center;  
}

.spotlight-info .icon {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-info h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.spotlight-info p {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 90%;
}

/* RIGHT IMAGE PANEL */
.spotlight-image-container {
  flex: 0 0 68%;
  position: relative;
}

.spotlight-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* CTA BELOW IMAGE */
.spotlight-cta {
  background: #fff;
  text-align: center;
  padding: 25px 10px 30px;
  width: 100%;
}

/* Replace Font Awesome icon with custom image */
.spotlight-info .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.spotlight-info .spotlight-icon-img {
  width: 64px;         /* adjust to match visual balance */
  height: auto;
  object-fit: contain;
  filter: brightness(1) contrast(1.05);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.spotlight-info .spotlight-icon-img:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}

/* =======================================================
   INSIGHTS CTA — Image-on-Hover Background
   ======================================================= */

.insights-cta {
  position: relative;
  padding: 5px 10px 30px;
  width: 100%;
  text-align: center;
}

/* Base button */
.insights-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 1.15rem;
  font-weight: 500;
  transition: all 0.4s ease;
  text-align: center;
  background: transparent;
  overflow: hidden;
  z-index: 1;
}

/* === Hover Background Image Layer === */
.insights-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hover-gen-ai-strip.png");
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: -2;
}

/* === Dark Overlay for Legibility === */
.insights-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: -1;
}

/* === Hover State === */
.insights-button:hover::before {
  opacity: 1;
}
.insights-button:hover::after {
  opacity: 1;
}

/* Text + border remain white */
.insights-button:hover {
  color: #fff;
  border-color: #fff;
  background: none;
}

/* Optional arrow box styling () */
.insights-button .arrow-box {
  background: #581ca0;
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background 0.3s ease;
}

/* === Arrow box on hover: reverse to white bg / purple arrow === */
.insights-button:hover .arrow-box {
  background: #fff;           
  color: #581ca0;             
}

/* =======================================================
   STRATEGIC PARTNER SPOTLIGHT CTA BANNER (NON-CONFLICTING)
   ======================================================= */
.spotlight-banner-cta {
  position: relative;
  padding: 10px 10px 40px;
  width: 100%;
  text-align: center;
}

/* Main button */
.spotlight-banner-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 1.15rem;
  font-weight: 500;
  transition: all 0.4s ease;
  text-align: center;
  background: transparent;
  overflow: hidden;
  z-index: 1;
}

/* === Hover background === */
.spotlight-banner-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hover-spotlight-strip.png"); 
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: -2;
}

/* === Overlay for readability === */
.spotlight-banner-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: -1;
}

/* === Hover activation === */
.spotlight-banner-button:hover::before {
  opacity: 1;
}
.spotlight-banner-button:hover::after {
  opacity: 1;
}

.spotlight-banner-button:hover {
  color: #fff;
  border-color: #fff;
  background: none;
}

/* Arrow Box */
.spotlight-banner-button .arrow-box {
  background: #581ca0;
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.spotlight-banner-button:hover .arrow-box {
  background: #fff;
  color: #581ca0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .spotlight-banner-button {
    padding: 12px 22px;
    font-size: 1rem;
  }

  .spotlight-banner-button .arrow-box {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

.spotlight-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 1.15rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center; 
}

/* Hover: SEI purple background with white text */
.spotlight-button:hover {
  background: #fff;
  color: #581ca0;
  border-color: #581ca0; 
}

.spotlight-button-partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  gap: 15px;
  color: #581ca0;
  text-decoration: none;
  border: none;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 1.15rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center; 
}

.spotlight-button-partner:hover {
   color: #063271;
   border: 2px solid #063271;
   border-radius: 4px;
}

.spotlight-button-partner:hover .arrow-box {
  background: #063271;
}

/* Arrow box */
.arrow-box {
  background: #581ca0;
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.spotlight-button:hover .arrow-box {
  background: #360670;
}

/* ===============================
   Responsive Design
   =============================== */
@media (max-width: 991px) {
  #strategic-spotlight {
    max-width: 100%;
    margin: 0 auto 60px;
  }

  .spotlight-wrapper {
    flex-direction: column;
  }

  .spotlight-info {
    flex: 1 1 100%;
    padding: 40px 20px;
  }

  .spotlight-info h2 {
    font-size: 1.6rem;
  }

  .spotlight-info p {
    font-size: 1rem;
    max-width: 95%;
  }

  .spotlight-image-container {
    flex: 1 1 100%;
  }

  .spotlight-cta {
    padding: 20px 10px 25px;
  }

  .spotlight-button {
    flex-direction: column;
    gap: 8px;
    font-size: 1rem;
    padding: 14px 22px;
  }

  .arrow-box {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

/* =====================================================================
   SEI Carousel (Refactored & Consolidated)
   ===================================================================== */

/* === BASE SECTION ==================================================== */
#sei-carousel {
  position: relative;
  color: #fff;
  padding: 0 0 clamp(30px, 6vh, 80px);
  overflow: hidden;
}

/* Disable background image layers */
#sei-carousel::before,
#sei-carousel .ts-background,
#sei-carousel .ts-background-image {
  display: none !important;
}

/* Container */
#sei-carousel .container {
  position: relative;
  z-index: 2;
  padding-top: clamp(20px, 4vh, 60px);
}

/* Title styling */
#sei-carousel .ts-title {
  margin-bottom: 2rem;
}
#sei-carousel .ts-title h2 {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* === MAIN CAROUSEL STRUCTURE ======================================== */
.carousel-container {
  width: 80%;
  max-width: 1200px;
  height: 450px;
  margin: 0 auto 50px;
  position: relative;
  perspective: 1000px;
}

.carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === CARDS =========================================================== */
.custom-card {
  position: absolute;
  width: 280px;
  height: 380px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.custom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}

/* === DEPTH POSITIONS ================================================ */
.custom-card.center {
  z-index: 10;
  transform: scale(1.1) translateZ(0);
}
.custom-card.left-1,
.custom-card.right-1 {
  z-index: 5;
  transform: scale(0.9) translateZ(-100px);
  opacity: 0.9;
}
.custom-card.left-2,
.custom-card.right-2 {
  z-index: 1;
  transform: scale(0.8) translateZ(-300px);
  opacity: 0.7;
}
.custom-card.left-1 { transform: translateX(-200px) scale(0.9) translateZ(-100px); }
.custom-card.left-2 { transform: translateX(-400px) scale(0.8) translateZ(-300px); }
.custom-card.right-1 { transform: translateX(200px) scale(0.9) translateZ(-100px); }
.custom-card.right-2 { transform: translateX(400px) scale(0.8) translateZ(-300px); }

.custom-card.hidden {
  opacity: 0;
  pointer-events: none;
}

/* === MEMBER INFO (OPTIONAL TEXT) ==================================== */
.member-info {
  text-align: center;
  margin-top: 40px;
}
.member-name {
  font-size: 2.6rem;
  font-weight: 500;
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.member-role {
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #581ca0 0%, #8d4cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  opacity: 0.95;
}

/* === DOT NAVIGATION ================================================ */
.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 14px;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(54, 6, 112, 0.6), rgba(54, 6, 112, 0.3));
  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: linear-gradient(135deg, #360670 0%, #5d14b8 100%);
  box-shadow:
    0 0 10px rgba(93, 20, 184, 0.6),
    0 3px 8px rgba(0, 0, 0, 0.25);
  transform: scale(1.35);
}
.dot:hover {
  transform: scale(1.25);
  box-shadow: 0 0 8px rgba(93, 20, 184, 0.45);
}

/* === ARROWS ========================================================= */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(88, 28, 160, 0.9);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s;
  font-size: 1.5rem;
  border: none;
}
.nav-arrow.left { left: 20px; }
.nav-arrow.right { right: 20px; }
.nav-arrow:hover {
  background: #581ca0;
  box-shadow: 0 0 12px rgba(93, 20, 184, 0.6);
  transform: translateY(-50%) scale(1.1);
}

/* === CARD TITLE OVERLAY (Hover) ===================================== */
.custom-card .card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
}

.custom-card .card-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  padding: 0 15px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.custom-card:hover .card-overlay {
  opacity: 1;
}

/* === RESPONSIVE ===================================================== */
@media (max-width: 768px) {
  .custom-card {
    width: 200px;
    height: 280px;
  }
  .custom-card.left-1 { transform: translateX(-120px) scale(0.9) translateZ(-100px); }
  .custom-card.left-2 { transform: translateX(-250px) scale(0.8) translateZ(-300px); }
  .custom-card.right-1 { transform: translateX(120px) scale(0.9) translateZ(-100px); }
  .custom-card.right-2 { transform: translateX(250px) scale(0.8) translateZ(-300px); }

  .custom-card .card-title {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}

/* =========================================================
   HOVER THUMBNAIL — MINI STRIP ABOVE CAROUSEL
   ========================================================= */
.sei-hover-thumb {
  width: 200px;
  height: 280px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.sei-hover-thumb:hover {
  transform: translateY(-5px);
}

.sei-hover-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sei-hover-thumb:hover img {
  transform: scale(1.1);
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.thumb-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.thumb-text p {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.3;
}

.sei-hover-thumb:hover .thumb-overlay {
  opacity: 1;
}


/* Responsive tweak for small screens */
@media (max-width: 768px) {
  .sei-hover-thumb {
    width: 160px;
    height: 220px;
  }
}

/* =======================================================
   CONTACT SECTION ICONS — Responsive Flex Layout (Font Awesome Integrated)
   ======================================================= */
#contact .contact-icons {
  display: flex;
  flex-direction: row;          
  justify-content: center;
  align-items: flex-start;
  gap: 60px;                    
  margin-top: 40px;
  flex-wrap: wrap;              
}

#contact .contact-icon-link {
  display: flex;
  flex-direction: column;       
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* === Font Awesome Icon Styling === */
#contact .contact-icon {
  font-size: 3.4rem;            
  margin-top: 10px;
  transition: transform 0.3s ease, text-shadow 0.3s ease, color 0.3s ease;
}

/* Hover: SEI subtle violet glow */
#contact .contact-icon-link:hover .contact-icon {
  transform: scale(1.1);
  color: #581ca0;              
  text-shadow: 0 0 10px rgba(88, 28, 160, 0.7);
}

/* === Label Styling === */
#contact .contact-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color 0.3s ease;
}

/* Label hover color transition */
#contact .contact-icon-link:hover .contact-label {
  color: #581ca0;
}

/* === MOBILE VIEW — Stack vertically === */
@media (max-width: 768px) {
  #contact .contact-icons {
    flex-direction: column;     
    align-items: center;
    gap: 28px;
  }

  #contact .contact-icon {
    font-size: 2.6rem;          
  }
}

/* ========================================
   Title Animate — Slide from Right to Center
   ======================================== */
.title-animate {
  opacity: 0;
  transform: translateX(-280px);
}

.title-animate.is-visible {
  animation: titleSlideIn .9s cubic-bezier(0.22, 1.61, 0.36, 1) forwards;
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-280px);
  }
  70% {
    opacity: 1;
    transform: translateX(2px); 
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   Footer Push up
   ======================================== */

#ts-footer .ts-box {
    margin-top: -3.125rem;
}

.ts-tabs-presentation .tab-pane img {
    opacity: 0;
    transition: .3s ease;
    transform: translateY(1.25rem);
}

.ts-tabs-presentation .tab-pane.show.active img {
    opacity: 1;
    transform: translateY(0);
}

/* Hero navigation arrows */

#ts-hero .owl-prev, #ts-hero .owl-next {
    background-color: transparent;
    border: .125rem solid rgba(255, 255, 255, .8);
}

#ts-hero .owl-prev:after, #ts-hero .owl-next:after {
    line-height: 2.25rem;
}

/* Hero slider height */

.ts-hero-slider {
    height: 100% !important;
}

.ts-hero-slider div {
    height: 100% !important;
}

@media (min-width: 36rem) and (max-width: 47.9375rem) {
    html {
        font-size: 85%;
    }

    h1, .ts-h1 {
        font-size: 2.5rem;
    }

    h2, .ts-h2 {
        font-size: 1.625rem;
    }

    h3, .ts-h3 {
        font-size: 1.25rem;
    }

    .ts-column-count-sm-1 {
        column-count: 1;
    }

    .ts-column-count-sm-2 {
        column-count: 2;
    }

    .ts-column-count-sm-3 {
        column-count: 3;
    }

    .ts-column-count-sm-4 {
        column-count: 4;
    }

    .ts-promo-number figure {
        font-size: 2.375rem;
    }
}

@media (min-width: 48rem) and (max-width: 61.9375rem) {
    html {
        font-size: 90%;
    }

    h1, .ts-h1 {
        font-size: 3rem;
    }

    h2, .ts-h2 {
        font-size: 1.875rem;
    }

    h3, .ts-h3 {
        font-size: 1.375rem;
    }

    .ts-column-count-md-1 {
        column-count: 1;
    }

    .ts-column-count-md-2 {
        column-count: 2;
    }

    .ts-column-count-md-3 {
        column-count: 3;
    }

    .ts-column-count-md-4 {
        column-count: 4;
    }

    .ts-promo-number figure {
        font-size: 2.5rem;
    }
}

@media (min-width: 62rem) and (max-width: 74.9375rem) {
    html {
        font-size: 95%;
    }

    h1, .ts-h1 {
        font-size: 3.125rem;
    }

    h2, .ts-h2 {
        font-size: 2rem;
    }

    h3, .ts-h3 {
        font-size: 1.375rem;
    }

    .ts-column-count-lg-1 {
        column-count: 1;
    }

    .ts-column-count-lg-2 {
        column-count: 2;
    }

    .ts-column-count-lg-3 {
        column-count: 3;
    }

    .ts-column-count-lg-4 {
        column-count: 4;
    }

    .ts-block {
        padding-bottom: 6.25rem;
        padding-top: 6.25rem;
    }

    .ts-card__image {
        height: 12.5rem;
    }

    .ts-promo-number figure {
        font-size: 2.75rem;
    }
}

@media (min-width: 75rem) {
    html {
        font-size: 100%;
    }

    h1, .ts-h1 {
        font-size: 3.5rem;
    }

    h2, .ts-h2 {
        font-size: 2.25rem;
    }

    h3, .ts-h3 {
        font-size: 1.875rem;
    }

    .ts-column-count-xl-1 {
        column-count: 1;
    }

    .ts-column-count-xl-2 {
        column-count: 2;
    }

    .ts-column-count-xl-3 {
        column-count: 3;
    }

    .ts-column-count-xl-4 {
        column-count: 4;
    }

    .ts-block {
        padding-bottom: 8.125rem;
        padding-top: 8.125rem;
    }

    .ts-card__image {
        height: 15.625rem;
    }

    .navbar.navbar-expand-xl .navbar-nav {
        align-items: center;
    }

    .navbar.navbar-expand-xl .navbar-nav .nav-link {
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-bottom: none;
    }

    .navbar.navbar-expand-xl .ts-background {
        opacity: 0;
    }

    .ts-promo-number figure {
        font-size: 3.75rem;
    }

    .ts-carousel-centered .owl-nav .owl-next {
        right: 5rem;
    }

    .ts-carousel-centered .owl-nav .owl-prev {
        left: 5rem;
    }

    .floated form {
        padding: 2.5rem 5rem;
    }
}

@media (max-width: 35.9375rem) {
    h1, .ts-h1 {
        margin-bottom: 1.25rem;
    }

    [class*="ts-column-count-"] {
        column-count: 1;
    }

    .ts-xs-text-center {
        text-align: center !important;
    }

    .ts-title {
        margin-bottom: 1.875rem;
    }

    .ts-promo-number figure {
        font-size: 2.25rem;
    }
}

@media (min-width: 36rem) and (max-width: 61.9375rem) {
    h1, .ts-h1 {
        margin-bottom: 1.875rem;
    }

    .ts-title {
        margin-bottom: 3.125rem;
    }

    .ts-block-inside {
        padding: 2.5rem;
    }
}

@media (min-width: 62rem) {
    h1, .ts-h1 {
        margin-bottom: 2.5rem;
    }

    .ts-title {
        margin-bottom: 5rem;
    }

    .ts-block-inside {
        padding: 3.75rem;
    }

    .navbar.navbar-expand-lg .navbar-nav {
        align-items: center;
    }

    .navbar.navbar-expand-lg .navbar-nav .nav-link {
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-bottom: none;
    }

    .navbar.navbar-expand-lg .ts-background {
        opacity: 0;
    }

    .floated {
        position: absolute;
    }
}

@media (max-width: 47.9375rem) {
    h4, .ts-h4 {
        font-size: 1.125rem;
    }
}

@media (min-width: 48rem) {
    h4, .ts-h4 {
        font-size: 1.5rem;
    }

    .navbar.navbar-expand-md .navbar-nav {
        align-items: center;
    }

    .navbar.navbar-expand-md .navbar-nav .nav-link {
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-bottom: none;
    }

    .navbar.navbar-expand-md .ts-background {
        opacity: 0;
    }
}

@media (max-width: 61.9375rem) {
    .ts-card__image {
        height: 15.625rem;
    }
}

@media (min-width: 36rem) {
    .navbar.navbar-expand-sm .navbar-nav {
        align-items: center;
    }

    .navbar.navbar-expand-sm .navbar-nav .nav-link {
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-bottom: none;
    }

    .navbar.navbar-expand-sm .ts-background {
        opacity: 0;
    }

    .ts-carousel-centered .owl-nav .owl-next {
        right: 2.5rem;
    }

    .ts-carousel-centered .owl-nav .owl-prev {
        left: 2.5rem;
    }
}

/* ==========================================================
   GLOBAL LAYOUT SPACING SYSTEM — FINAL CONSOLIDATED VERSION
   ========================================================== */

/* -------------------------------------------
   SECTION & CONTAINER BASE SPACING
------------------------------------------- */
section,
.ts-block {
  padding-top: 30px;
  padding-bottom: 5px;
}

section .container {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* -------------------------------------------
   SECTION TITLES (h2 + wrappers)
------------------------------------------- */
.ts-title,
.title-animate {
  margin-top: 20px;
  margin-bottom: 1.75rem; 
  text-align: center;
}

.ts-title h2,
.title-animate h2 {
  margin: 0;
  padding: 0;
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  line-height: 1.25;
  color: #fff;
}

/* -------------------------------------------
   BUTTON GROUPS & CTAs
------------------------------------------- */
.ts-btn-effect,
.btn,
.spotlight-button {
  margin-top: 1rem;
}

.about-buttons {
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* -------------------------------------------
   PROMO SUMMARY FIX (keeps text visible in mobile)
------------------------------------------- */
.promo-summary-row {
  margin-top: -8%;
  margin-bottom: 12px;
}

.promo-summary {
  font-size: clamp(1rem, 0.6rem + 1vw, 1.2rem);
  font-weight: 600;
  color: #fff;
  text-align: center;
  max-width: 880px;
  letter-spacing: 0.55px;
  line-height: 1.45;
  position: relative;
  left: 0;
  padding: 0 1rem;
}

/* -------------------------------------------
   RESPONSIVE OPTIMIZATION
------------------------------------------- */
@media (max-width: 768px) {
  section,
  .ts-block {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  section .container {
    padding-top: 30px;  
  }

  .ts-title,
  .title-animate {
    margin-bottom: 1.2rem;
  }

  .ts-title h2,
  .title-animate h2 {
    font-size: clamp(1.4rem, 6vw, 1.9rem); 
  }

  .ts-btn-effect,
  .btn,
  .spotlight-button {
    margin-top: 1rem;
    margin-bottom: 15%;
  }

  #sei-carousel .ts-title h2{
    padding-top: 5px;
  }

  .promo-summary {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 95%;
    padding: 0 1rem;
  }

  .about-buttons {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
}

/* ============================================
   RESPONSIVE OPTIMIZATION — ARROW BOX
   ============================================ */
@media (max-width: 768px) {
  .insights-button .arrow-box {
    width: 60px;      /* smaller box */
    height: 36px;
    font-size: 1rem;  /* reduce arrow size */
    margin-right: 6px; /* gentle breathing room */
  }
}

@media (max-width: 480px) {
  .insights-button .arrow-box {
    width: 60px;
    height: 30px;
    font-size: 0.9rem;
    margin-right: 4px;
  }
}

/* === Fix titles disappearing or shrinking on very small screens (e.g., Galaxy Fold) === */
@media (max-width: 400px) {
  .ts-title h2,
  .title-animate h2 {
    font-size: 1.25rem;   
    line-height: 1.3;
    margin-top: 0.5rem;   
    margin-bottom: 1rem;  
  }

  section,
  .ts-block {
    /*padding-top: 40px;*/    
  }
}

/* Responsive adjustments for about sei buttons */
@media (max-width: 768px) {
  .about-buttons {
    justify-content: center;        
    transform: translateY(-20px);  
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .about-buttons {
    transform: translateY(-25px);  
    gap: 0.4rem;
  }
}

/* Keep counters centered but not the summary line */
.ts-promo-numbers {
  margin: 0 auto;
  padding: 0;
}

/* Center only the numbers row, not the top summary */
.ts-promo-numbers .numbers-row {
  text-align: center;
}

/* Layout fix for promo summary alignment */
.promo-summary-row {
  display: flex;
  justify-content: center; 
  margin: 0;
  padding: 0;
}

.promo-summary {
  font-size: clamp(1.05rem, 0.8rem + 1vw, 1.5rem);
  font-weight: 600;
  color: #fff;
  max-width: 100%;
  margin: 0 auto;
  letter-spacing: 0.8px;
  word-spacing: 1.2px;
  line-height: 1.45;
  text-align: left;        
  padding-left: 15px;      
}

/* ===========================================
   PHILOSOPHY BOX 
   =========================================== */
.philosophy-box {
  border-radius: 4px;
  padding: 0;                                   
  margin: 0 auto;
  max-width: 880px;
  text-align: center;
  transition: border 0.35s ease;
}

.philosophy-box p {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.65;
  margin: 0.8rem 1.4rem;                        
}

/* First paragraph slightly tighter */
.philosophy-box p:first-of-type {
  margin-top: 0.6rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .philosophy-box {
    border-width: 1px;
    border-radius: 3px;
  }

  .philosophy-box p {
    font-size: 1.12rem;
    line-height: 1.55;
    margin: 0.75rem 1.1rem;
  }
}

.ts-promo-numbers {
  position: relative;
  top: -35px; 
}

/* ===========================================
   ABOUT SEI BOX — Executive Precision Edition
   =========================================== */
.about-box {
  background: rgba(255, 255, 255, 0.04);        
  border: 1px solid rgba(255, 255, 255, 0.15); 
  border-radius: 4px;
  padding: 0;                                  
  margin: 0 auto;
  max-width: 880px;
  text-align: left;
  box-shadow:
    inset 0 0 16px rgba(255, 255, 255, 0.04),
    0 0 14px rgba(88, 28, 160, 0.18);          
  transition: border 0.35s ease, box-shadow 0.35s ease;
}

/* Paragraph inside the box */
.about-box p {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.68;
  margin: 1rem 1.4rem;                          
  letter-spacing: 0.15px;                       
}

/* Optional hover glow for subtle liveliness */
.about-box:hover {
  border-color: rgba(88, 28, 160, 0.35);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.05),
    0 0 18px rgba(88, 28, 160, 0.28);
}

/* Responsive precision */
@media (max-width: 768px) {
  .about-box {
    border-width: 1px;
    border-radius: 3px;
  }

  .about-box p {
    font-size: 1.12rem;
    line-height: 1.55;
    margin: 0.75rem 1rem;
  }
}

/* ===============================
   CONTACT SECTION
   =============================== */
footer #contact.ts-block {
  padding-bottom: 80px;
}

/* ===============================
   HERO SCROLL BUTTON 
   =============================== */
/* === SEI Scroll Button — unified with house animation system === */
.sei-scroll-btn {
  position: absolute;
  bottom: 24px;
  left: 13.5%;                      
  z-index: 10;
  cursor: pointer;
  text-decoration: none;
}

.sei-scroll-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #fff;
  background: transparent;
  transition: all 0.35s ease;
}

.sei-scroll-inner i {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  transition: all 0.35s ease;
}

/* hover: invert colors with a short vertical glide */
.sei-scroll-inner:hover {
  background: #000;
  border-color: #fff;
  transform: translateY(4px);
}

.sei-scroll-inner:hover i {
  color: #fff;
}

/* Responsive — center for narrow hero layouts */
@media (max-width: 768px) {
  .sei-scroll-btn {
    left: 10%;
    bottom: 10px;
    transform: translateX(-50%);
  }
}

/* Center text on any non-desktop (tablet + mobile) */
@media (max-width: 1024px) {
  .promo-summary {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    max-width: 95%;
  }
}
