/* =================================================================== 
 * Infinity Main Stylesheet
 * Template Ver. 2.0.0
 * 12-17-2021
 * ------------------------------------------------------------------
 *
 * TOC:
 * # SETTINGS
 *      ## fonts 
 *      ## colors
 *      ## spacing and typescale
 *      ## grid variables
 * # NORMALIZE
 * # BASE SETUP
 * # GRID
 *      ## large screen devices 
 *      ## medium screen devices 
 *      ## tablet devices 
 *      ## mobile devices 
 *      ## small screen devices 
 *      ## additional column stackpoints 
 * # UTILITY CLASSES
 * # TYPOGRAPHY 
 *      ## base type styles
 *      ## additional typography & helper classes
 *      ## lists
 *      ## spacing
 * # PRELOADER
 * # FORM
 *      ## style placeholder text
 *      ## change autocomplete styles in Chrome
 * # BUTTONS
 * # TABLE
 * # COMPONENTS
 *      ## pagination
 *      ## alert box 
 *      ## skillbars
 *      ## stats tabs
 * # PROJECT-WIDE SHARED STYLES
 *      ## media classes
 *      ## swiper overrides
 *      ## section header
 *      ## theme-specific typography classes
 * # PAGE WRAP
 * # SITE HEADER
 *      ## logo
 *      ## menu toggle
 *      ## off-canvas menu
 *      ## header social
 * # INTRO
 *      ## intro background
 *      ## intro content
 *      ## intro social
 *      ## intro scroll
 * # ABOUT
 * # SERVICES
 *      ## services background
 *      ## services list
 * # PORTFOLIO
 *      ## portfolio list
 *      ## testimonials
 *      ## clients
 * # CONTACT
 *      ## contact infos
 *      ## contact bottom
 * # FOOTER
 *      ## copyright
 *      ## go top
 *
 * ------------------------------------------------------------------ */


/* ===================================================================
 * # SETTINGS
 *
 *
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## fonts 
 * ------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
    --font-1 : "Lora", serif;
    --font-2 : "Inter", sans-serif;

    /* monospace
    */
    --font-mono : Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

/* ------------------------------------------------------------------- 
 * ## colors
 * ------------------------------------------------------------------- */
:root {

    /* color-1(#F9A828)
     * color-2(#07617D)
     */
    --color-1 : rgb(255, 255, 255);
    --color-2 : hsla(194, 89%, 26%, 1);

    /* theme color variations
     */
    --color-1-lighter : hsla(37, 95%, 77%, 1);
    --color-1-light   : hsla(37, 95%, 67%, 1);
    --color-1-dark    : hsla(37, 95%, 47%, 1);
    --color-1-darker  : hsla(37, 95%, 37%, 1);
    --color-2-lighter : hsla(194, 89%, 46%, 1);
    --color-2-light   : hsla(194, 89%, 36%, 1);
    --color-2-dark    : hsla(194, 89%, 16%, 1);
    --color-2-darker  : hsla(194, 89%, 10%, 1);

    /* feedback colors
     * color-error(#ffd1d2), color-success(#c8e675), 
     * color-info(#d7ecfb), color-notice(#fff099)
     */
    --color-error                  : hsla(359, 100%, 91%, 1);
    --color-success                : hsla(76, 69%, 68%, 1);
    --color-info                   : hsla(205, 82%, 91%, 1);
    --color-notice                 : hsla(51, 100%, 80%, 1);
    --color-error-content          : hsla(359, 50%, 50%, 1);
    --color-success-content        : hsla(76, 29%, 28%, 1);
    --color-info-content           : hsla(205, 32%, 31%, 1);
    --color-notice-content         : hsla(51, 30%, 30%, 1);

    /* shades 
     * generated using 
     * Tint & Shade Generator 
     * (https://maketintsandshades.com/)
     */
    --color-black                  : #000000;
    --color-gray-19                : #161616;
    --color-gray-18                : #2c2c2c;
    --color-gray-17                : #424342;
    --color-gray-16                : #585958;
    --color-gray-15                : #6e6f6f;
    --color-gray-14                : #838585;
    --color-gray-13                : #999b9b;
    --color-gray-12                : #afb2b1;
    --color-gray-11                : #c5c8c7;
    --color-gray-10                : #dbdedd;
    --color-gray-9                 : #dfe1e0;
    --color-gray-8                 : #e2e5e4;
    --color-gray-7                 : #e6e8e7;
    --color-gray-6                 : #e9ebeb;
    --color-gray-5                 : #edefee;
    --color-gray-4                 : #f1f2f1;
    --color-gray-3                 : #f4f5f5;
    --color-gray-2                 : #f8f8f8;
    --color-gray-1                 : #fbfcfc;
    --color-white                  : #ffffff;

    /* text
     */
    --color-text                   : var(--color-gray-19);
    --color-text-dark              : var(--color-black);
    --color-text-light             : var(--color-gray-13);
    --color-placeholder            : var(--color-gray-13);

    /* buttons
     */
    --color-btn                    : var(--color-gray-9);
    --color-btn-text               : var(--color-black);
    --color-btn-hover              : var(--color-gray-11);
    --color-btn-hover-text         : var(--color-black);
    --color-btn-primary            : var(--color-1);
    --color-btn-primary-text       : var(--color-black);
    --color-btn-primary-hover      : var(--color-1-dark);
    --color-btn-primary-hover-text : var(--color-black);
    --color-btn-stroke             : var(--color-black);
    --color-btn-stroke-text        : var(--color-black);
    --color-btn-stroke-hover       : var(--color-black);
    --color-btn-stroke-hover-text  : var(--color-white);

    /* preloader
     */
    --color-preloader-bg           : var(--color-gray-19);
    --color-loader                 : var(--color-1);
    --color-loader-light           : rgba(255, 255, 255, 0.1);

    /* others
     */
    --color-body                   : white;
    --color-border                 : rgba(0, 0, 0, .08);
    --border-radius                : 3px;
}

/* ------------------------------------------------------------------- 
 * ## spacing and typescale
 * ------------------------------------------------------------------- */
:root {

    /* spacing
     * base font size: 18px 
     * vertical space unit : 32px
     */
    --base-size        : 62.5%;
    --multiplier       : 1;
    --base-font-size   : calc(1.8rem * var(--multiplier));
    --space            : calc(3.2rem * var(--multiplier));

    /* vertical spacing 
     */
    --vspace-0_125     : calc(0.125 * var(--space));
    --vspace-0_25      : calc(0.25 * var(--space));
    --vspace-0_375     : calc(0.375 * var(--space));
    --vspace-0_5       : calc(0.5 * var(--space));
    --vspace-0_625     : calc(0.625 * var(--space));
    --vspace-0_75      : calc(0.75 * var(--space));
    --vspace-0_875     : calc(0.875 * var(--space));
    --vspace-1         : calc(var(--space));
    --vspace-1_25      : calc(1.25 * var(--space));
    --vspace-1_5       : calc(1.5 * var(--space));
    --vspace-1_75      : calc(1.75 * var(--space));
    --vspace-2         : calc(2 * var(--space));
    --vspace-2_5       : calc(2.5 * var(--space));
    --vspace-3         : calc(3 * var(--space));
    --vspace-3_5       : calc(3.5 * var(--space));
    --vspace-4         : calc(4 * var(--space));
    --vspace-4_5       : calc(4.5 * var(--space));
    --vspace-5         : calc(5 * var(--space));
    --vspace-5_5       : calc(5.5 * var(--space));
    --vspace-6         : calc(6 * var(--space));

    /* type scale
     * ratio 1         :2 | base: 18px
     * -------------------------------------------------------
     *
     * --text-display-3 = (77.40px)
     * --text-display-2 = (64.50px)
     * --text-display-1 = (53.75px)
     * --text-xxxl      = (44.79px)
     * --text-xxl       = (37.32px)
     * --text-xl        = (31.10px)
     * --text-lg        = (25.92px)
     * --text-md        = (21.60px)
     * --text-size      = (18.00px) BASE
     * --text-sm        = (15.00px)
     * --text-xs        = (12.50px)
     *
     * ---------------------------------------------------------
     */
    --text-scale-ratio : 1.2;
    --text-size        : var(--base-font-size);
    --text-xs          : calc((var(--text-size) / var(--text-scale-ratio)) / var(--text-scale-ratio));
    --text-sm          : calc(var(--text-xs) * var(--text-scale-ratio));
    --text-md          : calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
    --text-lg          : calc(var(--text-md) * var(--text-scale-ratio));
    --text-xl          : calc(var(--text-lg) * var(--text-scale-ratio));
    --text-xxl         : calc(var(--text-xl) * var(--text-scale-ratio));
    --text-xxxl        : calc(var(--text-xxl) * var(--text-scale-ratio));
    --text-display-1   : calc(var(--text-xxxl) * var(--text-scale-ratio));
    --text-display-2   : calc(var(--text-display-1) * var(--text-scale-ratio));
    --text-display-3   : calc(var(--text-display-2) * var(--text-scale-ratio));

    /* default button height
     */
    --vspace-btn       : var(--vspace-2);
}

/* on mobile devices below 600px, change the value of '--multiplier' 
 * to adjust the values of base font size and vertical space unit.
 */
@media screen and (max-width: 600px) {
    :root {
        --multiplier : .875;
    }
}

/* ------------------------------------------------------------------- 
 * ## grid variables
 * ------------------------------------------------------------------- */
:root {
    /* widths for rows and containers
     */
    --width-full     : 100%;
    --width-max      : 1200px;
    --width-wide     : 1400px;
    --width-wider    : 1600px;
    --width-widest   : 1800px;
    --width-narrow   : 1000px;
    --width-narrower : 800px;
    --width-grid-max : var(--width-max);

    /* gutter
     */
    --gutter         : 2rem;
}

/* on medium screen devices
 */
@media screen and (max-width: 1200px) {
    :root {
        --gutter : 1.8rem;
    }
}

/* on mobile devices
 */
@media screen and (max-width: 600px) {
    :root {
        --gutter : 1rem;
    }
}


/* ====================================================================
 * # NORMALIZE
 *
 *
 * --------------------------------------------------------------------
 * normalize.css v8.0.1 | MIT License |
 * github.com/necolas/normalize.css
 * -------------------------------------------------------------------- */
html {
    line-height              : 1.15;
    -webkit-text-size-adjust : 100%;
}

body {
    margin : 0;

}

main {
    display : block;
}

h1 {
    font-size : 2em;
    margin    : 0.67em 0;
}

hr {
    box-sizing : content-box;
    height     : 0;
    overflow   : visible;
}

pre {
    font-family : monospace, monospace;
    font-size   : 1em;
}

a {
    background-color : transparent;
}

abbr[title] {
    border-bottom   : none;
    text-decoration : underline;
    text-decoration : underline dotted;
}

b,
strong {
    font-weight : bolder;
}

code,
kbd,
samp {
    font-family : monospace, monospace;
    font-size   : 1em;
}

small {
    font-size : 80%;
}

sub,
sup {
    font-size      : 75%;
    line-height    : 0;
    position       : relative;
    vertical-align : baseline;
}

sub {
    bottom : -0.25em;
}

sup {
    top : -0.5em;
}

img {
    border-style : none;
}

button,
input,
optgroup,
select,
textarea {
    font-family : inherit;
    font-size   : 100%;
    line-height : 1.15;
    margin      : 0;
}

button,
input {
    overflow : visible;
}

button,
select {
    text-transform : none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance : button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style : none;
    padding      : 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline : 1px dotted ButtonText;
}

fieldset {
    padding : 0.35em 0.75em 0.625em;
}

legend {
    box-sizing  : border-box;
    color       : inherit;
    display     : table;
    max-width   : 100%;
    padding     : 0;
    white-space : normal;
}

progress {
    vertical-align : baseline;
}

textarea {
    overflow : auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing : border-box;
    padding    : 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height : auto;
}

[type="search"] {
    -webkit-appearance : textfield;
    outline-offset     : -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance : none;
}

::-webkit-file-upload-button {
    -webkit-appearance : button;
    font               : inherit;
}

details {
    display : block;
}

summary {
    display : list-item;
}

template {
    display : none;
}

[hidden] {
    display : none;
}


/* ===================================================================
 * # BASE SETUP
 *
 *
 * ------------------------------------------------------------------- */
html {
    font-size  : var(--base-size);
    box-sizing : border-box;
}

*,
*::before,
*::after {
    box-sizing : inherit;
}

html,
body {
    height : 100%;
}

body {
    background-color            : var(--color-body);
    -webkit-overflow-scrolling  : touch;
    -webkit-text-size-adjust    : 100%;
    -webkit-tap-highlight-color : rgba(0, 0, 0, 0);
    -webkit-font-smoothing      : antialiased;
    -moz-osx-font-smoothing     : grayscale;
}

p {
    font-size      : inherit;
    text-rendering : optimizeLegibility;
}

a {
    text-decoration : none;
}

svg,
img,
video {
    max-width : 100%;
    height    : auto;
}

pre {
    overflow : auto;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
    margin  : 0;
    padding : 0;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance : none;
    -moz-appearance    : none;
    appearance         : none;
}


/* ===================================================================
 * # GRID v4.0.0
 *
 *
 *   -----------------------------------------------------------------
 * - Grid breakpoints are based on MAXIMUM WIDTH media queries, 
 *   meaning they apply to that one breakpoint and ALL THOSE BELOW IT.
 * - Grid columns without a specified width will automatically layout 
 *   as equal width columns.
 *
 * - BLOCK GRID columns(columns inside BLOCK GRID containers) are 
 *   equally-sized columns define at parent/row level. 
 *   A BLOCK GRID container's class attribute value begins with "block-".
 *
 * ------------------------------------------------------------------- */

/* row 
 */
.row {
    width     : 92%;
    max-width : var(--width-grid-max);
    margin    : 0 auto;
    display   : flex;
    flex-flow : row wrap;
}

.row .row {
    width        : auto;
    max-width    : none;
    margin-left  : calc(var(--gutter) * -1);
    margin-right : calc(var(--gutter) * -1);
}

/* column
 */
.column {
    display : block;
    flex    : 1 1 0%;
    padding : 0 var(--gutter);
}

.collapse>.column,
.column.collapse {
    padding : 0;
}

/* row utility classes
 */
.row.row-wrap {
    flex-wrap : wrap;
}

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

.row.row-y-top {
    align-items : flex-start;
}

.row.row-y-bottom {
    align-items : flex-end;
}

.row.row-y-center {
    align-items : center;
}

.row.row-stretch {
    align-items : stretch;
}

.row.row-baseline {
    align-items : baseline;
}

.row.row-x-left {
    justify-content : flex-start;
}

.row.row-x-right {
    justify-content : flex-end;
}

.row.row-x-center {
    justify-content : center;
}

/* --------------------------------------------------------------------
 * ## large screen devices 
 * -------------------------------------------------------------------- */
.lg-1 {
    flex  : none;
    width : 8.33333%;
}

.lg-2 {
    flex  : none;
    width : 16.66667%;
}

.lg-3 {
    flex  : none;
    width : 25%;
}

.lg-4 {
    flex  : none;
    width : 33.33333%;
}

.lg-5 {
    flex  : none;
    width : 41.66667%;
}

.lg-6 {
    flex  : none;
    width : 50%;
}

.lg-7 {
    flex  : none;
    width : 58.33333%;
}

.lg-8 {
    flex  : none;
    width : 66.66667%;
}

.lg-9 {
    flex  : none;
    width : 75%;
}

.lg-10 {
    flex  : none;
    width : 83.33333%;
}

.lg-11 {
    flex  : none;
    width : 91.66667%;
}

.lg-12 {
    flex  : none;
    width : 100%;
}

.block-lg-one-eight>.column {
    flex  : none;
    width : 12.5%;
}

.block-lg-one-sixth>.column {
    flex  : none;
    width : 16.66667%;
}

.block-lg-one-fifth>.column {
    flex  : none;
    width : 20%;
}

.block-lg-one-fourth>.column {
    flex  : none;
    width : 25%;
}

.block-lg-one-third>.column {
    flex  : none;
    width : 33.33333%;
}

.block-lg-one-half>.column {
    flex  : none;
    width : 50%;
}

.block-lg-whole>.column {
    flex  : none;
    width : 100%;
}

/* --------------------------------------------------------------------
 * ## medium screen devices 
 * -------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .md-1 {
        flex  : none;
        width : 8.33333%;
    }

    .md-2 {
        flex  : none;
        width : 16.66667%;
    }

    .md-3 {
        flex  : none;
        width : 25%;
    }

    .md-4 {
        flex  : none;
        width : 33.33333%;
    }

    .md-5 {
        flex  : none;
        width : 41.66667%;
    }

    .md-6 {
        flex  : none;
        width : 50%;
    }

    .md-7 {
        flex  : none;
        width : 58.33333%;
    }

    .md-8 {
        flex  : none;
        width : 66.66667%;
    }

    .md-9 {
        flex  : none;
        width : 75%;
    }

    .md-10 {
        flex  : none;
        width : 83.33333%;
    }

    .md-11 {
        flex  : none;
        width : 91.66667%;
    }

    .md-12 {
        flex  : none;
        width : 100%;
    }

    .block-md-one-eight>.column {
        flex  : none;
        width : 12.5%;
    }

    .block-md-one-sixth>.column {
        flex  : none;
        width : 16.66667%;
    }

    .block-md-one-fifth>.column {
        flex  : none;
        width : 20%;
    }

    .block-md-one-fourth>.column {
        flex  : none;
        width : 25%;
    }

    .block-md-one-third>.column {
        flex  : none;
        width : 33.33333%;
    }

    .block-md-one-half>.column {
        flex  : none;
        width : 50%;
    }

    .block-md-whole>.column {
        flex  : none;
        width : 100%;
    }

    .hide-on-md {
        display : none;
    }
}

/* --------------------------------------------------------------------
 * ## tablet devices 
 * -------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .tab-1 {
        flex  : none;
        width : 8.33333%;
    }

    .tab-2 {
        flex  : none;
        width : 16.66667%;
    }

    .tab-3 {
        flex  : none;
        width : 25%;
    }

    .tab-4 {
        flex  : none;
        width : 33.33333%;
    }

    .tab-5 {
        flex  : none;
        width : 41.66667%;
    }

    .tab-6 {
        flex  : none;
        width : 50%;
    }

    .tab-7 {
        flex  : none;
        width : 58.33333%;
    }

    .tab-8 {
        flex  : none;
        width : 66.66667%;
    }

    .tab-9 {
        flex  : none;
        width : 75%;
    }

    .tab-10 {
        flex  : none;
        width : 83.33333%;
    }

    .tab-11 {
        flex  : none;
        width : 91.66667%;
    }

    .tab-12 {
        flex  : none;
        width : 100%;
    }

    .block-tab-one-eight>.column {
        flex  : none;
        width : 12.5%;
    }

    .block-tab-one-sixth>.column {
        flex  : none;
        width : 16.66667%;
    }

    .block-tab-one-fifth>.column {
        flex  : none;
        width : 20%;
    }

    .block-tab-one-fourth>.column {
        flex  : none;
        width : 25%;
    }

    .block-tab-one-third>.column {
        flex  : none;
        width : 33.33333%;
    }

    .block-tab-one-half>.column {
        flex  : none;
        width : 50%;
    }

    .block-tab-whole>.column {
        flex  : none;
        width : 100%;
    }

    .hide-on-tab {
        display : none;
    }
}

/* --------------------------------------------------------------------
 * ## mobile devices 
 * -------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .row {
        width         : 100%;
        padding-left  : 6vw;
        padding-right : 6vw;
    }

    .row .row {
        padding-left  : 0;
        padding-right : 0;
    }

    .mob-1 {
        flex  : none;
        width : 8.33333%;
    }

    .mob-2 {
        flex  : none;
        width : 16.66667%;
    }

    .mob-3 {
        flex  : none;
        width : 25%;
    }

    .mob-4 {
        flex  : none;
        width : 33.33333%;
    }

    .mob-5 {
        flex  : none;
        width : 41.66667%;
    }

    .mob-6 {
        flex  : none;
        width : 50%;
    }

    .mob-7 {
        flex  : none;
        width : 58.33333%;
    }

    .mob-8 {
        flex  : none;
        width : 66.66667%;
    }

    .mob-9 {
        flex  : none;
        width : 75%;
    }

    .mob-10 {
        flex  : none;
        width : 83.33333%;
    }

    .mob-11 {
        flex  : none;
        width : 91.66667%;
    }

    .mob-12 {
        flex  : none;
        width : 100%;
    }

    .block-mob-one-eight>.column {
        flex  : none;
        width : 12.5%;
    }

    .block-mob-one-sixth>.column {
        flex  : none;
        width : 16.66667%;
    }

    .block-mob-one-fifth>.column {
        flex  : none;
        width : 20%;
    }

    .block-mob-one-fourth>.column {
        flex  : none;
        width : 25%;
    }

    .block-mob-one-third>.column {
        flex  : none;
        width : 33.33333%;
    }

    .block-mob-one-half>.column {
        flex  : none;
        width : 50%;
    }

    .block-mob-whole>.column {
        flex  : none;
        width : 100%;
    }

    .hide-on-mob {
        display : none;
    }
}

/* --------------------------------------------------------------------
 * ## small screen devices 
 * --------------------------------------------------------------------*/

/* stack columns on small screen devices
 */
@media screen and (max-width: 400px) {
    .row .row {
        margin-left  : 0;
        margin-right : 0;
    }

    .block-stack>.column,
    .column {
        flex         : none;
        width        : 100%;
        margin-left  : 0;
        margin-right : 0;
        padding      : 0;
    }

    .hide-on-sm {
        display : none;
    }
}

/* --------------------------------------------------------------------
 * ## additional column stackpoints 
 * -------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {

    .stack-on-1000,
    .block-stack-on-1000>.column {
        flex         : none;
        width        : 100%;
        margin-left  : 0;
        margin-right : 0;
    }
}

@media screen and (max-width: 900px) {

    .stack-on-900,
    .block-stack-on-900>.column {
        flex         : none;
        width        : 100%;
        margin-left  : 0;
        margin-right : 0;
    }
}

@media screen and (max-width: 700px) {

    .stack-on-700,
    .block-stack-on-700>.column {
        flex         : none;
        width        : 100%;
        margin-left  : 0;
        margin-right : 0;
    }
}

@media screen and (max-width: 550px) {

    .stack-on-550,
    .block-stack-on-550>.column {
        flex         : none;
        width        : 100%;
        margin-left  : 0;
        margin-right : 0;
    }
}


/* ===================================================================
 * # UTILITY CLASSES
 *
 *
 * ------------------------------------------------------------------- */

/* flex item alignment classes
 */
.u-flexitem-center {
    margin     : auto;
    align-self : center;
}

.u-flexitem-left {
    margin-right : auto;
    align-self   : center;
}

.u-flexitem-right {
    margin-left : auto;
    align-self  : center;
}

.u-flexitem-x-center {
    margin-right : auto;
    margin-left  : auto;
}

.u-flexitem-x-left {
    margin-right : auto;
}

.u-flexitem-x-right {
    margin-left : auto;
}

.u-flexitem-y-center {
    align-self : center;
}

.u-flexitem-y-top {
    align-self : flex-start;
}

.u-flexitem-y-bottom {
    align-self : flex-end;
}

/* misc helper classes
 */
.u-screen-reader-text {
    clip      : rect(1px, 1px, 1px, 1px);
    clip-path : inset(50%);
    height    : 1px;
    width     : 1px;
    margin    : -1px;
    overflow  : hidden;
    padding   : 0;
    border    : 0;
    position  : absolute;
    word-wrap : normal !important;
}

.u-clearfix:after {
    content : "";
    display : table;
    clear   : both;
}

.u-hidden {
    display : none;
}

.u-invisible {
    visibility : hidden;
}

.u-antialiased {
    -webkit-font-smoothing  : antialiased;
    -moz-osx-font-smoothing : grayscale;
}

.u-overflow-hidden {
    overflow : hidden;
}

.u-remove-top {
    margin-top : 0;
}

.u-remove-bottom {
    margin-bottom : 0;
}

.u-add-half-bottom {
    margin-bottom : var(--vspace-0_5);
}

.u-add-bottom {
    margin-bottom : var(--vspace-1);
}

.u-no-border {
    border : none;
}

.u-fullwidth {
    width : 100%;
}

.u-pull-left {
    float : left;
}

.u-pull-right {
    float : right;
}

/* ===================================================================
 * # TYPOGRAPHY 
 *
 *
 * ------------------------------------------------------------------- 
 * type scale - ratio 1:2 | base: 18px
 * -------------------------------------------------------------------
 *
 * --text-display-3 = (77.40px)
 * --text-display-2 = (64.50px)
 * --text-display-1 = (53.75px)
 * --text-xxxl      = (44.79px)
 * --text-xxl       = (37.32px)
 * --text-xl        = (31.10px)
 * --text-lg        = (25.92px)
 * --text-md        = (21.60px)
 * --text-size      = (18.00px) BASE
 * --text-sm        = (15.00px)
 * --text-xs        = (12.50px)
 *
 * -------------------------------------------------------------------- */

/* --------------------------------------------------------------------
 * ## base type styles
 * -------------------------------------------------------------------- */
body {
    font-family : var(--font-1);
    font-size   : var(--base-font-size);
    font-weight : 400;
    line-height : var(--vspace-1);
    color       : var(--color-text);
}

/* links
 */
a {
    color      : var(--color-2);
    transition : all 0.3s ease-in-out;
}

a:focus,
a:hover,
a:active {
    color : var(--color-1-dark);
}

a:hover,
a:active {
    outline : 0;
}

/* headings
 */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family            : var(--font-2);
    font-weight            : 500;
    color                  : var(--color-text-dark);
    font-variant-ligatures : common-ligatures;
    text-rendering         : optimizeLegibility;
}

h1,
.h1 {
    margin-top    : var(--vspace-2_5);
    margin-bottom : var(--vspace-0_75);
}

h2,
.h2,
h3,
.h3,
h4,
.h4 {
    margin-top    : var(--vspace-2);
    margin-bottom : var(--vspace-0_5);
}

h5,
.h5,
h6,
.h6 {
    margin-top    : var(--vspace-1_5);
    margin-bottom : var(--vspace-0_5);
}

h1,
.h1 {
    font-size      : var(--text-display-1);
    line-height    : var(--vspace-2);
    letter-spacing : -.01em;
}

@media screen and (max-width: 500px) {

    h1,
    .h1 {
        font-size   : var(--text-xxxl);
        line-height : calc(1.625 * var(--space));
    }
}

h2,
.h2 {
    font-size   : var(--text-xxl);
    line-height : var(--vspace-1_5);
}

h3,
.h3 {
    font-size   : var(--text-xl);
    line-height : var(--vspace-1_25);
}

h4,
.h4 {
    font-size   : var(--text-lg);
    line-height : var(--vspace-1);
}

h5,
.h5 {
    font-size   : var(--text-md);
    line-height : var(--vspace-0_875);
}

h6,
.h6 {
    font-weight    : 600;
    font-size      : var(--text-sm);
    line-height    : var(--vspace-0_75);
    text-transform : uppercase;
    letter-spacing : .3rem;
}

/* emphasis, italic,
 * strong, bold and small text
 */
em,
i,
strong,
b {
    font-size   : inherit;
    line-height : inherit;
}

em,
i {
    font-style : italic;
}

strong,
b {
    font-weight : 600;
}

small {
    font-size   : 75%;
    font-weight : 400;
    line-height : var(--vspace-0_5);
}

/* blockquotes
 */
blockquote {
    margin      : 0 0 var(--vspace-1) 0;
    padding     : var(--vspace-1) var(--vspace-1_5);
    border-left : 2px solid var(--color-text-light);
    position    : relative;
}

@media screen and (max-width: 400px) {
    blockquote {
        padding : var(--vspace-0_75) var(--vspace-0_75);
    }
}

blockquote p {
    font-family : var(--font-1);
    font-weight : 400;
    font-size   : var(--text-lg);
    font-style  : normal;
    line-height : var(--vspace-1_25);
    color       : var(--color-text-dark);
    padding     : 0;
}

blockquote cite {
    display     : block;
    font-family : var(--font-2);
    font-weight : 400;
    font-size   : var(--text-sm);
    line-height : var(--vspace-0_75);
    font-style  : normal;
}

blockquote cite:before {
    content : "\2014 \0020";
}

blockquote cite,
blockquote cite a,
blockquote cite a:visited {
    color  : var(--color-text-light);
    border : none;
}

/* figures
 */
figure img,
p img {
    margin         : 0;
    vertical-align : bottom;
}

figure {
    display      : block;
    margin-left  : 0;
    margin-right : 0;
}

figure img+figcaption {
    margin-top : var(--vspace-1);
}

figcaption {
    font-style    : italic;
    font-size     : var(--text-sm);
    text-align    : center;
    margin-bottom : 0;
}

/* preformatted, code
 */
var,
kbd,
samp,
code,
pre {
    font-family : var(--font-mono);
}

pre {
    padding    : var(--vspace-0_75) var(--vspace-1) var(--vspace-1);
    background : var(--color-gray-9);
    overflow-x : auto;
}

code {
    font-size     : var(--text-sm);
    line-height   : 1.6rem;
    margin        : 0 .2rem;
    padding       : calc(((var(--vspace-1) - 1.6rem) / 2) - .1rem) calc(.8rem - .1rem);
    white-space   : nowrap;
    background    : var(--color-gray-6);
    border        : 1px solid var(--color-gray-8);
    color         : var(--color-text-dark);
    border-radius : 3px;
}

pre>code {
    display     : block;
    white-space : pre;
    line-height : var(--vspace-1);
    padding     : 0;
    margin      : 0;
    border      : none;
}

/* deleted text, abbreviation,
 * & mark text
 */
del {
    text-decoration : line-through;
}

abbr {
    font-family    : var(--font-1);
    font-weight    : 600;
    font-variant   : small-caps;
    text-transform : lowercase;
    letter-spacing : .1em;
}

abbr[title],
dfn[title] {
    border-bottom   : 1px dotted;
    cursor          : help;
    text-decoration : none;
}

mark {
    background : var(--color-1-lighter);
    color      : var(--color-black);
}

/* horizontal rule
 */
hr {
    border       : solid var(--color-border);
    border-width : .1rem 0 0;
    clear        : both;
    margin       : var(--vspace-2) 0 calc(var(--vspace-2) - 1px);
    height       : 0;
}

hr.fancy {
    border     : none;
    margin     : var(--vspace-2) 0;
    height     : var(--vspace-1);
    text-align : center;
}

hr.fancy::before {
    content        : "*****";
    letter-spacing : .3em;
}

/* --------------------------------------------------------------------
 * ## additional typography & helper classes
 * -------------------------------------------------------------------- */
.lead,
.attention-getter {
    font-family : var(--font-2);
    font-weight : 300;
    font-size   : var(--text-md);
    line-height : var(--vspace-1_25);
    color       :#111111;
}

@media screen and (max-width: 500px) {

    .lead,
    .attention-getter {
        font-size   : calc(var(--text-size) * 1.0556);
        line-height : calc(1.125 * var(--space));
    }
}

.pull-quote {
    position   : relative;
    padding    : 0;
    margin-top : 0;
    text-align : center;
}

.pull-quote blockquote {
    border      : none;
    margin      : 0 auto;
    max-width   : 62rem;
    padding-top : var(--vspace-2_5);
    position    : relative;
}

.pull-quote blockquote p {
    font-weight : 400;
    color       : var(--color-text-dark);
}

.pull-quote blockquote:before {
    content           : "";
    display           : block;
    height            : var(--vspace-1);
    width             : var(--vspace-1);
    background-repeat : no-repeat;
    background        : center center;
    background-size   : contain;
    background-image  : url(../images/icons/icon-quote.svg);
    transform         : translate(-50%, 0, 0);
    position          : absolute;
    top               : var(--vspace-1);
    left              : 50%;
}

.drop-cap:first-letter {
    float          : left;
    font-family    : var(--font-2);
    font-weight    : 600;
    font-size      : calc(3 * var(--space));
    line-height    : 1;
    padding        : 0 0.125em 0 0;
    text-transform : uppercase;
    background     : transparent;
    color          : var(--color-text-dark);
}

.text-center {
    text-align : center;
}

.text-left {
    text-align : left;
}

.text-right {
    text-align : right;
}

/* --------------------------------------------------------------------
 * ## lists
 * -------------------------------------------------------------------- */
ol {
    list-style : decimal;
}

ul {
    list-style : disc;
}

li {
    display : list-item;
}

ol,
ul {
    margin-left : 1.6rem;
}

ul li {
    padding-left : .4rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin : 1.6rem 0 1.6rem 1.6rem;
}

ul.disc li {
    display    : list-item;
    list-style : none;
    padding    : 0 0 0 .8rem;
    position   : relative;
}

ul.disc li::before {
    content        : "";
    display        : inline-block;
    width          : 8px;
    height         : 8px;
    border-radius  : 50%;
    background     : var(--color-2);
    position       : absolute;
    left           : -.9em;
    top            : 11px;
    vertical-align : middle;
}

dt {
    margin : 0;
    color  : var(--color-2);
}

dd {
    margin : 0 0 0 2rem;
}

/* definition list line style 
 */
.lining dt,
.lining dd {
    display : inline;
    margin  : 0;
}

.lining dt+dt:before,
.lining dd+dt:before {
    content     : "\A";
    white-space : pre;
}

.lining dd+dd:before {
    content : ", ";
}

.lining dd+dd:before {
    content : ", ";
}

.lining dd:before {
    content     : ": ";
    margin-left : -0.2em;
}

/* definition list dictionary style 
 */
.dictionary-style dt {
    display       : inline;
    counter-reset : definitions;
}

.dictionary-style dt+dt:before {
    content     : ", ";
    margin-left : -0.2em;
}

.dictionary-style dd {
    display           : block;
    counter-increment : definitions;
}

.dictionary-style dd:before {
    content : counter(definitions, decimal) ". ";
}

/* --------------------------------------------------------------------
 * ## spacing
 * -------------------------------------------------------------------- */
fieldset,
button,
.btn {
    margin-bottom : var(--vspace-0_5);
}

input,
textarea,
select,
pre,
blockquote,
figure,
figcaption,
table,
p,
ul,
ol,
dl,
form,
img,
.video-container,
.ss-custom-select {
    margin-bottom : var(--vspace-1);
}


/* ===================================================================
 * # PRELOADER
 * 
 * 
 * -------------------------------------------------------------------
 * - markup:
 *
 * <div id="preloader">
 *    <div id="loader"></div>
 * </div>
 *
 * ------------------------------------------------------------------- */
#preloader {
    position        : fixed;
    display         : flex;
    flex-flow       : row wrap;
    justify-content : center;
    align-items     : center;
    background      : var(--color-preloader-bg);
    z-index         : 500;
    height          : 100vh;
    width           : 100%;
    opacity         : 1;
}

.no-js #preloader {
    display : none;
}

#loader {
    width             : var(--vspace-2);
    height            : var(--vspace-2);
    padding           : 0;
    background-color  : var(--color-loader);
    border-radius     : 100%;
    -webkit-animation : sk-scaleout 1.0s infinite ease-in-out;
    animation         : sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform : scale(0);
        transform         : scale(0);
    }

    100% {
        -webkit-transform : scale(1);
        transform         : scale(1);
        opacity           : 0;
    }
}

@keyframes sk-scaleout {
    0% {
        transform : scale(0);
    }

    100% {
        transform : scale(1);
        opacity   : 0;
    }
}


/* ===================================================================
 * # FORM
 *
 *
 * ------------------------------------------------------------------- */
fieldset {
    border : none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    --input-height      : var(--vspace-2);
    --input-line-height : var(--vspace-1);
    --input-vpadding    : calc((var(--input-height) - var(--input-line-height)) / 2);
    display             : block;
    height              : var(--input-height);
    padding             : var(--input-vpadding) 0 calc(var(--input-vpadding) - 1px);
    border              : 0;
    outline             : 0;
    color               : var(--color-text-light);
    font-family         : var(--font-2);
    font-size           : var(--text-sm);
    line-height         : var(--input-line-height);
    max-width           : 100%;
    background          : transparent;
    border-bottom       : 1px solid var(--color-border);
    transition          : all .3s ease-in-out;
}

.ss-custom-select {
    position : relative;
    padding  : 0;
}

.ss-custom-select select {
    -webkit-appearance : none;
    -moz-appearance    : none;
    appearance         : none;
    text-indent        : 0.01px;
    text-overflow      : '';
    margin             : 0;
    vertical-align     : middle;
    line-height        : var(--vspace-1);
}

.ss-custom-select select option {
    padding-left     : 2rem;
    padding-right    : 2rem;
    background-color : var(--color-body);
}

.ss-custom-select select::-ms-expand {
    display : none;
}

.ss-custom-select::after {
    border-bottom    : 1px solid white;
    border-right     : 1px solid white;
    content          : '';
    display          : block;
    height           : 8px;
    width            : 8px;
    margin-top       : -7px;
    pointer-events   : none;
    position         : absolute;
    right            : 2.4rem;
    top              : 50%;
    transition       : all 0.15s ease-in-out;
    transform-origin : 66% 66%;
    transform        : rotate(45deg);
}

textarea {
    min-height : calc(8 * var(--space));
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    color         : var(--color-text);
    border-bottom : 1px solid var(--color-2);
}

label,
legend {
    font-family   : var(--font-2);
    font-weight   : 700;
    font-size     : var(--text-sm);
    line-height   : var(--vspace-0_5);
    margin-bottom : var(--vspace-0_5);
    color         : var(--color-text-dark);
    display       : block;
}

input[type="checkbox"],
input[type="radio"] {
    display : inline;
}

label>.label-text {
    display     : inline-block;
    margin-left : 1rem;
    font-family : var(--font-2);
    line-height : inherit;
}

label>input[type="checkbox"],
label>input[type="radio"] {
    margin   : 0;
    position : relative;
    top      : 2px;
}

/* ------------------------------------------------------------------- 
 * ## style placeholder text
 * ------------------------------------------------------------------- */
::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color : var(--color-placeholder);
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color   : var(--color-placeholder);
    opacity : 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color   : var(--color-placeholder);
    opacity : 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color : var(--color-placeholder);
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color : var(--color-placeholder);
}

::placeholder {
    /* Most modern browsers support this now. */
    color : var(--color-placeholder);
}

/* ------------------------------------------------------------------- 
 * ## change autocomplete styles in Chrome
 * ------------------------------------------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color : var(--color-1);
    transition              : background-color 5000s ease-in-out 0s;
}


/* ===================================================================
 * # BUTTONS
 *
 *
 * ------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    --btn-height            : var(--vspace-btn);
    display                 : inline-block;
    font-family             : var(--font-2);
    font-weight             : 500;
    font-size               : var(--text-xs);
    text-transform          : uppercase;
    letter-spacing          : .35em;
    height                  : var(--btn-height);
    line-height             : calc(var(--btn-height) - 4px);
    padding                 : 0 3.6rem;
    margin                  : 0 0.4rem var(--vspace-0_5) 0;
    color                   : var(--color-btn-text);
    text-decoration         : none;
    text-align              : center;
    white-space             : nowrap;
    cursor                  : pointer;
    transition              : all .3s;
    background-color        : var(--color-btn);
    border                  : 2px solid var(--color-btn);
    -webkit-font-smoothing  : antialiased;
    -moz-osx-font-smoothing : grayscale;
}

.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus,
.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    background-color : var(--color-btn-hover);
    border-color     : var(--color-btn-hover);
    color            : var(--color-btn-hover-text);
    outline          : 0;
}

/* button primary
 */
.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
    background   : var(--color-btn-primary);
    border-color : var(--color-btn-primary);
    color        : var(--color-btn-primary-text);
}

.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus,
input[type="reset"].btn--primary:focus,
input[type="button"].btn--primary:focus,
.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover {
    background   : var(--color-btn-primary-hover);
    border-color : var(--color-btn-primary-hover);
    color        : var(--color-btn-primary-hover-text);
}

/* button modifiers
 */
.btn.u-fullwidth,
button.u-fullwidth {
    width        : 100%;
    margin-right : 0;
}

.btn--small,
button.btn--small {
    --btn-height : calc(var(--vspace-btn) - 1.6rem);
}

.btn--medium,
button.btn--medium {
    --btn-height : calc(var(--vspace-btn) + .8rem);
}

.btn--large,
button.btn--large {
    --btn-height : calc(var(--vspace-btn) + 1.6rem);
}

.btn--stroke,
button.btn--stroke {
    background : transparent !important;
    border     : 2px solid var(--color-btn-stroke);
    color      : var(--color-btn-stroke-text);
}

.btn--stroke:focus,
button.btn--stroke:focus,
.btn--stroke:hover,
button.btn--stroke:hover {
    background : var(--color-btn-stroke-hover) !important;
    border     : 2px solid var(--color-btn-stroke-hover);
    color      : var(--color-btn-stroke-hover-text);
}

.btn--pill,
button.btn--pill {
    padding-left  : 3.2rem !important;
    padding-right : 3.2rem !important;
    border-radius : 1000px !important;
}


/* ===================================================================
 * # TABLE
 *
 *
 * ------------------------------------------------------------------- */
table {
    border-width    : 0;
    width           : 100%;
    max-width       : 100%;
    font-family     : var(--font-1);
    border-collapse : collapse;
}

th,
td {
    padding       : var(--vspace-0_5) 3.2rem calc(var(--vspace-0_5) - 1px);
    text-align    : left;
    border-bottom : 1px solid var(--color-border);
}

th {
    padding     : var(--vspace-0_5) 3.2rem;
    color       : var(--color-text-dark);
    font-family : var(--font-2);
    font-weight : 600;
}

th:first-child,
td:first-child {
    padding-left : 0;
}

th:last-child,
td:last-child {
    padding-right : 0;
}

.table-responsive {
    overflow-x                 : auto;
    -webkit-overflow-scrolling : touch;
}


/* ===================================================================
 * # COMPONENTS
 *
 *
 * ------------------------------------------------------------------- */

/* -------------------------------------------------------------------
 * ## pagination
 * ------------------------------------------------------------------- */
.pgn {
    --pgn-num-height : calc(var(--vspace-1) + .4rem);
    margin           : var(--vspace-1) auto;
    text-align       : center;
}

.pgn ul {
    display         : inline-flex;
    flex-flow       : row wrap;
    justify-content : center;
    list-style      : none;
    margin-left     : 0;
    position        : relative;
    padding         : 0 6rem;
}

.pgn ul li {
    margin  : 0;
    padding : 0;
}

.pgn__num {
    font-family   : var(--font-2);
    font-weight   : 600;
    font-size     : var(--text-size);
    line-height   : var(--vspace-1);
    display       : block;
    padding       : .2rem 1.2rem;
    height        : var(--pgn-num-height);
    margin        : .2rem .2rem;
    color         : var(--color-text-dark);
    border-radius : 4px;
    transition    : all, .3s, ease-in-out;
}

.pgn__num:focus,
.pgn__num:hover {
    background : var(--color-black);
    color      : var(--color-white);
}

.pgn .current,
.pgn .current:focus,
.pgn .current:hover {
    background-color : var(--color-black);
    color            : var(--color-white);
}

.pgn .inactive,
.pgn .inactive:focus,
.pgn .inactive:hover {
    opacity : 0.4;
    cursor  : default;
}

.pgn__prev,
.pgn__next {
    display         : inline-flex;
    flex-flow       : row wrap;
    justify-content : center;
    align-items     : center;
    height          : var(--pgn-num-height);
    width           : 4.8rem;
    line-height     : var(--vspace-1);
    border-radius   : 4px;
    padding         : 0;
    margin          : 0;
    opacity         : 1;
    font            : 0/0 a;
    text-shadow     : none;
    color           : transparent;
    transition      : all, .3s, ease-in-out;
    position        : absolute;
    top             : 50%;
    transform       : translate(0, -50%);
}

.pgn__prev:focus,
.pgn__prev:hover,
.pgn__next:focus,
.pgn__next:hover {
    background-color : var(--color-black);
}

.pgn__prev svg,
.pgn__next svg {
    height     : 2.4rem;
    width      : 2.4rem;
    transition : all, .3s, ease-in-out;
}

.pgn__prev svg path,
.pgn__next svg path {
    stroke : var(--color-text-dark);
}

.pgn__prev:focus svg path,
.pgn__prev:hover svg path,
.pgn__next:focus svg path,
.pgn__next:hover svg path {
    stroke : var(--color-white);
}

.pgn__prev {
    left : 0;
}

.pgn__next {
    right : 0;
}

.pgn__prev.inactive,
.pgn__next.inactive {
    opacity : 0.4;
    cursor  : default;
}

.pgn__prev.inactive:focus,
.pgn__prev.inactive:hover,
.pgn__next.inactive:focus,
.pgn__next.inactive:hover {
    background-color : transparent;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * pagination
 * ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .pgn ul {
        padding : 0 5.2rem;
    }
}

/* ------------------------------------------------------------------- 
 * ## alert box 
 * ------------------------------------------------------------------- */
.alert-box {
    padding       : var(--vspace-0_75) 4rem var(--vspace-0_75) 3.2rem;
    margin-bottom : var(--vspace-1);
    border-radius : var(--border-radius);
    font-family   : var(--font-2);
    font-weight   : 500;
    font-size     : var(--text-sm);
    line-height   : var(--vspace-0_75);
    opacity       : 1;
    visibility    : visible;
    position      : relative;
}

.alert-box__close {
    position : absolute;
    display  : block;
    right    : 1.6rem;
    top      : 1.6rem;
    cursor   : pointer;
    width    : 12px;
    height   : 12px;
}

.alert-box__close::before,
.alert-box__close::after {
    content  : '';
    display  : inline-block;
    width    : 1px;
    height   : 12px;
    position : absolute;
    top      : 0;
    left     : 5px;
}

.alert-box__close::before {
    transform : rotate(45deg);
}

.alert-box__close::after {
    transform : rotate(-45deg);
}

.alert-box--error {
    background-color : var(--color-error);
    color            : var(--color-error-content);
}

.alert-box--error .alert-box__close::before,
.alert-box--error .alert-box__close::after {
    background-color : var(--color-error-content);
}

.alert-box--success {
    background-color : var(--color-success);
    color            : var(--color-success-content);
}

.alert-box--success .alert-box__close::before,
.alert-box--success .alert-box__close::after {
    background-color : var(--color-success-content);
}

.alert-box--info {
    background-color : var(--color-info);
    color            : var(--color-info-content);
}

.alert-box--info .alert-box__close::before,
.alert-box--info .alert-box__close::after {
    background-color : var(--color-info-content);
}

.alert-box--notice {
    background-color : var(--color-notice);
    color            : var(--color-notice-content);
}

.alert-box--notice .alert-box__close::before,
.alert-box--notice .alert-box__close::after {
    background-color : var(--color-notice-content);
}

.alert-box.hideit {
    opacity    : 0;
    visibility : hidden;
    transition : all .5s;
}

/* ------------------------------------------------------------------- 
 * ## skillbars
 * ------------------------------------------------------------------- */
.skill-bars {
    list-style : none;
    margin     : var(--vspace-2) 0 var(--vspace-1);
}

.skill-bars li {
    height        : .4rem;
    background    : var(--color-gray-9);
    width         : 100%;
    margin-bottom : calc(var(--vspace-2) - .4rem);
    padding       : 0;
    position      : relative;
}

.skill-bars li strong {
    position       : absolute;
    left           : 0;
    top            : calc((var(--vspace-1) * 1.25) * -1);
    font-family    : var(--font-2);
    font-weight    : 600;
    color          : var(--color-text-dark);
    text-transform : uppercase;
    letter-spacing : .2em;
    font-size      : var(--text-xs);
    line-height    : var(--vspace-0_75);
}

.skill-bars li .progress {
    background : var(--color-2);
    position   : relative;
    height     : 100%;
}

.skill-bars li .progress span {
    display       : block;
    font-family   : var(--font-1);
    color         : white;
    font-size     : 1rem;
    line-height   : 1;
    background    : var(--color-black);
    padding       : var(--vspace-0_25);
    border-radius : 4px;
    position      : absolute;
    right         : 0;
    top           : calc((var(--vspace-1) + .8rem) * -1);
}

.skill-bars li .progress span::after {
    position         : absolute;
    left             : 50%;
    bottom           : -10px;
    margin-left      : -5px;
    width            : 0;
    height           : 0;
    border           : 5px solid transparent;
    border-top-color : var(--color-black, var(--color-black));
    content          : "";
}

.skill-bars li .percent5 {
    width : 5%;
}

.skill-bars li .percent10 {
    width : 10%;
}

.skill-bars li .percent15 {
    width : 15%;
}

.skill-bars li .percent20 {
    width : 20%;
}

.skill-bars li .percent25 {
    width : 25%;
}

.skill-bars li .percent30 {
    width : 30%;
}

.skill-bars li .percent35 {
    width : 35%;
}

.skill-bars li .percent40 {
    width : 40%;
}

.skill-bars li .percent45 {
    width : 45%;
}

.skill-bars li .percent50 {
    width : 50%;
}

.skill-bars li .percent55 {
    width : 55%;
}

.skill-bars li .percent60 {
    width : 60%;
}

.skill-bars li .percent65 {
    width : 65%;
}

.skill-bars li .percent70 {
    width : 70%;
}

.skill-bars li .percent75 {
    width : 75%;
}

.skill-bars li .percent80 {
    width : 80%;
}

.skill-bars li .percent85 {
    width : 85%;
}

.skill-bars li .percent90 {
    width : 90%;
}

.skill-bars li .percent95 {
    width : 95%;
}

.skill-bars li .percent100 {
    width : 100%;
}

/* --------------------------------------------------------------------
 * ## stats tabs
 * -------------------------------------------------------------------- */
.stats-tabs {
    padding : 0;
    margin  : var(--vspace-1) 0;
}

.stats-tabs li {
    display      : inline-block;
    margin       : 0 1.6rem var(--vspace-0_5) 0;
    padding      : 0 1.5rem 0 0;
    border-right : 1px solid var(--color-border);
}

.stats-tabs li:last-child {
    margin  : 0;
    padding : 0;
    border  : none;
}

.stats-tabs li a {
    display     : block;
    font-family : var(--font-2);
    font-size   : var(--text-lg);
    font-weight : 600;
    line-height : var(--vspace-1_5);
    border      : none;
    color       : var(--color-text-dark);
}

.stats-tabs li a:hover {
    color : var(--color-2);
}

.stats-tabs li a em {
    display     : block;
    margin      : 0;
    font-family : var(--font-2);
    font-size   : var(--text-sm);
    line-height : var(--vspace-0_5);
    font-weight : 400;
    font-style  : normal;
    color       : var(--color-text-light);
}


/* ===================================================================
 * # PROJECT-WIDE SHARED STYLES
 *
 *
 * ------------------------------------------------------------------- */
.wide {
    max-width : var(--width-wide);
}

.wider {
    max-width : var(--width-wider);
}

.narrow {
    max-width : var(--width-narrow);
}

.body-text-sm {
    font-size   : calc(var(--text-size) * 0.8889);
    line-height : calc(0.9375 * var(--space));
}

.screen-reader-text {
    clip      : rect(1px, 1px, 1px, 1px);
    clip-path : inset(50%);
    height    : 1px;
    width     : 1px;
    margin    : -1px;
    overflow  : hidden;
    padding   : 0;
    border    : 0;
    position  : absolute;
    word-wrap : normal !important;
}

[data-animate-el] {
    opacity : 0;
}

.basicLightbox iframe {
    width        : 880px;
    aspect-ratio : 16/9;
}

/* ------------------------------------------------------------------- 
 * ## media classes
 * ------------------------------------------------------------------- */

/* floated image
 */
img.u-pull-right {
    margin : var(--vspace-0_5) 0 var(--vspace-0_5) var(--vspace-0_875);
}

img.u-pull-left {
    margin : var(--vspace-0_5) var(--vspace-0_875) var(--vspace-0_5) 0;
}

/* responsive video container
 */
.video-container {
    --aspect-ratio : 16/9;
    position       : relative;
    height         : 0;
    overflow       : hidden;
    padding-bottom : calc(100%/(var(--aspect-ratio)));
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
    position : absolute;
    top      : 0;
    left     : 0;
    width    : 100%;
    height   : 100%;
}

/* ------------------------------------------------------------------- 
 * ## swiper overrides
 * ------------------------------------------------------------------- */
.swiper-container .swiper-pagination-bullets .swiper-pagination-bullet {
    margin : 0 1.2rem;
}

.swiper-container .swiper-pagination-bullet {
    width      : 8px;
    height     : 8px;
    background : rgba(0, 0, 0, 0.3);
    opacity    : 1;
}

.swiper-container .swiper-pagination-bullet-active {
    background : black;
    opacity    : 1;
}
/* ------------------------------------------------------------------- 
 * ## section header
 * ------------------------------------------------------------------- */
.section-header {
    max-width     : 840px;
    margin-bottom : var(--vspace-1_5);
    text-align    : center;
    position      : relative;
}

.section-header .text-display-title {
    margin-bottom : var(--vspace-0_75);
}

.section-header.has-bottom-sep {
    padding-bottom : calc(var(--vspace-1_25) - 1px);
    position       : relative;
}

.section-header.has-bottom-sep::before {
    content          : "";
    display          : inline-block;
    height           : 1px;
    width            : 400px;
    background-color : var(--color-border);
    transform        : translateX(-50%);
    position         : absolute;
    bottom           : 0;
    left             : 50%;
}

.section-header--dark .text-pretitle {
    color : var(--color-gray-15);
}

.section-header--dark .lead {
    color : rgba(255, 255, 255, 0.35);
}

.section-header--dark.has-bottom-sep::before {
    background-color : rgba(255, 250, 250, 0.05);
}

section#content.s-content{
    background-color: #fff;
}

/* ------------------------------------------------------------------- 
 * ## theme-specific typography classes
 * ------------------------------------------------------------------- */
.text-pretitle {
    font-family    : var(--font-2);
    font-size      : var(--text-size);
    font-weight    : 600;
    color          : var(--color-black);
    text-transform : uppercase;
    letter-spacing : .2em;
    margin-top     : 0;
    margin-bottom  : 0;
    position       : relative;
}

.text-display-title {
    --text-display-title-size : 6rem;
    --text-multiplier         : 1;
    font-family               : var(--font-1);
    font-size                 : calc(var(--text-display-title-size) * var(--text-multiplier));
    font-weight               : 500;
    line-height               : 1.2667;
    color                     : white;
    margin-top                : 0;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * project-wide shared styles
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {
    .text-pretitle {
        font-size : calc(var(--text-size) * 0.8889);
    }
}

@media screen and (max-width: 700px) {
    .text-display-title {
        --text-multiplier : .9;
    }
}

@media screen and (max-width: 600px) {
    .text-display-title {
        --text-multiplier : .8;
    }
}

@media screen and (max-width: 500px) {
    .text-display-title {
        --text-multiplier : .7;
    }
}

@media screen and (max-width: 400px) {
    .section-header.has-bottom-sep::before {
        width : 240px;
    }

    .text-display-title {
        font-size : 4rem;
    }
}


/* ===================================================================
 * # PAGE WRAP
 *
 *
 * ------------------------------------------------------------------- */
.s-pagewrap {
    --header-height : 7.2rem;

    display         : flex;
    flex-direction  : column;
    min-height      : 100%;
    overflow        : hidden;
    position        : relative;
}

/* ------------------------------------------------------------------- 
 * ## section header
 * ------------------------------------------------------------------- */
/* Header - top navigation */
/* ---------- Header (transparent adaptive) ---------- */
:root {
  --accent-from: #33c1ff;
  --accent-to: #7a6bff;
  --glass-bg: rgba(255,255,255,0.06);
  --glass-dark: rgba(0,0,0,0.35);
}

/* header basics */
/* --- Header Layout --- */

.s-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    padding: 0 40px; /* Space from edges */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes Logo Left, CTA Right */
    background: transparent;
    pointer-events: none; /* Let clicks pass through empty areas */
}

/* ===== Brand Wrapper ===== */
.s-header__logo .brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* IMPORTANT: remove unwanted spacing */
    gap: 2px;                /* was 6px */
    padding: 0;
    margin: 0;
    line-height: 1;
}

/* ===== Logo Icon ===== */
.s-header__logo .brand-icon {
    width: 45px;             /* slightly smaller = tighter */
    height: auto;
    display: block;
    margin: 0;

    filter: drop-shadow(0 0 10px rgba(255, 200, 0, 0.45));
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* ===== Brand Text ===== */
.s-header__logo .brand-text {
    font-size: 1.50rem;
    font-weight: 600;
    letter-spacing: 0.4px;

    margin: 0;               /* 🔑 removes text gap */
    padding: 0;
    line-height: 1;          /* 🔑 removes font spacing */
    color: #ffffff;

    transition: color 0.3s ease;
}

/* ===== Hover ===== */
.s-header__logo .brand:hover .brand-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.7));
}

.s-header__logo .brand:hover .brand-text {
    color: #7dd3fc;
}


/* --- 2. Floating Pill (Dead Center) --- */
.header-pill {
    pointer-events: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* This forces it to the exact middle */
    z-index: 1001;
    
    display: flex;
    align-items: center;
    padding: 6px 10px; /* Compact padding */
    
    /* Glass Effect */
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.header-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px; /* Spacing between buttons */
}
/* --- 2. Floating Pill (Dead Center - WIDER) --- */
.header-pill {
    pointer-events: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    
    display: flex;
    align-items: center;
    justify-content: center; /* Ensures links stay centered in the wider box */
    
    /* === CONTROL THE LENGTH HERE === */
    min-width: 600px; /* Forces the box to be at least this wide */
    padding: 8px 40px; /* Adds more glass space on the left/right ends */
    /* ============================== */

        /* Glass Look */

    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

}


.header-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    
    /* === CONTROL SPACING BETWEEN LINKS === */
    gap: 40px; /* Increases space between Home, About, etc. */
    /* ===================================== */
}
.header-menu li a {
    display: block;
    padding: 8px 20px;
    font-family: var(--font-body, sans-serif);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
}

/* Hover & Active State */
.header-menu li a:hover,
.header-menu li.current a {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(51, 193, 255, 0.1); /* Subtle glow */
}

/* --- 3. CTA Button (Right) --- */
.header-cta {
    pointer-events: auto;
    z-index: 1002;
}

.header-cta .btn {
    padding: 10px 24px;
    height: auto;
    line-height: 1;
    font-size: 13px;
    font-weight: 700;
    border-radius: 100px;
    margin: 0;
    /* Gradient Button */
    background: linear-gradient(90deg, var(--accent-from), var(--accent-to));
    color: #000000;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(122, 107, 255, 0.3);
}

.header-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 193, 255, 0.5);
}

/* --- Mobile Menu Toggle --- */
.header-menu-toggle {
    display: none;
    pointer-events: auto;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Responsive (Mobile) --- */
@media screen and (max-width: 900px) {
    .s-header {
        padding: 0 20px;
        /* On mobile, standard layout: Logo Left, Menu Right */
        justify-content: space-between; 
    }

    /* Hide Center Pill and CTA on Mobile */
    .header-pill, 
    .header-cta {
        display: none;
    }

    /* Show Hamburger Menu */
    .header-menu-toggle {
        display: block;
    }
}


/* nav center */
.site-nav { flex: 1; display: flex; justify-content: center; }
.site-nav__list { display:flex; gap:28px; margin:0; padding:0; list-style:none; align-items:center; }
.site-nav__link {
  color: inherit; /* controlled by header state */
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 8px 6px;
  position: relative;
  transition: color .18s ease;
}

/* fancy hover underline */
.site-nav__link::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:-10px;
  transform:translateX(-50%);
  width:0;
  height:4px;
  background: linear-gradient(90deg,var(--accent-from),var(--accent-to));
  border-radius:999px;
  transition: width .25s ease, opacity .25s;
  opacity:0;
}
.site-nav__link:hover::after { width:34px; opacity:1; }

/* subtle link glow on hover */
.site-nav__link:hover {
  text-shadow: 0 1px 10px rgba(0,0,0,0.14);
}

/* CTA button */
.site-cta { margin-left: 8px; }
.btn-cta {
  display:inline-block;
  padding:8px 18px;
  border-radius: 26px;
  border: 1.5px solid rgba(255,255,255,0.12);
  text-decoration:none;
  font-weight:600;
  transition: background .18s ease, color .18s ease, transform .12s ease;
}

/* Mobile toggle */
.mobile-toggle { display:none; background:transparent; border:0; padding:8px; margin-left:6px; cursor:pointer; }
.hamburger {
  display:inline-block; width:22px; height:2px; background:currentColor; position:relative; transition:transform .2s ease;
}
.hamburger::before, .hamburger::after { content:""; position:absolute; left:0; width:22px; height:2px; background:currentColor; transition:transform .2s ease; }
.hamburger::before { top:-7px; }
.hamburger::after { top:7px; }

/* mobile panel */
.mobile-panel {
  display:none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.75); /* will be adjusted by header state */
  color: #fff;
  padding: 18px 20px;
  z-index: 9998;
}
.mobile-panel__list { list-style:none; padding:0; margin:0 0 12px 0; display:flex; flex-direction:column; gap:14px; }
.mobile-panel__list a { color: inherit; text-decoration:none; font-weight:600; font-size:16px; }
.mobile-panel__contact a { display:block; color: rgba(255,255,255,0.85); text-decoration:none; margin-top:6px; }

/* ---------- adaptive states ---------- */
/* default (when page background is light) -> show dark text */
.site-header.header--light {
  color: #111; /* nav text color for light backgrounds */
  background: transparent;
}
.site-header.header--light .btn-cta {
  color: #111;
  border-color: rgba(17,17,17,0.06);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 6px 20px rgba(233, 227, 227, 0.06);
}

/* when the header is over a dark section, set white text */
.site-header.header--dark {
  color: #fff;
  background: transparent; /* keep transparent so background image shows */
}
.site-header.header--dark .btn-cta {
  color: #fff;
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: none;
}
.site-header.header--dark .mobile-panel { background: rgba(8,8,12,0.85); }

/* subtle glass when header is pinned to top after scroll (optional) */
.site-header.scrolled {
  backdrop-filter: blur(6px);
  /* add a faint bar only when needed */
  box-shadow: 0 6px 30px rgba(10,10,12,0.15);
}

/* responsive breakpoints */
@media (max-width: 980px) {
  .site-nav { display:none; }
  .site-cta { display:none; }
  .mobile-toggle { display:block; color:inherit; }
}

/* ===============================
   MOBILE MENU FIX
================================ */

.mobile-menu {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 420px;

  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 24px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.4);

  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;

  z-index: 9999;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.mobile-menu__list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Hide on desktop */
@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
}


/* ===============================
   MOBILE MENU – ENHANCEMENTS
================================ */

/* Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9997;
}

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

/* Hamburger animation */
.header-menu-toggle {
  position: relative;
  z-index: 10001;
}

.header-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
}

.header-menu-toggle span::before,
.header-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.header-menu-toggle span::before {
  top: -8px;
}
.header-menu-toggle span::after {
  top: 8px;
}

/* ❌ state */
.header-menu-toggle.active span {
  background: transparent;
}
.header-menu-toggle.active span::before {
  transform: rotate(45deg);
  top: 0;
}
.header-menu-toggle.active span::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Active link highlight */
.mobile-menu__list a.active {
  color: #7dd3fc;
}


/* ===================================================================
 * # INTRO
 *
 *
 * ------------------------------------------------------------------- */
.s-intro {
    background-color : var(--color-preloader-bg);
    width            : 100%;
    height           : 100vh;
    min-height       : calc(25.5 * var(--space));
    overflow         : hidden;
    position         : relative;
}

/* --------------------------------------------------------------------
 * ## intro background
 * -------------------------------------------------------------------- */
.s-intro__bg {
    display             : block;
    position            : absolute;
    top                 : 0;
    left                : 0;
    right               : 0;
    bottom              : 0;
    width               : 100%;
    height              : 100%;
    background-image    : url(../images/hero-bg.jpg);
    background-repeat   : no-repeat;
    background-position : center 30%;
    background-size     : cover;
}

.s-intro__bg::before {
    display        : block;
    content        : "";
    position       : absolute;
    top            : 0;
    left           : 0;
    right          : 0;
    bottom         : 0;
    width          : 100%;
    height         : 100%;
    background     : var(--color-gray-15);
    pointer-events : none;
    opacity        : .1;
}

.s-intro__bg::after {
    display        : block;
    content        : "";
    position       : absolute;
    top            : 0;
    left           : 0;
    right          : 0;
    bottom         : 0;
    width          : 100%;
    height         : 100%;
    background     : linear-gradient(0deg, black 15%, rgba(0, 0, 0, 0) 100%);
    pointer-events : none;
    opacity        : .1;
}

/* --------------------------------------------------------------------
 * ## intro content
 * -------------------------------------------------------------------- */
.s-intro__content {
    z-index         : 1;
    height          : 100%;
    align-items     : center;
    justify-content : center;
    color           : white;
    padding-top     : 18vh;
    padding-bottom  : 12rem;
    text-align      : center;
    position        : relative;
}

.s-intro__pretitle {
    font-weight    : 400;
    font-size      : var(--text-md);
    text-transform : uppercase;
    letter-spacing : .2em;
    color          : white;
    margin-top     : 0;
}

.s-intro__title {
    --text-title-size : 7.2rem;
    --text-multiplier : 1;
    font-weight       : 700;
    font-size         : calc(var(--text-title-size) * var(--text-multiplier));
    line-height       : 1.1154;
    color             : white;
    margin-top        : 0;
    margin-bottom     : var(--vspace-2_5);
}

.s-intro__more {
    --vspace-btn : var(--vspace-1_5);
}

.s-intro__more-btn {
    border : 2px solid white;
    color  : white;
    margin : 0;
}

.s-intro__more-btn:focus,
.s-intro__more-btn:hover {
    background-color : white !important;
    border           : 2px solid white;
    color            : black;
}

/* --------------------------------------------------------------------
 * ## intro social
 * -------------------------------------------------------------------- */
.s-intro__social {
    z-index     : 2;
    list-style  : none;
    display     : block;
    margin      : 0;
    padding-top : var(--vspace-1_25);
    position    : absolute;
    left        : 4.4rem;
    bottom      : var(--vspace-1_25);
}

.s-intro__social::before {
    content          : "";
    display          : block;
    height           : var(--vspace-0_875);
    width            : 1px;
    background-color : rgba(255, 255, 255, 0.5);
    position         : absolute;
    top              : 0;
    left             : 50%;
}

.s-intro__social li {
    padding-left  : 0;
    line-height   : 1;
    margin-bottom : 1rem;
}

.s-intro__social svg {
    height : var(--vspace-0_625);
    width  : var(--vspace-0_625);
}

.s-intro__social svg path {
    fill : white;
}

/* --------------------------------------------------------------------
 * ## intro scroll
 * -------------------------------------------------------------------- */
.s-intro__scroll {
    z-index          : 2;
    transform        : rotate(90deg);
    transform-origin : right bottom;
    position         : absolute;
    right            : 6.2rem;
    bottom           : var(--vspace-1_5);
}

.s-intro__scroll a {
    display     : flex;
    align-items : center;
}

.s-intro__scroll span {
    font-family    : var(--font-2);
    font-weight    : 400;
    font-size      : calc(var(--text-size) * 0.6667);
    line-height    : 1;
    text-transform : uppercase;
    letter-spacing : .3em;
    color          : white;
    margin-right   : 1.6rem;
}

.s-intro__scroll svg {
    height : var(--vspace-0_625);
    width  : var(--vspace-0_625);
}

.s-intro__scroll svg path {
    fill : white;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * intro
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1400px) {
    .s-intro__title {
        --text-multiplier : .9;
    }
}

@media screen and (max-width: 1200px) {
    .s-intro__title {
        --text-multiplier : .8;
    }
}

@media screen and (max-width: 1080px) {
    .s-intro__pretitle {
        font-size : var(--text-size);
    }

    .s-intro__title {
        --text-multiplier : .7;
    }
}

@media screen and (max-width: 900px) {
    .s-intro__title {
        --text-multiplier : .6;
    }
}

@media screen and (max-width: 800px) {
    .s-intro__title br {
        display : none;
    }
}

@media screen and (max-width: 700px) {
    .s-intro__title {
        --text-multiplier : .55;
    }
}

@media screen and (max-width: 600px) {
    .s-intro__title {
        --text-multiplier : .5;
    }

    .s-intro__social {
        left : 3.6rem;
    }

    .s-intro__scroll {
        right : 5.4rem;
    }
}

@media screen and (max-width: 500px) {
    .s-intro__pretitle {
        font-size : calc(var(--text-size) * 0.8889);
    }

    .s-intro__title {
        --text-multiplier : .45;
    }
}

@media screen and (max-width: 400px) {
    .s-intro__title {
        --text-multiplier : .38;
    }

    .s-intro__social {
        left : 2.8rem;
    }

    .s-intro__scroll {
        right : 4.6rem;
    }
}
/* ===========================
   Discover Section
=========================== */
.s-discover {
    padding: 60px 20px;
    text-align: center;
    background-image: url('../images/portfolio/database-support.png'); /* Adjust image path */
    background-size: cover;
    background-position: center;
    background-color: #ffffff; /* fallback */
    color: #0b1729;
}

.s-discover__content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.s-discover h2.text-pretitle {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #0b1729;
    position: relative;
    text-align: center;
}

.s-discover h2.text-pretitle::before {
    content: "";
    display: block;
    background-color: #ccc; /* small line above title */
    width: 2px;
    height: 70px;
    margin: 0 auto 10px;
}

.s-discover__desc {
    font-size: 40px;
    line-height: 1.6;
    margin-top: 20px;
    color: #0b1729;
}

.s-discover__desc span {
    color: #2b1266; /* highlight color */
}

/* Responsive */
@media (max-width: 1000px) {
    .s-discover h2.text-pretitle {
        font-size: 30px;
    }

    .s-discover__desc {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .s-discover h2.text-pretitle {
        font-size: 26px;
    }

    .s-discover__desc {
        font-size: 14px;
    }
}/* ==================================================
   ABOUT HERO SECTION (FULL WIDTH IMAGE)
================================================== */

.about-hero {
    width: 100%;
    height: 90vh;
   
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Text */
.about-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 2rem;
}

.about-hero__content h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero__content p {
    font-size: 1.8rem;
    color: #cfd8ff;
    max-width: 600px;
    margin: 0 auto;
}


/* ==================================================
   ABOUT CONTENT SECTION (FORCED BELOW HERO)
================================================== */

.s-about-new {
    width: 100%;
    clear: both;              /* 🔑 VERY IMPORTANT */
    display: block;           /* 🔑 PREVENTS SIDE ALIGNMENT */
    padding: 8rem 2rem;
    background: #050b1a;
    color: #ffffff;
    
}

/* Intro Text */
.about-intro {
    max-width: 900px;
    margin: 0 auto 6rem 25rem;
    text-align: center;
}

.about-intro p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #d6d9ff;
}


/* ==================================================
   ABOUT GRID (CARDS)
================================================== */

.about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

/* Cards */
.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 3.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
}

.about-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.about-card p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #cfd3ff;
}


/* ==================================================
   RESPONSIVE FIXES
================================================== */

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

    .about-hero {
        height: 75vh;
    }
}

@media (max-width: 600px) {
    .about-hero {
        height: 65vh;
    }

    .about-hero__content h1 {
        font-size: 3.2rem;
    }

    .about-intro p {
        font-size: 1.6rem;
    }
}

/* ==================================================
   ABOUT – OUR PROCESS
================================================== */

.about-process {
    padding: 8rem 0;
    background: #ffffff;
    color: #1a1a1a;
}

/* Header */
.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6rem auto;
}

.process-eyebrow {
    display: inline-block;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #5c6ac4;
    margin-bottom: 1rem;
}

.process-header h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-header p {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.7;
}

/* Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Card */
.process-card {
    position: relative;
    background: #b8abab7c;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 4rem 3rem;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: #dcdcdc;
}

/* Step Number */
.step-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 3.2rem;
    font-weight: 700;
    color: rgba(0 4 26 / 72%);
}

/* Card Content */
.process-card h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.process-card p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #555;
}


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

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

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

    .process-header h2 {
        font-size: 2.8rem;
    }
}


/* ===================================================================
 * # SERVICES
 *
 *
 * ------------------------------------------------------------------- */
.s-services {
    background-color : rgba(0, 0, 0, 0.979);
    padding-top      : var(--vspace-6);
    padding-bottom   : var(--vspace-5);
    color            : rgb(0, 0, 0);
    position         : relative;
}

/* --------------------------------------------------------------------
 * ## services background
 * -------------------------------------------------------------------- */
.s-services__bg {
    display             : block;
    position            : absolute;
    top                 : 0;
    left                : 0;
    right               : 0;
    bottom              : 0;
    width               : 100%;
    height              : 100%;
    background-image    : url(../images/contact-bg.jpg);
    background-repeat   : no-repeat;
    background-position : center;
    background-size     : cover;
}

.s-services__bg::before {
    display        : block;
    content        : "";
    position       : absolute;
    top            : 0;
    left           : 0;
    right          : 0;
    bottom         : 0;
    width          : 100%;
    height         : 100%;
    background     : rgb(0, 0, 0);
    pointer-events : none;
    opacity        : .8;
}

/* --------------------------------------------------------------------
 * ## services list
 * -------------------------------------------------------------------- */
.services-list {
    max-width  : 1020px;
    margin-top : var(--vspace-3);
    position   : relative;
}

.services-list .column:nth-child(2n + 1) {
    padding-right : 3.2rem;
}

.services-list .column:nth-child(2n + 2) {
    padding-left : 3.2rem;
}

.service-item {
    margin-bottom : var(--vspace-0_5);
}

.service-item h3 {
    margin-top    : 0;
    margin-bottom : var(--vspace-0_5);
    color         : #ccc;
}

h3.title.text-display-1{
    color: #fff;
}
.service-icon-block {
    display       : block;
    margin-bottom : var(--vspace-0_25);
}

.service-icon-block svg {
    height : var(--vspace-1_5);
    width  : var(--vspace-1_5);
}

.service-icon-block svg path {
    fill : var(--color-1);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * services
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .services-list .column:nth-child(2n + 1) {
        padding-right : var(--gutter);
    }

    .services-list .column:nth-child(2n + 2) {
        padding-left : var(--gutter);
    }
}

@media screen and (max-width: 600px) {
    .service-item {
        display : block;
    }

    .service-icon-block {
        margin-bottom : var(--vspace-0_5);
    }
}

@media screen and (max-width: 400px) {
    .services-list .column:nth-child(2n + 1) {
        padding-right : 0;
    }

    .services-list .column:nth-child(2n + 2) {
        padding-left : 0;
    }
}
/* ==================================================
   Comprehensive IT Services
================================================== */

#services {
    position: relative;
    padding: 8rem 0;
   
}



/* Ensure content stays above background */
#services .row,
#services .services-grid {
    position: relative;
    z-index: 1;
    color: #fff;
}

/* ==================================================
   Services Grid
================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

/* ==================================================
   Service Cards
================================================== */

.service-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 3rem 2.8rem;
    backdrop-filter: blur(10px);
    transition: 
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* Hover Effect */
.service-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* ==================================================
   Typography
================================================== */

.service-box h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

.service-box p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ==================================================
   Responsive
================================================== */

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-box {
        padding: 2.6rem 2.4rem;
    }
}

/* Image Styling */
.service-img {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(172, 166, 166, 0.08); /* Subtle shadow for depth */
}

.service-img img {
    width: 100%;
    height: 320px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Zoom effect on hover */
.service-card:hover .service-img img {
    transform: scale(1.05); 
}

/* Text Content Styling */
.service-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid rgb(255, 255, 255); /* Very subtle line */
    padding-bottom: 10px;
   

}

.service-heading h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff; /* Dark text */
    margin: 0;
    font-family: serif;
}

.arrow-icon {
    font-size: 1.5rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.service-card:hover .arrow-icon {
    transform: translateX(5px); /* Arrow moves right on hover */
}

.service-content p {
    font-size: 1.4rem;
    line-height: 1;
    color: #fff; /* Grey text description */
    margin: 0;
}

/* Mobile Responsiveness */
@media screen and (max-width: 800px) {
    .service-img img {
        height: auto;
        aspect-ratio: 16/9;
    }
}
/* ===================================================================
 * # Why choose us
 *
 *
 * ------------------------------------------------------------------- */
.why-choose-us {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 60px 20px;
}

.tag {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.why-choose-us h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-choose-us p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    max-width: 400px;
}

.right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Boxes */
.box {
    border: 1px solid #e5e5e5;
    padding: 25px;
    border-radius: 12px;
    background: #fff;
    text-align: left;
}

/* Small box */
.small-box {
    background: #f7f7f7;
}

.rating {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.text {
    font-size: 15px;
    margin-bottom: 20px;
}

/* Numbers */
.big-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Image box */
.img-box {
    padding: 0;
    border: none;
}

.img-box img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Dark box */
.dark-box {
    background: #f0f0f0;
    color: #fff;
}

.dark-box p {
    color: #000000;
}

/* Outline box */
.outline-box {
    border: 2px solid #000;
}

/* Responsive */
@media(max-width: 900px) {
    .why-choose-us {
        grid-template-columns: 1fr;
    }

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

 /* ===================================================================
 * # FAQ
 *
 *
 * ------------------------------------------------------------------- */
 /* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #000000;
}

.faq-subtitle {
    text-align: center;
    font-size: 18px;
    color: #000000;
    margin-bottom: 40px;
}

/* FAQ Box Container */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FAQ Item */
.faq-item {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    backdrop-filter: blur(4px);
}

/* Hide checkbox */
.faq-item input {
    display: none;
}

/* Question */
.faq-question {
    display: block;
    padding: 18px 25px;
    font-size: 20px;
    cursor: pointer;
    color: #000000;
    font-weight: 500;
    position: relative;
}

/* + Icon */
.faq-question::after {
    content: "+";
    font-size: 24px;
    position: absolute;
    right: 25px;
    top: 18px;
    transition: 0.3s;
}

/* Answer Area */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
}

.faq-answer p {
    padding: 10px 0 25px;
    color: #000000;
    line-height: 1.6;
}

/* When active (checked) */
.faq-item input:checked ~ .faq-answer {
    max-height: 200px;
}

/* Turn + into × when open */
.faq-item input:checked + .faq-question::after {
    content: "−";
}

/* ===================================================================
 * # PORTFOLIO
 *
 *
 * ------------------------------------------------------------------- */
.s-portfolio {
    background : rgb(209, 204, 204);
    min-height : 800px;
    padding    : 0;
    position   : relative;
}

.s-portfolio__header {
    background-color :#111111;
    padding-top      : var(--vspace-5);
    padding-bottom   : calc(6.5 * var(--space));
}

/* ------------------------------------------------------------------- 
 * ## portfolio list
 * ------------------------------------------------------------------- */
.folio-list {
    margin-top : calc(var(--vspace-1) * -5.5);
}

.folio-list .brick {
    float   : left;
    width   : 50%;
    padding : 0;
    margin  : 0;
}

.folio-item {
    overflow : hidden;
    position : relative;
}

.folio-item__caption {
    display : none;
}

/* thumbnail
 */
.folio-item__thumb a {
    display : block;
}

.folio-item__thumb a::before {
    z-index          : 1;
    content          : "";
    display          : block;
    background-color : rgba(0, 0, 0, 0.8);
    opacity          : 0;
    visibility       : hidden;
    position         : absolute;
    top              : 0;
    left             : 0;
    right            : 0;
    bottom           : 0;
    width            : 100%;
    height           : 100%;
    transition       : all, .5s;
}

.folio-item__thumb a::after {
    z-index     : 1;
    content     : "...";
    text-align  : center;
    font-family : var(--font-2);
    font-weight : 300;
    font-size   : 2.8rem;
    color       : white;
    display     : block;
    height      : 3.2rem;
    width       : 3.2rem;
    line-height : 3.2rem;
    margin-left : -1.6rem;
    margin-top  : -3rem;
    text-align  : center;
    opacity     : 0;
    visibility  : hidden;
    transform   : scale(0.5);
    transition  : all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    position    : absolute;
    left        : 50%;
    top         : 50%;
}

.folio-item__thumb img {
    vertical-align : bottom;
    margin-bottom  : 0;
    transition     : all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* portfolio info
 */
.folio-item__info {
    z-index    : 2;
    padding    : 0 8rem 0 var(--vspace-1);
    transform  : translateY(100%);
    opacity    : 0;
    visibility : hidden;
    transition : all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    position   : absolute;
    left       : 0;
    top        : var(--vspace-1_25);
}

.folio-item__title {
    font-size   : var(--text-size);
    line-height : 1.25;
    margin      : 0;
    color       : white;
}

.folio-item__cat {
    font-family   : var(--font-2);
    font-size     : var(--text-sm);
    line-height   : 1.5;
    margin-bottom : 0.2rem;
    color         : rgba(255, 255, 255, 0.5);
}

.folio-item__project-link {
    z-index          : 2;
    display          : flex;
    align-items      : center;
    justify-content  : center;
    height           : var(--vspace-1_25);
    width            : var(--vspace-1_25);
    background-color : transparent;
    border           : 1px solid rgba(255, 255, 255, 0.3);
    border-radius    : 5px;
    opacity          : 0;
    visibility       : hidden;
    transform        : translateY(100%);
    transition       : all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    position         : absolute;
    top              : var(--vspace-1_25);
    right            : var(--vspace-1_25);
}

.folio-item__project-link svg {
    height : var(--vspace-0_625);
    width  : var(--vspace-0_625);
}

.folio-item__project-link svg path {
    fill       : white;
    transition : all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.folio-item__project-link:focus,
.folio-item__project-link:hover {
    background-color : white;
    border           : 1px solid white;
}

.folio-item__project-link:focus svg path,
.folio-item__project-link:hover svg path {
    fill : black;
}

/* on hover
 */
.folio-item:hover .folio-item__thumb img {
    transform : scale(1.05);
}

.folio-item:hover .folio-item__thumb a::before {
    opacity    : 1;
    visibility : visible;
}

.folio-item:hover .folio-item__thumb a::after {
    opacity    : 1;
    visibility : visible;
    transform  : scale(1);
}

.folio-item:hover .folio-item__info {
    opacity    : 1;
    visibility : visible;
    transform  : translateY(0);
}

.folio-item:hover .folio-item__project-link {
    opacity    : 1;
    visibility : visible;
    transform  : translateX(0);
}

/* ==================================================
   SERVICE OVERVIEW (SERVICE PAGE ONLY)
================================================== */

.s-service-overview {
    padding: 8rem 0;
    background: #ffffff;
}

.service-overview-desc {
    max-width: 620px;
    margin: 1.2rem auto 0;
    font-size: 1.6rem;
    color: #666;
}

/* GRID */
.service-overview-grid {
    margin-top: 5rem;
}

/* CARD */
.service-overview-card {
    margin-bottom: 4rem;
}

.service-overview-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-overview-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.service-overview-img {
    overflow: hidden;
}

.service-overview-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-overview-link:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.service-overview-content {
    padding: 2.4rem;
    background: #fff;
}

.service-overview-content h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-overview-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-overview-img img {
        height: 220px;
    }
}


/* ----------------------------------------------------
   DattaTech – Solution Page CSS
   Advanced Glass UI + Smooth Animations + Glow Effects
-----------------------------------------------------*

/* ================= BASE ================= */
body{
  margin:0;
  font-family: Inter, system-ui, sans-serif;
  background:linear-gradient(180deg,#0b1020);
 
}

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

/* ================= PAGE ================= */
.page-wrap{
  max-width:1200px;
  margin:auto;
  padding:80px 20px;
}

/* ================= HERO ================= */
.page-hero{
  text-align:center;
  margin-bottom:50px;
}
.page-hero h1{
  font-size:42px;
  margin-bottom:10px;
  color: white;
  
}
.page-hero p{
  color:var(--muted);
  max-width:650px;
  margin:auto;
  color: whitesmoke;
  
}   

/* ================= NAV ================= */
.solutions-nav{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:60px;
}
.solutions-nav a{
  padding:10px 18px;
  border-radius:30px;
  font-size:14px;
  background:var(--card);
  border:1px solid var(--border);
}
.solutions-nav a:hover{
  background:var(--accent);
  color:#000;
}

/* ================= SOLUTION CARD ================= */
.solution{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:40px;
  padding:40px;
  background:var(--card);
  border-radius:18px;
  border:1px solid var(--border);
  margin-bottom:50px;
  position:relative;
  overflow:hidden;

  scroll-margin-top: 130px;
}


/* Soft futuristic glow */
.solution::after{
  content:"";
  position:absolute;
  inset:auto -40% -40% auto;
  width:300px;
  height:300px;
  background:radial-gradient(circle,var(--accent),transparent 70%);
  opacity:.08;
}

/* ================= CONTENT ================= */
.solution__eyebrow{
  font-size:12px;
  letter-spacing:1.5px;
  color:var(--accent);
  text-transform:uppercase;
}

.solution__title{
  font-size:26px;
  margin:10px 0;
}

.solution__desc{
  color:var(--muted);
  margin-bottom:20px;
}

/* ================= LIST ================= */
.solution__list{
  list-style:none;
  padding:0;
  margin-bottom:20px;
}
.solution__list li{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  color:var(--muted);
}
.solution__list li::before{
  content:"◉";
  color:var(--accent);
  font-size:14px;
}

/* ================= META ================= */
.solution__meta{
  display:flex;
  gap:20px;
  font-size:13px;
  color:#9fb3ff;
  margin-bottom:20px;
}

/* ================= BUTTONS ================= */
.solution__cta{
  display:flex;
  gap:15px;
}

.btn--ghost{
  background:transparent;
  border:1px solid var(--border);
  color:var(--text);
}


/* ===============================
   SOFTWARE DELIVERY – TECH STACK
================================ */

.tech-stack {
  background: linear-gradient(180deg, #0c1224, #0a1020);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.tech-title {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.tech-group {
  margin-bottom: 18px;
}

.tech-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8fa9ff;
  margin-bottom: 10px;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #e6e9f0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: default;
}

.tech-pill:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}


/* ================= DATABASE BARS ================= */
.db-bar{
  margin-top:30px;
}
.db-bar span{
  font-size:13px;
  color:black;
}
.db-meter{
  height:6px;
  background:#0a0f25;
  border-radius:4px;
  overflow:hidden;
}
.db-meter div{
  height:100%;
  background: #0f62fe;
}

/* ---------- CHAT STYLE ---------- */
.style-chat .chat-bubble { 
    position: absolute; 
    padding: 5px 20px; 
    background: #0b1729c4;
     border-radius: 18px; 
     border: 1px solid #333; 
     color: #fff; 
     font-size: 14px; 
     width: max-content; } 
     
     .chat-bubble.one { 
        top: 20%; left: 50%; } 
        
        .chat-bubble.two { top: 55%; left: 65%; } 

        .pulse { width: 160px; 
            height: 160px;
             border-radius: 50%;
              background:#0b1729;
               position: absolute; 
               top: 20%; 
               left: 60%; 
               animation: pulseAnim 2s infinite; } 
               
               @keyframes pulseAnim { 
                0% { transform: scale(0.9); opacity: 0.5; } 
                100% { transform: scale(1.2); opacity: 0.15; } }

/* ================= FOOTER ================= */
.solutions-footer{
  text-align:center;
  color:var(--muted);
  margin-top:60px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .solution{grid-template-columns:1fr}
}   



/* ------------------------------------------------------------------- 
 * ## testimonials
 * ------------------------------------------------------------------- */
.testimonials {
    --text-slide-size : 3.6rem;
    --text-multiplier : 1;
    margin-top        : var(--vspace-3_5);
    margin-bottom     : var(--vspace-3);
    max-width         : 960px;
    text-align        : center;
}

.testimonials .text-pretitle {
    color : var(--color-2);
}

.testimonials .swiper-container {
    margin-top     : var(--vspace-1);
    padding-bottom : var(--vspace-1_5);
}

/* testimonial slider 
 */
.testimonial-slider__slide {
    position : relative;
}

.testimonial-slider__slide p {
    font-size   : calc(var(--text-slide-size) * var(--text-multiplier));
    line-height : 1.5556;
}


/* ===============================
   Testimonial Navigation Arrows
================================ */

.testimonial-prev,
.testimonial-next {
    color: #0b5cff;              /* arrow color */
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

}

.testimonial-prev::after,
.testimonial-next::after {
    font-size: 18px;
    font-weight: bold;
}



/* Hover effect */
.testimonial-prev:hover,
.testimonial-next:hover {
    background: #0b5cff;
    color: #ffffff;
}

/* Mobile: move arrows inside */
@media (max-width: 768px) {
    .testimonial-prev {
        left: 5px;
    }
    .testimonial-next {
        right: 5px;
    }
}

/* ------------------------------------------------------------------- 
 * ## clients
 * ------------------------------------------------------------------- */
.clients-block {
    padding-top      : var(--vspace-1_25);
    padding-bottom   : calc(2.25 * var(--space));
    background-color : var(--color-gray-4);
}

.clients {
    margin-top     : var(--vspace-1_5);
    padding-bottom : var(--vspace-1_75);
}

.clients__slide img {
    margin     : 0;
    opacity    : .4;
    transform  : scale(0.85);
    transition : all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.clients__slide:focus img,
.clients__slide:hover img {
    transform : scale(1);
    opacity   : 1;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * works
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .folio-item__title {
        font-size : calc(var(--text-size) * 0.8889);
    }

    .folio-item__cat {
        font-size : calc(var(--text-size) * 0.7778);
    }

    .testimonials {
        max-width : 600px;
    }
}

@media screen and (max-width: 700px) {
    .folio-list .brick {
        float : none;
        width : auto;
    }

    .folio-item__title {
        font-size : var(--text-size);
    }

    .folio-item__cat {
        font-size : 1.2rem;
    }

    .testimonials {
        --text-multiplier : .9;
    }
}

@media screen and (max-width: 600px) {
    .testimonials {
        --text-multiplier : .8;
    }
}

@media screen and (max-width: 500px) {
    .testimonials {
        --text-multiplier : .65;
    }
}

@media screen and (max-width: 400px) {
    .testimonial-slider__slide p {
        font-size : 2.1rem;
    }
}

  
/* CONTACT VIDEO HERO */
.contact-video-hero {
  position: relative;
  height: 100vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

/* Video */
.contact-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.contact-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.75)
  );
  z-index: 2;
}

/* Content */
.contact-video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: #fff;
}

.contact-eyebrow {
  font-size: 15px;
  letter-spacing: 3px;
  color: #6ecbff;
  margin-bottom: 14px;
}

.contact-video-content h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.3;
}

.contact-video-content h1 span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #8fd6ff;
}





/* ===================================================================
 * # CONTACT
 *
 *
 * ------------------------------------------------------------------- */
.s-contact {
    --color-border      : rgba(255, 255, 255, .05);

    background-color    : var(--color-gray-19);
    background-image    : url(../images/contact-bg.jpg);
    background-repeat   : no-repeat;
    background-position : center;
    background-size     : cover;
    padding-top         : var(--vspace-5);
    padding-bottom      : var(--vspace-3);
    position            : relative;
}

.s-contact h5 {
    margin-top    : 0;
    margin-bottom : var(--vspace-1);
    color         : rgba(255, 255, 255, 0.25);
}

.s-contact h5.with-top-line {
    padding-top : var(--vspace-0_75);
    border-top  : 1px solid var(--color-border);
}

.s-contact::before {
    content        : "";
    display        : block;
    background     : black;
    position       : absolute;
    top            : 0;
    left           : 0;
    right          : 0;
    bottom         : 0;
    width          : 100%;
    height         : 100%;
    pointer-events : none;
    opacity        : .75;
}

.s-contact .section-header {
    max-width : 1020px;
}

.s-contact .section-header a {
    color : var(--color-1);
}

/* ------------------------------------------------------------------- 
 * ## contact infos
 * ------------------------------------------------------------------- */
.s-contact__infos {
    margin-top  : var(--vspace-3_5);
    font-family : var(--font-2);
    font-weight : 400;
    font-size   : calc(var(--text-size) * 1.556);
    line-height : var(--vspace-1_5);
    color       : white;
    position    : relative;
}

.s-contact__infos [class*="s-contact__block"] {
    padding-bottom : var(--vspace-1);
}

.s-contact__list {
    list-style  : none;
    margin-left : 0;
}

.s-contact__list a {
    color : white;
}

.s-contact__list a:focus,
.s-contact__list a:hover {
    color : var(--color-1);
}

.s-contact__list li {
    padding-left : 0;
}

/* ------------------------------------------------------------------- 
 * ## contact bottom
 * ------------------------------------------------------------------- */
.s-contact__bottom {
    --btn-input-height : var(--vspace-2);
    margin-top         : var(--vspace-0_5);
    position           : relative;
}

/* mail button block
 */
.s-contact__mail-block {
    padding-top : calc(var(--vspace-0_875) + var(--vspace-1));
    position    : relative;
}

.s-contact__mail-block::before {
    content          : "";
    display          : block;
    width            : 200px;
    height           : 1px;
    background-color : var(--color-border);
    position         : absolute;
    top              : calc(var(--vspace-0_875) / 2);
    left             : var(--gutter);
}

.btn--mail {
    --btn-height : var(--btn-input-height);
    border       : 2px solid var(--color-1);
    color        : white;
    margin       : 0;
}

.btn--mail:focus,
.btn--mail:hover {
    background-color : var(--color-1) !important;
    color            : black;
}

/* subscription form
 */
.s-contact__subscribe {
    --input-height : var(--btn-input-height);
    --btn-width    : 180px;
}

.s-contact__subscribe form {
    display       : flex;
    flex-flow     : row wrap;
    margin-bottom : 0;
}

.s-contact__subscribe input[type="email"],
.s-contact__subscribe input[type="submit"],
.s-contact__subscribe .ms-status {
    flex : none;
}

.s-contact__subscribe input[type="email"] {
    width            : calc(100% - var(--btn-width));
    background-color : rgba(255, 255, 255, 0.05);
    font-size        : var(--text-sm);
    color            : white;
    border           : none;
    padding          : var(--input-vpadding) calc(2.8rem - 1px);
    text-align       : left;
    margin           : 0;
}

.s-contact__subscribe input[type="submit"] {
    --btn-height     : var(--btn-input-height);
    background-color : var(--color-1);
    border           : 2px solid var(--color-1);
    color            : black;
    width            : var(--btn-width);
    margin           : 0;
}

.s-contact__subscribe .mc-status {
    width       : 100%;
    margin-top  : var(--vspace-0_75);
    font-family : var(--font-2);
    font-size   : var(--text-sm);
    color       : var(--color-1);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * contact
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .s-contact__mail-block {
        padding-top : 0;
    }

    .s-contact__mail-block::before {
        display : none;
    }

    .btn--mail {
        width         : 100%;
        margin-bottom : var(--vspace-2_5);
    }
}

@media screen and (max-width: 600px) {
    .s-contact .text-display-title {
        --text-multiplier : .6;
    }

    .s-contact__subscribe form {
        display : block;
    }

    .s-contact__subscribe input[type="email"],
    .s-contact__subscribe input[type="submit"],
    .s-contact__subscribe .mc-status {
        width : 100%;
    }

    .s-contact__subscribe input[type="email"] {
        text-align    : center;
        margin-bottom : var(--vspace-0_5);
    }

    .s-contact__subscribe .mc-status {
        text-align : center;
    }
}

@media screen and (max-width: 500px) {
    .s-contact .text-display-title {
        --text-multiplier : .55;
    }

    .s-contact h5 {
        font-size     : calc(var(--text-size) * 1.1111);
        margin-bottom : var(--vspace-0_375);
    }

    .s-contact__infos {
        font-size   : var(--text-lg);
        line-height : calc(1.375 * var(--space));
    }
}

@media screen and (max-width: 400px) {
    .s-contact .text-display-title {
        font-size : var(--text-xl);
    }
}

/* ==================================================
   CONTACT SECTION
================================================== */

.contact-section {
    background: #ffffff;
    padding: 8rem 2rem;
}

/* MAIN GRID */
.contact-container {
    max-width: 1100px;
    margin: 0 auto 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
   
}

/* LEFT INFO */

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #555;
    line-height: 1.7;
    max-width: 420px;
}

.contact-details {
    margin-top: 3rem;
}

.contact-details p {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

.contact-details a {
    color: #2563eb;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* FORM */
.contact-form {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.6rem;
}

.form-group label {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem 1.4rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 1.4rem;
    transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.form-status {
  margin-top: 1rem;
  font-size: 14px;
  font-weight: 500;
}

/* BUTTON */
.contact-btn {
    margin-top: 1.5rem;
    width: 100%;
    background: #646363;
    color: #fff;
    border: none;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}


.contact-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
   border-radius: 2%;
   border-style: double;
   border-color: black;
}

/* BOTTOM SECTION */
.contact-bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ADDRESS */
.contact-address h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.contact-address p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* MAP */
/* ==============================
   CONTACT MAP – RIGHT SIDE ONLY
============================== */

.contact-map-section {
    width: 100%;
    padding: 80px 6%;
    background: #ffffff;
}

/* Grid container */
.contact-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* Push map to RIGHT */
.contact-map-wrapper iframe {
    grid-column: 2;
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Responsive: center map on mobile */
@media (max-width: 900px) {
    .contact-map-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-map-wrapper iframe {
        grid-column: 1;
        height: 300px;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container,
    .contact-bottom {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2.5rem;
    }
}



/* ===================================================================
 * # FOOTER
 *
 *
 * ------------------------------------------------------------------- */
.s-footer {
    background-color : #111111;
    padding-top      : var(--vspace-1_75);
    padding-bottom   : var(--vspace-1_75);
    font-family      : var(--font-2);
    font-size        : calc(var(--text-size) * 0.8889);
    line-height      : var(--vspace-1);
    color            : rgba(255, 255, 255, 0.25);
    position         : relative;
}

.s-footer a {
    color : white;
}

.s-footer a:focus,
.s-footer a:hover {
    color : var(--color-1);
}

/* ------------------------------------------------------------------- 
 * ## copyright
 * ------------------------------------------------------------------- */
.ss-copyright {
    padding-right : var(--vspace-2);
}

.ss-copyright span {
    display : inline-block;
}

.ss-copyright span::after {
    content : "|";
    display : inline-block;
    padding : 0 1rem 0 1.2rem;
    color   : rgba(255, 255, 255, 0.05);
}

.ss-copyright span:last-child::after {
    display : none;
}

/* ------------------------------------------------------------------- 
 * ## go top
 * ------------------------------------------------------------------- */
.ss-go-top {
    z-index    : 2;
    opacity    : 0;
    visibility : hidden;
    transform  : translate(0, 200%);
    transition : all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    position   : fixed;
    bottom     : 4.4rem;
    right      : 4rem;
}

.ss-go-top a {
    display          : flex;
    align-items      : center;
    justify-content  : center;
    text-decoration  : none;
    border           : none;
    height           : calc(1.875 * var(--space));
    width            : calc(1.875 * var(--space));
    border-radius    : 50%;
    background-color : black;
    transition       : all .3s;
    position         : relative;
}

.ss-go-top a:focus svg path,
.ss-go-top a:hover svg path {
    fill : white;
}

.ss-go-top svg {
    height : var(--vspace-0_75);
    width  : var(--vspace-0_75);
}

.ss-go-top svg path {
    fill : white;
}

.ss-go-top.link-is-visible {
    opacity    : 1;
    visibility : visible;
    transform  : translate(0, 0);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * footer
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .ss-go-top {
        right  : var(--vspace-1);
        bottom : var(--vspace-1_5);
    }

    .ss-go-top a {
        height : var(--vspace-1_75);
        width  : var(--vspace-1_75);
    }

    .ss-go-top svg {
        height : var(--vspace-0_625);
        width  : var(--vspace-0_625);
    }
}

@media screen and (max-width: 500px) {
    .ss-copyright span {
        display : block;
    }

    .ss-copyright span::after {
        display : none;
    }
}

/* ============================
   SOLUTIONS PAGE – MODERN UI
=============================== */

.page-wraps {
    max-width: 1200px;
    margin: auto;
    padding: 4rem 1.5rem;
}

/* ---------- HERO ---------- */
.page-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ---------- NAV PILLS ---------- */
.solutions-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 4rem;
}

.solutions-nav a {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 30px;
    text-decoration: none;
    color: #555;
    border: 1px solid #ddd;
    background: #fff;
}

.solutions-nav a:hover {
    background: #0f62fe;
    color: #fff;
    border-color: #0f62fe;
}

/* ---------- SOLUTION CARD ---------- */
.solution {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    margin-bottom: 4.5rem;
    padding: 3rem;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    scroll-margin: 130px;
}


/* Soft futuristic glow */
.solution::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
        rgba(15,98,254,0.08),
        transparent 60%);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
    .solution {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

/* ---------- CONTENT ---------- */
.solution__eyebrow {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0f62fe;
    margin-bottom: 6px;
}

.solution__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.solution__desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ---------- FEATURE LIST (ICONS) ---------- */
.solution__list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.solution__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #444;
    font-size: 15px;
}

/* Minimal futuristic icon */
.solution__list li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f62fe, #42a5ff);
    box-shadow: 0 0 8px rgba(15,98,254,0.6);
}

/* ---------- META ---------- */
.solution__meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #777;
    margin-bottom: 1.5rem;
}

/* ---------- CTA ---------- */
.solution__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}



.btn:hover {
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: #444;
    border: 1px solid #ccc;
    box-shadow: none;
}

.btn--ghost:hover {
    background: #f5f7fb;
}




/* ===============================
   NETWORK VISUAL PANEL (RIGHT)
================================ */

.network-panel {
  background: linear-gradient(145deg, #0d1224, #0a0f1d);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-height: 360px;
}

/* Header */
.network-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #cfd8ff;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3bff8f;
  box-shadow: 0 0 10px rgba(59,255,143,0.8);
}

/* Animated Nodes */
.network-nodes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2b345a;
  position: relative;
}

.node.active {
  background: #4da3ff;
  box-shadow: 0 0 15px rgba(77,163,255,0.8);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 8px rgba(77,163,255,0.6); }
  50% { box-shadow: 0 0 18px rgba(77,163,255,1); }
  100% { box-shadow: 0 0 8px rgba(77,163,255,0.6); }
}

/* Metrics */
.network-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.metric span {
  font-size: 12px;
  color: #a9b4ff;
}

.metric strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: #ffffff;
}





/* ---------- FOOTER ---------- */
.solutions-footer {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 4rem;
}

/* FINAL CLICK SAFETY FIX */
.s-intro__bg {
    pointer-events: none !important;
}

.s-intro__more,
.s-intro__more a {
    position: relative;
    z-index: 9999;
    pointer-events: auto !important;
}

/* ============================= */
/* SOLUTIONS SHOWCASE SECTION */
/* ============================= */

.solutions-showcase {
  position: relative;
  padding: 140px 0 180px;
  overflow: hidden;
  background: #ffffff;
}

/* Curved background */
.solutions-bg {
  position: absolute;
  inset: 0;
  background:#a8c9fb;
  clip-path: ellipse(120% 70% at 50% 100%);
  z-index: 0;
}

/* Content wrapper */
.solutions-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.solutions-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}

.solutions-header p {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.7;
}

/* Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px 80px;
}

/* Cards */
.solution-card {
  background: #0b1729;
  color: #ffffff;
  border-radius: 18px;
  padding: 36px 34px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

/* Slight zig-zag layout */
.solution-card.offset {
  transform: translateY(40px);
}

/* Hover interaction */
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
}

.solution-card h3 {
  font-size: 2rem;
 
  margin-bottom: 14px;
  color: white;
}

.solution-card p {
  font-size: 1.20rem;
  line-height: 1.6;
  color: #e7f5ef;
}

/* Responsive */
@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .solution-card.offset {
    transform: none;
  }

  .solutions-header h2 {
    font-size: 2.2rem;
  }
}
/* Icon badge */
.card-icon {
  position: absolute;
  top: -16px;
  right: 24px;
  font-size: 20px;
  background: #ffffff;
  color: #0b6b4f;
  padding: 8px 10px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Base badge */
.card-badge {
  position: absolute;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Transparent top badge */
.card-badge--top {
  top: -14px;
  left: 18px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  color: #1b1b1b;
  border: 1px solid rgba(0, 0, 0, 0.08);
}


/* Bottom-right badge container */
.card-badges-right {
  position: absolute;
  bottom: -40%;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}

/* Individual mini badge */
.mini-badge {
  font-size: 11px;
  padding: 4px 20px;
  border-radius: 999px;
  background:rgba(255, 255, 255, 0.55);
  color: #000000;
  white-space: nowrap;
  width: fit-content;
 backdrop-filter: blur(6px);
}

/* Subtle hover lift (card hover) */
.solution-card:hover .mini-badge {
  opacity: 1;
  transform: translateX(-2px);
}

/* card must already be position: relative */
.solution-card {
  position: relative;
}


/* popover box */
.info-popover {
  position: absolute;
  bottom: 48px;
  left: 14px;
  width: 280px;
  background: #ffffff;
  color: #1b1b1b;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 20;
}
.info-popover p{
color: black;
}

/* show on hover */
.solution-card:hover .info-popover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* show when clicked (JS toggles this) */
.info-popover.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

* {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  
}

