@import 'icons.css';

/* =============================================================================
   CSS Custom Properties (Variables)
   ============================================================================= */
:root {
    /* Font Families */
    --font-family-headings: 'Inter', sans-serif;
    --font-family-body: 'Source Sans Pro', sans-serif;

    /* Font Sizes */
    --font-size-hero: 3.5rem;        /* Main page titles */
    --font-size-h1: 2.8rem;          /* Major section headings */
    --font-size-h2: 2.5rem;          /* Subsection headings */
    --font-size-h3: 1.8rem;          /* Component headings */
    --font-size-h4: 1.4rem;          /* Lead text */
    --font-size-h5: 1.25rem;         /* Quote text */
    --font-size-body: 1.1rem;        /* Standard body text */
    --font-size-small: 1rem;         /* Small text, attributions */
    --font-size-base: 16px;          /* Base paragraph size */

    /* Font Weights */
    --font-weight-bold: 700;
    --font-weight-semibold: 600;
    --font-weight-normal: 400;

    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;
    --line-height-base: 26px;

    /* Colors */
    --color-primary: #0062AF;
    --color-secondary: #4EC4CC;
    --color-text: #555;
    --color-text-light: #777;
    --color-heading: #333;
    --color-accent: #b2a475;
    --color-white: #ffffff;
    --color-background-light: #f8f9fa;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2.5rem;
    --spacing-xxl: 3rem;
}

/* =============================================================================
   Base Styles
   ============================================================================= */
body {
    color: var(--color-text);
    font-family: var(--font-family-body);
    font-weight: var(--font-weight-normal);
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    color: var(--color-heading);
    font-weight: var(--font-weight-bold);
}

p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

/* =============================================================================
   Header Styles
   ============================================================================= */
.main-header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .navbar {
    padding: 0.75rem 0;
    background: transparent;
    margin-bottom: 0;
}

.main-header .navbar-brand {
    padding: 0;
    margin-right: 2rem;
}

.main-header .logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.main-header .navbar-nav .nav-item {
    margin: 0 1rem;
    border: none;
}

.main-header .navbar-nav .nav-link {
    color: var(--color-heading);
    font-family: var(--font-family-body);
    font-size: 15px;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.main-header .navbar-nav .nav-link:hover {
    color: var(--color-primary);
}

.main-header .navbar-nav .nav-item.active .nav-link {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}

.main-header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #076799;
    transition: width 0.3s ease;
}

.main-header .navbar-nav .nav-link:hover::after,
.main-header .navbar-nav .nav-item.active .nav-link::after {
    width: 100%;
}

.main-header .nav-login {
    background-color: #076799;
    color: #ffffff !important;
    padding: 8px 24px !important;
    border-radius: 25px;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.main-header .nav-login:hover {
    background-color: #054a6e;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(7, 103, 153, 0.3);
}

.main-header .nav-login::after {
    display: none;
}

.main-header .navbar-toggler {
    border: 1px solid #ddd;
    padding: 4px 8px;
}

.main-header .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.main-header .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23076799' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
ul.social-icons {
    padding-left: 10px !important;
}
ul.social-icons a i {
    margin-right: 8px;
}
ul.social-icons li a {
    font-size: 25px !important;
}

/* Remove old navbar styles */
.li-navbar {
    display: none;
}

/* Clean up old navbar styles - keeping for backward compatibility if needed */
.bg-blue {
    background-color: #076799 !important;
    border-radius   : 30px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .main-header .navbar-collapse {
        background: #ffffff;
        padding: 1rem 0;
        margin-top: 1rem;
        border-top: 1px solid #e9ecef;
    }

    .main-header .navbar-nav {
        text-align: center;
    }

    .main-header .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }

    .main-header .nav-login {
        display: inline-block;
        margin: 1rem auto 0;
    }
}

@media (max-width: 576px) {
    .main-header .logo-img {
        height: 35px;
    }
}

#particles-js {
    background: #333;
    max-height: 630px;
    overflow  : hidden;
    opacity   : 0.9;
    position  : absolute;
    top       : 0;
    left      : 0;
    width     : 100%;
    height    : 100%;
}

/* Professional Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #076799 0%, #0a4d72 50%, #054062 100%);
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -76px; /* Pull up to go under header */
    padding-top: 120px; /* Add padding to account for header */
    padding-bottom: 60px;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.min-vh-75 {
    min-height: 60vh;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-hero {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #ffffff;
    color: #076799;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #054062;
    text-decoration: none;
}

.hero-bottom-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* Responsive Hero Section */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-section {
        min-height: 400px;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .hero-shape-1,
    .hero-shape-2,
    .hero-shape-3 {
        opacity: 0.05;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 15px;
    }

    .btn-hero {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .hero-section {
        min-height: 350px;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-decorative-elements {
        opacity: 0.3;
    }
}

/* Hero Section Decorative Elements */
.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #65C9D4, #9AE6B4);
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #FFB6C1, #87CEEB);
    top: 60%;
    right: 15%;
    animation: float 4s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(225deg, #DDA0DD, #98FB98);
    top: 30%;
    right: 40%;
    animation: float 5s ease-in-out infinite;
}

.hero-dotted-circle {
    position: absolute;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.hero-dotted-circle-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 5%;
}

.hero-dotted-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 10%;
    animation-direction: reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Illustration Styles */
.hero-illustration {
    position: relative;
    height: 500px;
    z-index: 2;
}

.illustration-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.data-visualization {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Device Frame */
.device-frame {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 200px;
    height: 150px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
    animation: pulse 3s ease-in-out infinite;
}

.device-screen {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

/* Chart Bars */
.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 60px;
    margin-bottom: 10px;
}

.chart-bar {
    width: 12px;
    border-radius: 6px 6px 0 0;
    animation: growBar 2s ease-out infinite alternate;
}

.chart-bar-1 {
    height: 40px;
    background: #076799;
    animation-delay: 0s;
}

.chart-bar-2 {
    height: 60px;
    background: #65C9D4;
    animation-delay: 0.2s;
}

.chart-bar-3 {
    height: 35px;
    background: #9AE6B4;
    animation-delay: 0.4s;
}

.chart-bar-4 {
    height: 50px;
    background: #FFB6C1;
    animation-delay: 0.6s;
}

@keyframes growBar {
    from { transform: scaleY(0.5); }
    to { transform: scaleY(1); }
}

/* Data Points */
.data-points {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 30px;
}

.data-point {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.data-point-1 {
    background: #076799;
    animation-delay: 0s;
}

.data-point-2 {
    background: #65C9D4;
    animation-delay: 0.5s;
}

.data-point-3 {
    background: #9AE6B4;
    animation-delay: 1s;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Healthcare Professional Figure */
.healthcare-professional {
    position: absolute;
    bottom: 80px;
    left: 80px;
    z-index: 4;
}

.professional-figure {
    position: relative;
    width: 60px;
    height: 120px;
}

.figure-head {
    width: 25px;
    height: 25px;
    background: #FDBCB4;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.figure-body {
    width: 20px;
    height: 40px;
    background: #4A90E2;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
}

.figure-coat {
    width: 35px;
    height: 50px;
    background: #ffffff;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.figure-stethoscope {
    width: 3px;
    height: 15px;
    background: #333;
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.figure-stethoscope::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 100px;
    left: 50px;
    z-index: 2;
    opacity: 0.8;
}

/* Medical Icons */
.medical-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.medical-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: floatIcon 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.medical-icon svg {
    width: 28px;
    height: 28px;
}

.medical-icon-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.medical-icon-2 {
    top: 65%;
    right: 25%;
    animation-delay: 1s;
}

.medical-icon-3 {
    top: 35%;
    left: 5%;
    animation-delay: 2s;
}

.medical-icon-4 {
    top: 50%;
    right: 10%;
    animation-delay: 0.5s;
}

.medical-icon-5 {
    top: 80%;
    left: 35%;
    animation-delay: 1.5s;
}

/* Remove duplicate animation - already defined above */

/* Enhanced floating animation with slight rotation */
@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: translateY(-15px) scale(1.05) rotate(5deg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Contact Note */
.hero-contact-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-contact-link {
    color: #65C9D4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hero-contact-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Remove old home-slider styles */
.home-slider {
    display: none;
}

/* Clean up old slider styles - removed */

#particles-js .container {
    position: relative;
}

#particles-js .banners-container {
    position: absolute;
    width   : 100%;
}

.home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer {
    display    : flex;
    align-items: center;
}

.home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer .huski-letter-inner {
    display    : flex;
    align-items: center;
}

.home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer .huski-letter-inner img {
    margin-top: -5px;
    width     : 50px;
}

.home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer .huski-letter-inner h3 {
    margin-top : -5px;
    color      : #fff;
    text-shadow: 2px 2px #000;
}

.sim-slider-slide,
.sim-slider-layer,
.sim-slider-inner-slide,
.sim-slider-inner-layer {
    display: none;
}

.banner-h1 {
    color     : #fff;
    text-align: center;
    display   : none;
}

.heading h5 {
    color        : #106C9D;
    font-size    : 25px;
    font-weight  : 400;
    margin-bottom: 6px;
    line-height  : 32px;
}

.heading h2 {
    font-size         : 36px;
    line-height       : 38px;
    font-weight       : 900;
    align-items       : center;
    color             : #0062af;
    margin-bottom     : 0px;
    display           : -ms-flexbox !important;
    display           : flex !important;
    -ms-flex-align    : center !important;
    align-items       : center !important;
    -ms-flex-direction: column !important;
    flex-direction    : column !important;
}

.heading.align-left h2 {
    -ms-flex-align: flex-start !important;
    align-items   : flex-start !important;
}

.heading h2 span {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top    : 10px;
}

.heading .separator {
    text-align     : center;
    justify-content: center;
    -ms-flex-align : center !important;
    align-items    : center !important;
    display        : -ms-flexbox !important;
    display        : flex !important;
}

.heading .separator:after,
.heading .separator:before {
    content   : '';
    width     : 100px;
    height    : 2px;
    background: #f39a00;
    display   : inline-block;
}

.heading .separator .line1 {
    width     : 12px;
    height    : 20px;
    background: #f39a00;
    font-size : 0;
    display   : inline-block;
    margin    : 5px;
    transform : skewX(-30deg);
}

.heading .separator .line1 {
    width     : 12px;
    height    : 20px;
    background: #f39a00;
    font-size : 0;
    display   : inline-block;
    margin    : 5px;
    transform : skewX(-30deg);
}

.heading.align-left .separator {
    text-align     : left;
    justify-content: left;
    -ms-flex-align : left !important;
    align-items    : left !important;
    display        : -ms-flexbox !important;
    display        : flex !important;
}


.huski-intro .gray-bg {
    background-color: #f4f4f4;
    padding         : 5em 0 3em;
}

.huski-overview {
    margin  : 5em 0;
    padding : 10px;
    position: relative;
}

.huski-overview::after {
    content            : "";
    position           : absolute;
    left               : 0;
    top                : 0;
    width              : 60%;
    height             : 100%;
    background         : url('../images/vision-img.jpg');
    background-repeat  : no-repeat;
    background-size    : cover;
    z-index            : -1;
    background-position: right center;
}

.huski-overview-right {
    padding: 30px 0;
}

.huski-overview-right-content {
    background: #064670;
    color     : #fff;
    padding   : 30px;
}

.huski-overview-right-content .heading h2 {
    color: #fff;
}

.huski-overview-right-content p {
    line-height: 25px;
    text-align : center;
}

.huski-overview-right-content:after {
    content      : '';
    position     : absolute;
    border       : solid 3px #f39a00;
    left         : 212px;
    top          : -11px;
    bottom       : -11px;
    right        : -45px;
    display      : inline-block;
    visibility   : visible;
    z-index      : -10;
    border-radius: 20px;
}

/***/
.huski-outcome {
    position: relative;
    margin  : 5em 0;
    padding : 10px;
}

.huski-outcome::after {
    content          : "";
    position         : absolute;
    left             : 0;
    top              : 0;
    width            : 60%;
    height           : 100%;
    background       : url('../images/outcome-right.jpg');
    background-repeat: no-repeat;
    background-size  : cover;
    z-index          : -1;
}

.huski-outcome-right {
    padding: 30px 0;
}

.huski-outcome-right-content {
    background: #064670;
    color     : #fff;
    padding   : 30px;
}

.huski-outcome-right-content .heading h2 {
    color: #fff;
}

.huski-outcome-right-content p {
    line-height: 25px;
    text-align : center;
}

.huski-outcome-right-content:after {
    content      : '';
    position     : absolute;
    border       : solid 3px #f39a00;
    left         : 180px;
    top          : -10px;
    bottom       : -10px;
    right        : -40px;
    display      : inline-block;
    visibility   : visible;
    z-index      : -10;
    border-radius: 20px;
}

/**/
/***/
.huski-outcome-table {
    position: relative;
    margin  : 5em 0;
    padding : 10px;
}

.huski-outcome-table::after {
    content          : "";
    position         : absolute;
    right            : 0;
    top              : 0;
    width            : 60%;
    height           : 100%;
    background       : url('../images/outcome-left.jpg');
    background-repeat: no-repeat;
    background-size  : cover;
    z-index          : -1;
}

.huski-outcome-table-right {
    padding: 30px 0;
}

.huski-outcome-table tr:nth-child(odd) {
    background-color: #D2EAF4;
}

.huski-outcome-table table th,
.huski-outcome-table table td {
    border-width: 2px !important;
    border-color: rgb(33, 35, 36);
}

.huski-outcome-table table tr th {
    background-color: #4FACC7;
    color           : #fff;
}

.huski-outcome-table tr:nth-child(odd) {
    background-color: #D2EAF0 !important;
}

.huski-outcome-table table th,
.huski-outcome-table table td {
    border-width: 2px !important;
    border-color: rgb(33, 35, 36);
}

.huski-outcome-table-right-content {
    background: #064670;
    color     : #fff;
    padding   : 30px;
}

.huski-outcome-table-right-content .heading h2 {
    color: #fff;
}

.huski-outcome-table-right-content p {
    line-height: 25px;
    text-align : center;
}

.huski-outcome-table-right-content:after {
    content      : '';
    position     : absolute;
    border       : solid 3px #f39a00;
    left         : -40px;
    top          : -10px;
    bottom       : -10px;
    right        : 180px;
    display      : inline-block;
    visibility   : visible;
    z-index      : -10;
    border-radius: 20px;
}

.huski-outcome-table-right-content table {
    background: #fff;
}

/**/

.huski-services .gray-bg {
    background-color: #f4f4f4;
    padding         : 30px 0 50px;
}

.huski-service-single {
    text-align: center;
    transition: all .2s cubic-bezier(.02, .54, .58, 1);
}



.huski-service-single:after {
    content      : '';
    position     : absolute;
    border       : solid 2px #f39a00;
    left         : 0;
    top          : 62px;
    bottom       : -11px;
    right        : -15px;
    display      : inline-block;
    visibility   : visible;
    z-index      : 1;
    border-radius: 50px;
}

.huski-service-single .service-icon {
    background   : #fff;
    display      : inline-block;
    width        : 120px;
    height       : 120px;
    border-radius: 50%;
    z-index      : 2;
    position     : relative;
    transition   : all .2s cubic-bezier(.02, .54, .58, 1);
}

.huski-service-single .service-icon i {
    font-size : 80px;
    color     : #1975bb;
    transition: all .2s cubic-bezier(.02, .54, .58, 1);
}

.huski-service-single:hover .service-icon {
    transform : translate3d(0px, -10px, 0px);
    box-shadow: 10px 10px 20px #888;
}

.huski-service-single .service-content {
    margin-top: 20px;
    position  : relative;
    z-index   : 9;
}

.huski-service-single .service-content h4 {
    font-size     : 22px;
    line-height   : 23px;
    font-weight   : 400;
    letter-spacing: 0px;
    color         : #061f51;
}

.huski-intro .huski-means {
    border-bottom: 1px solid #ddd
}

.triangle-jigsaw {
    position: relative;
}

.triangle-jigsaw .top {
    position  : relative;
    text-align: center;
}

.triangle-jigsaw .bottom {
    position: relative;
}

.triangle-jigsaw .top img {
    position: relative;
    top     : 50px;
    left    : -27px;
}

.triangle-jigsaw .bottom img:nth-child(1) {
    position: relative;
    left    : 0;
}

.triangle-jigsaw .bottom img:nth-child(2) {
    position: relative;
    left    : -29px;
    top     : 2px;
}

.huski-fullname-container .huski-letter-inner {
    padding         : 20px;
    background-color: #fff;
    border-radius   : 8px;
}

.huski-fullname-container .huski-letter-inner .huski-letter-content {
    display       : inline-block;
    vertical-align: text-top;
}

.huski-fullname-container .huski-letter-inner .huski-letter-content .huski-box {
    display        : flex;
    align-items    : center;
    justify-content: center;
}

.huski-fullname-container {
    margin-top: -53.5px;
}

.huski-fullname-container .huski-letter-inner .huski-letter-content .huski-box h3 {
    font-size  : 20px;
    margin     : 0;
    margin-left: 5px;
    font-weight: bold;
}

.huski-fullname-container .huski-letter-inner {
    transition: all 200ms;
}

.huski-fullname-container .huski-letter-inner:hover {
    box-shadow: 0px 10px 40px #00000047;
    cursor    : pointer;
    margin-top: -15px;
}

.service-content {
    padding: 0 20px;
}

.service-inner:hover {
    box-shadow: 0px 10px 40px #00000047;
    cursor    : pointer;
    background: #fff;
    transform : translate3d(0px, -25px, 0px);
}

.huski-testimonial {
    background: #064670;
    padding   : 5em 0;
}

.huski-testimonial .heading h2 span {
    color: #fff;
}

.huski-testimonial .item {
    padding   : 30px 50px;
    text-align: center;
}

.huski-testimonial .item p {
    font-size : 18px;
    color     : #fff;
    font-style: italic;
}

.huski-testimonial .item h5 {
    color      : #B5B5B5;
    font-weight: 500;
}

.quick-links h4,
.contact-info h4,
.follow-us h4 {
    color         : #fff;
    margin        : 9px 0 20px;
    letter-spacing: 0;
    font-weight   : 500;
}

.follow-us ul li {
    margin-right: 10px;
}

.follow-us ul li a {
    font-size: 25px;
    color    : #aaaeb9;
}

.quick-links ul {
    list-style  : none;
    padding-left: 0;
}

.quick-links ul li,
.contact-info li {
    margin-bottom: 10px;
    word-break   : break-word;
}

.quick-links ul li a,
.contact-info li a {
    text-transform: uppercase;
    font-size     : 13px;
    font-weight   : 700;
    letter-spacing: .1em;
    color         : #aaaeb9;

}

.contact-info li a {
    display    : flex;
    align-items: center;
}

.contact-info li a i {
    font-size: 16px;
    color    : #aaaeb9;
}

.contact-info li a:hover {
    text-decoration: none;
}

.contact-info li a span {
    margin-left: 15px;
}

.quick-links ul li,
.contact-info li {
    transition: all .2s cubic-bezier(.02, .54, .58, 1);
}

.quick-links ul li:hover,
.contact-info li:hover {
    transform: translate3d(3px, 0px, 0px);
}

.quick-links ul li:hover a {
    text-decoration: none;

}

.how-it-works .key-impetus {
    position: relative;
}

/* How it Works @start*/
.how-it-works .key-impetus::after {
    content            : "";
    width              : 50%;
    height             : 100%;
    position           : absolute;
    top                : 0;
    right              : 0;
    background         : url('../images/key-impetus-bg.jpg');
    background-position: center top;
    background-repeat  : no-repeat;
    background-size    : cover;
    z-index            : -1;
}

.how-it-works .key-impetus .content {
    padding: 50px;
}

.huski-approaches {
    background         : #edf2ff url('../images/section-2.png');
    background-repeat  : no-repeat;
    background-position: right top;
    padding            : 80px 0;
}

.huski-design-pattern {
    padding: 80px 0;
}

.huski-lifecycle {
    background         : #edf2ff url('../images/section-2.png');
    background-repeat  : no-repeat;
    background-position: right top;
    padding            : 80px 0;
}

.huski-usecase {
    padding: 80px 0;
}

.use-case tr:nth-child(odd) {
    background-color: #D2EAF0;
}

.use-case table th,
.use-case table td {
    border-width: 2px !important;
    border-color: rgb(33, 35, 36);
}

.use-case table tr th {
    background-color: #4FACC7;
    color           : #fff;
}

.use-case tr:nth-child(odd) {
    background-color: #D2EAF0;
}

.use-case table th,
.use-case table td {
    border-width: 2px !important;
    border-color: rgb(33, 35, 36);
}

.huski-benefits {
    background         : #edf2ff url('../images/section-1.png');
    background-repeat  : no-repeat;
    background-position: left top;
    padding            : 80px 0;
}

.infobox {
    padding: 25px 30px;
}

.get_in_touch,
.infobox {
    background-color: #1975bb;
}

.get_in_touch,
.get_in_touch a,
.get_in_touch h3,
.get_in_touch ul,
.infobox,
.infobox a,
.infobox h3,
.infobox ul {
    color: #fff !important;
}

.infobox ul {
    margin     : 0;
    font-size  : 100%;
    line-height: normal;
    list-style : none outside;
    padding    : 0;
}

.infobox ul li {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-left : 40px;
    margin       : 0;
    list-style   : none;
    position     : relative;
    padding      : 13px 0 13px 50px;
    word-wrap    : break-word;
}

.infobox ul li:before {
    content    : '\e841';
    font-family: "mfn-icons";
    color      : rgba(0, 0, 0, .7);
    font-size  : 20px;
    display    : block;
    width      : 16px;
    height     : 16px;
    position   : absolute;
    left       : 15px;
    top        : calc(50% - 8px);
}

.infobox ul li:last-child {
    border: 0;
}

.huski-fulfilments {
    margin-top: 5rem;
}

.huski-fulfilments .gray-bg {
    background-color: #f8faff;
    padding         : 30px 0 50px;
}

.huski-fulfilments .owl-theme .owl-dots .owl-dot.active span,
.huski-fulfilments .owl-theme .owl-dots .owl-dot:hover span {
    background: #a0915f;
}

.how-it-works ul {
    color: #737E86;
}

/* How it Works @end*/

/* About Us @start */
.about-us .about-us-photo {
    margin-top      : -26px;
    background-color: #f4f4f4;
}

.about-us .about-us-photo .gray-bg {
    background-color: #f4f4f4;
}

/* About Us @end */

/* Contact Us @start */
.contact-us .contact-us-photo {
    margin-top: -26px;
}

.contact-us .contact-us-photo .send-msg-container {
    padding: 80px 0;
}

.get_in_touch {
    background         : #5DC7D1 url('../images/get_in_touch.png');
    background-position: center right;
    padding            : 80px 30px;
    background-repeat  : no-repeat;
}

.get_in_touch ul {
    margin-top: 20px;
}

.get_in_touch ul li {
    margin-bottom: 20px;
    word-break   : break-word;
}

.get_in_touch ul li a {
    color      : #aaaeb9;
    display    : flex;
    align-items: center;
}

.get_in_touch ul li a:hover {
    text-decoration: none;
}

.get_in_touch ul li a i {
    font-size   : 16px;
    color       : #333;
    margin-right: 15px;
}

.btn-outline-primary {
    color       : #5DC7D1;
    border-color: #5DC7D1;
}

.btn-outline-primary:hover {
    color           : #fff;
    background-color: #5DC7D1;
    border-color    : #5DC7D1;
}

.lead {
    font-weight: 400;
    display    : inline-block;
    color      : #076799;
}
.iso-certificate-img{
	background: #fff;
	display: inline-block;
	border-radius: 50%;
}
/* Contact Us @end */

footer {
    padding            : 5em 0 0;
    background         : url('../images/footer-bg.jpg');
    background-size    : cover;
    background-repeat  : no-repeat;
    background-position: center -5px;
}

footer .about-us p {
    font-size  : 12px;
    line-height: 15px;
    padding    : 25px;
    color      : #aaaeb9;
}

footer .copyrights {
    border-top: 1px solid rgba(255, 255, 255, .1);
    color     : #aaaeb9;
    padding   : 55px 0;
}

@media (max-width: 768px) {
    .navbar-nav .nav-item:not(:last-child) {
        border-right: none;
    }
}

.position-relative {
    position: relative !important;
}

.text-green {
    color: #049450 !important;
}

.text-blue {
    color: #076799 !important;
}

.text-aqua {
    color: #4EC4CC !important;
}

[data-aos][data-aos][data-aos-delay="5000"].aos-animate,
body[data-aos-delay="5000"] [data-aos].aos-animate {
    transition-delay: 5s;
}

.text-white {
    color: #fff !important;
}

.btn {
    position          : relative;
    width             : auto;
    margin            : 0;
    font-family       : 'Poppins', sans-serif;
    font-size         : 11px;
    line-height       : 2em;
    letter-spacing    : .125em;
    border-radius     : 3em;
    font-weight       : 500;
    text-transform    : uppercase;
    outline           : 0;
    box-sizing        : border-box;
    -webkit-transition: color .2s cubic-bezier(.02, .54, .58, 1), background-color .2s cubic-bezier(.02, .54, .58, 1), border-color .2s cubic-bezier(.02, .54, .58, 1);
    -moz-transition   : color .2s cubic-bezier(.02, .54, .58, 1), background-color .2s cubic-bezier(.02, .54, .58, 1), border-color .2s cubic-bezier(.02, .54, .58, 1);
    transition        : color .2s cubic-bezier(.02, .54, .58, 1), background-color .2s cubic-bezier(.02, .54, .58, 1), border-color .2s cubic-bezier(.02, .54, .58, 1);
    padding           : 8px 28px;
    cursor            : pointer;
}

.btn-primary {
    background-color  : #4EC4CC;
    padding           : 12px 35px;
    box-shadow        : none;
    color             : #fff;
    border            : 1px solid transparent;
    -webkit-transition: box-shadow .35s cubic-bezier(.02, .54, .58, 1);
    -moz-transition   : box-shadow .35s cubic-bezier(.02, .54, .58, 1);
    transition        : box-shadow .35s cubic-bezier(.02, .54, .58, 1);
}

.btn-primary:hover {
    background-color: #4EC4CC;
    border          : 1px solid transparent;
    box-shadow      : rgba(78, 196, 204, 0.5) 0px 10px 25px 0px;
}

.border-radius-4 {
    border-radius: 10px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #f39a00;
}

/* 17 inch Display */
@media (max-width: 1024px) {

    .sim-slider-layer h1 {
        font-size: 22px;
    }

    .home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer .huski-letter-inner img {
        width: 55px;
    }

    .home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer .huski-letter-inner h3 {
        font-size: 22px;
    }

    .huski-overview {
        background-position: -575px center;
        background-size    : 115%;
        padding            : 60px;
    }

    .huski-overview-right-content::after {
        left  : 150px;
        top   : -15px;
        bottom: -15px;
    }

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

    .heading h2 img {
        width: 90px;
    }

    .huski-outcome {
        background-position: -210px center;
        background-size    : 83%;
        padding            : 55px;
    }

    .huski-outcome-right-content:after {
        content      : '';
        position     : absolute;
        border       : solid 3px #f39a00;
        left         : 170px;
        top          : -15px;
        bottom       : -18px;
        right        : -45px;
        display      : inline-block;
        visibility   : visible;
        z-index      : -10;
        border-radius: 20px;
    }

    .huski-outcome-table {
        padding            : 55px;
        background-position: right center;
        background-size    : 69%;
    }

    .huski-outcome-table-right-content:after {
        content      : '';
        position     : absolute;
        border       : solid 3px #f39a00;
        left         : -44px;
        top          : -20px;
        bottom       : -20px;
        right        : 240px;
        display      : inline-block;
        visibility   : visible;
        z-index      : -10;
        border-radius: 20px;
    }
}

/* iPad */
@media (max-width: 769px) {

    .li-navbar .huski-winner img {
        margin: 10px 0 0 0 !important;
        width : 230px;
    }

    .sim-slider-layer h1 {
        font-size: 19px;
    }

    .home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer .huski-letter-inner img {
        width: 45px;
    }

    .home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer .huski-letter-inner h3 {
        font-size: 20px;
    }

    .huski-overview {
        background: none;
    }

    .huski-overview .huski-overview-right {
        -ms-flex   : 0 0 100%;
        flex       : 0 0 100%;
        max-width  : 100%;
        margin-left: 0%;
    }

    .huski-outcome {
        background: none;
    }

    .huski-outcome .huski-outcome-right {
        -ms-flex   : 0 0 100%;
        flex       : 0 0 100%;
        max-width  : 100%;
        margin-left: 0%;
    }

    .huski-outcome-table {
        background: none;
    }

    .huski-outcome-table .huski-outcome-table-right {
        -ms-flex   : 0 0 100%;
        flex       : 0 0 100%;
        max-width  : 100%;
        margin-left: 0%;
    }

    footer .row div:nth-child(1) {
        -ms-flex   : 0 0 100%;
        flex       : 0 0 100%;
        max-width  : 100%;
        margin-left: 0%;
    }

    footer .row div:nth-child(2),
    footer .row div:nth-child(3) {
        -ms-flex   : 0 0 33.33%;
        flex       : 0 0 33.33%;
        max-width  : 33.33%;
        margin-left: 0%;
    }

}

@media (max-width: 600px) {

    .nav-container {
        padding: 0;
    }

    .navbar {
        margin-bottom: 0;
    }

    .navbar.bg-blue {
        border-radius: 0;
        margin-bottom: 0px;
    }

    .navbar-dark .navbar-nav .nav-item:last-child {
        display: block;
    }

    .sim-slider {
        margin-top: 0px;
    }

    footer .row div:nth-child(2),
    footer .row div:nth-child(3) {
        -ms-flex   : 0 0 100%;
        flex       : 0 0 100%;
        max-width  : 100%;
        margin-left: 0%;
        margin-top : 30px;
    }

    .home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer img:nth-child(1) {
        width: 100px;
    }

    .home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer img:nth-child(2) {
        width: 50px;
    }

    .home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer .huski-letter-inner img {
        width: 35px !important;
    }

    .home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer .huski-letter-inner h3 {
        font-size: 16px;
    }

    .sim-slider-layer h1 {
        font-size: 15px;
    }

    .navbar-dark .navbar-text {
        display: none;
    }

    .huski-overview,
    .huski-outcome,
    .huski-outcome-table {
        padding: 0px;
    }

    .huski-overview::after,
    .huski-outcome::after,
    .huski-outcome-table::after {
        background: none;
    }

    .huski-overview-right-content::after,
    .huski-outcome-right-content:after {
        left  : 65px;
        top   : -30px;
        bottom: -30px;
        right : 0;
    }

    .huski-service-single:after {
        left : 20px;
        right: 20px;
    }

    .huski-outcome-table-right-content:after {
        top   : -30px;
        bottom: -30px;
        left  : 0px;
        right : 65px;
    }

    .huski-outcome-table-right-content {
        padding: 30px 10px;
    }

    .heading h2 span {
        font-size: 22px;
    }

    .col-service {
        -ms-flex : 0 0 100%;
        flex     : 0 0 100%;
        max-width: 100%;
    }

    .how-it-works .key-impetus::after {
        background: none;
    }

    .how-it-works .key-impetus .content {
        padding   : 45px 30px;
        background: #f5f5f5;
        text-align: center;
    }

    .heading.align-left h2 {
        -ms-flex-align: center !important;
        align-items   : center !important;
    }

    .heading.align-left .separator {
        text-align     : center;
        justify-content: center;
        -ms-flex-align : center !important;
        align-items    : center !important;
    }

    .how-it-works ul {
        text-align: left;
    }

    .heading.align-left h2 {
        line-height: 25px;
    }

    .heading h2 span {
        text-align: center;
    }

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

    .huski-design-pattern {
        text-align: center;
    }

    .huski-design-pattern .heading {
        margin-top: 30px;
    }

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

    .huski-benefits .heading {
        margin-bottom: 30px;
    }

    .about-us .about-us-photo {
        margin-top: 0;
    }

    .get_in_touch {
        margin-top: 50px;
    }

    .contact-us .contact-us-photo {
        margin-top: 0;
    }
}

@media (max-width: 320px) {

    .sim-slider {
        margin-top: 0px;
    }

    .home-slider .sim-slider {
        margin-top: 10px;
    }

    .sim-slider-layer h1 {
        font-size: 9px;
    }

    .home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer .huski-letter-inner img {
        width        : 20px !important;
        margin-bottom: 3px;
    }

    .home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer .huski-letter-inner h3 {
        font-size : 8px;
        word-break: break-word;
    }

    .home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer img:nth-child(1) {
        width: 50px;
    }

    .home-slider .sim-slider-slide .sim-slider-inner-slide .sim-slider-inner-layer img:nth-child(2) {
        width: 25px;
    }

    .huski-overview {
        padding: 15px;
        margin : 1em 0;
    }

    .huski-overview-right-content:after {
        display: none;
    }

    .heading {
        margin-top: 20px;
    }

    .heading h2 img {
        width: 60px;
    }

    .heading h2 {
        font-size: 16px;
    }

    .heading h2 span {
        margin-top: -2px;
    }

    .huski-service-single:after {
        left  : 15px;
        top   : 62px;
        bottom: -11px;
        right : 14px;
    }

    .huski-outcome {
        padding: 15px;
        margin : 1em 0;
    }

    .huski-outcome-right-content {
        padding: 15px;
    }

    .huski-outcome-right-content:after {
        display: none;
        margin : 1em 0;
    }

    .huski-outcome-table {
        padding: 15px;
        margin : 1em 0;
    }

    .huski-outcome-table-right-content:after {
        display: none;
    }

    footer .row div:nth-child(2),
    footer .row div:nth-child(3) {
        max-width    : 100%;
        margin-left  : 0%;
        flex         : 0 0 100%;
        margin-bottom: 30px;
    }
}

@media (min-width: 1330px) and (max-width: 1400px) {
    .huski-overview {
        background-position: -60% center;
        background-size    : 76%;
    }

    .huski-outcome {
        background-position: -8% center;
    }
}

/* Foundation Section - Three Pillars */
.foundation-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.foundation-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    line-height: 1.3;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.foundation-pillar {
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.foundation-pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(7, 103, 153, 0.15);
}

.pillar-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.foundation-pillar:hover .pillar-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(7, 103, 153, 0.2);
}

.pillar-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #076799;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.pillar-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 0;
}

.pillar-description strong {
    color: #076799;
    font-weight: 600;
}

/* Responsive Foundation Section */
@media (max-width: 991px) {
    .foundation-section {
        padding: 60px 0;
    }

    .foundation-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .foundation-pillar {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .foundation-section {
        padding: 40px 0;
    }

    .foundation-title {
        font-size: 1.8rem;
    }

    .pillar-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .pillar-icon svg {
        width: 36px;
        height: 36px;
    }

    .pillar-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .pillar-description {
        font-size: 0.95rem;
    }
}

/* Key Capabilities Section */
.capabilities-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.capabilities-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    line-height: 1.3;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.capability-card {
    text-align: center;
    padding: 2.5rem 2rem;
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(7, 103, 153, 0.08);
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(7, 103, 153, 0.15);
    border-color: rgba(7, 103, 153, 0.2);
}

.capability-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(7, 103, 153, 0.1);
}

.capability-card:hover .capability-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(7, 103, 153, 0.2);
    border-color: rgba(7, 103, 153, 0.3);
}

.capability-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #076799;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.capability-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive Capabilities Section */
@media (max-width: 991px) {
    .capabilities-section {
        padding: 60px 0;
    }

    .capabilities-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .capability-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .capabilities-section {
        padding: 40px 0;
    }

    .capabilities-title {
        font-size: 1.8rem;
    }

    .capability-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .capability-icon svg {
        width: 40px;
        height: 40px;
    }

    .capability-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .capability-description {
        font-size: 0.95rem;
    }

    .capability-card {
        padding: 1.5rem 1rem;
    }
}

/* Quantifiable Impact Section */
.impact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #076799 0%, #054062 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(101, 201, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.impact-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.impact-stat {
    text-align: center;
    padding: 3rem 2rem;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
}

.impact-number {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #65C9D4;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: block;
}

.impact-stat-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.impact-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive Impact Section */
@media (max-width: 991px) {
    .impact-section {
        padding: 60px 0;
    }

    .impact-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .impact-stat {
        margin-bottom: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .impact-number {
        font-size: 3rem;
    }

    .impact-stat-title {
        font-size: 1.3rem;
    }

    .impact-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .impact-section {
        padding: 40px 0;
    }

    .impact-title {
        font-size: 1.8rem;
    }

    .impact-stat {
        padding: 2rem 1rem;
    }

    .impact-number {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .impact-stat-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .impact-description {
        font-size: 0.95rem;
    }
}

/* =============================================================================
   Utility Classes
   ============================================================================= */

/* Spacing Utilities */
.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-xxl { margin-bottom: var(--spacing-xxl); }

.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-xxl { margin-top: var(--spacing-xxl); }

.p-xs { padding: var(--spacing-xs); }
.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }
.p-xxl { padding: var(--spacing-xxl); }

/* Color Utilities */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-muted { color: var(--color-text-light); }
.text-dark { color: var(--color-heading); }

.bg-light { background-color: var(--color-background-light); }
.bg-white { background-color: var(--color-white); }

/* Font Utilities */
.font-heading { font-family: var(--font-family-headings); }
.font-body { font-family: var(--font-family-body); }

.fw-normal { font-weight: var(--font-weight-normal); }
.fw-semibold { font-weight: var(--font-weight-semibold); }
.fw-bold { font-weight: var(--font-weight-bold); }

/* =============================================================================
   Typography Utility Classes
   ============================================================================= */

/* Heading Classes */
.heading-primary {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-h2);
    color: var(--color-heading);
    margin-bottom: var(--spacing-lg);
}

.heading-secondary {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-h2);
    color: var(--color-heading);
}

.heading-tertiary {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-h2);
    color: var(--color-heading);
}

.heading-subtitle {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-h3);
    margin-bottom: var(--spacing-md);
}

.heading-subtitle-blue {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-h3);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.heading-subtitle-teal {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-h3);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

/* Body Text Classes */
.body-text-lead {
    font-family: var(--font-family-body);
    font-size: var(--font-size-h4);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    max-width: 800px;
    margin: 0 auto;
}

.body-text-quote {
    font-family: var(--font-family-body);
    font-size: var(--font-size-h5);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.body-text-standard {
    font-family: var(--font-family-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
    color: var(--color-text);
}

/* Component Styles */
.testimonial-attribution {
    font-family: var(--font-family-body);
    font-size: var(--font-size-small);
    color: var(--color-text-light);
}

.footer-logo {
    max-width: 300px;
}

.footer-links {
    line-height: 32px;
}

.footer-links li i {
    color: var(--color-accent);
}

/* =============================================================================
   Page-Specific Styles
   ============================================================================= */

/* Platform Page */
.platform-intro h1 {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-hero);
    color: var(--color-heading);
    margin-bottom: var(--spacing-lg);
}

.platform-intro .lead {
    font-family: var(--font-family-body);
    font-size: var(--font-size-h4);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    max-width: 800px;
    margin: 0 auto;
}

/* .knowledge-creation {
    background-color: var(--color-background-light);
} */

.knowledge-creation h2 {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-h2);
    color: var(--color-heading);
}

.knowledge-creation .diagram-image {
    max-width: 500px;
    width: 100%;
}

.knowledge-creation .foundation-heading {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-h3);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.knowledge-creation .process-heading {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-h3);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.knowledge-creation p {
    font-family: var(--font-family-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
    color: var(--color-text);
}

/* Trusted by Innovators Section */
.trusted-by-innovators h2 {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-h2);
    color: var(--color-heading);
}

.trusted-by-innovators .testimonial-quote p {
    font-family: var(--font-family-body);
    font-size: var(--font-size-h5);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.trusted-by-innovators .testimonial-attribution {
    font-family: var(--font-family-body);
    font-size: var(--font-size-small);
    color: var(--color-text-light);
}

/* About Us Page Sections */
.our-story, .visionary-approach, .commitment-culture {
    padding: var(--spacing-xxl) 0;
}

.our-story h2, .visionary-approach h2, .commitment-culture h2 {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-h1);
    color: var(--color-heading);
    margin-bottom: var(--spacing-lg);
}

.our-story h3, .visionary-approach h3, .commitment-culture h3 {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-h3);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.our-story .body-text-lead, .visionary-approach .body-text-lead, .commitment-culture .body-text-lead {
    font-family: var(--font-family-body);
    font-size: var(--font-size-h4);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    margin-bottom: var(--spacing-xl);
}

.our-story .body-text-standard, .visionary-approach .body-text-standard, .commitment-culture .body-text-standard {
    font-family: var(--font-family-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
    color: var(--color-text);
}

.visionary-approach {
    background-color: var(--color-background-light);
}

.culture-statement {
    padding: var(--spacing-lg);
    background-color: rgba(78, 196, 204, 0.05);
    border-radius: 8px;
    margin-top: var(--spacing-lg);
}

/* Contact Page Sections */
.contact-invitation, .contact-gateway {
    padding: var(--spacing-xxl) 0;
}

.contact-invitation h1 {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-h1);
    color: var(--color-heading);
    margin-bottom: var(--spacing-lg);
}

.contact-invitation .body-text-lead {
    font-family: var(--font-family-body);
    font-size: var(--font-size-h4);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
}

.contact-gateway {
    background-color: var(--color-background-light);
}

.contact-gateway h2 {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-h2);
    color: var(--color-heading);
    margin-bottom: var(--spacing-xl);
}

.contact-form .form-control {
    font-family: var(--font-family-body);
    font-size: var(--font-size-body);
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: none;
}

.contact-information .contact-item {
    padding: var(--spacing-md);
    transition: transform 0.3s ease;
}

.contact-information .contact-item:hover {
    transform: translateY(-5px);
}

.contact-information .contact-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contact-information .contact-item:hover .contact-icon {
    opacity: 1;
}

.contact-information .contact-label {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-small);
    color: var(--color-heading);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 2.5rem;
    line-height: 1.2;
}

.contact-information .contact-email {
    font-family: var(--font-family-body);
    font-size: var(--font-size-body);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: color 0.3s ease;
}

.contact-information .contact-email:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

/* Footer Redesign */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
}

.footer-brand .footer-logo {
    max-width: 250px;
    /* filter: brightness(0) invert(1); */
}

.footer-brand .footer-tagline {
    font-family: var(--font-family-body);
    font-size: var(--font-size-body);
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-top: var(--spacing-sm);
}

.footer-navigation h4,
.footer-connect h4 {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-h4);
    color: #ffffff;
    margin-bottom: var(--spacing-md);
}

.footer-navigation {
    padding-left: 4rem;
}

.footer-navigation .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-navigation .footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-navigation .footer-links a {
    font-family: var(--font-family-body);
    font-size: var(--font-size-body);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-navigation .footer-links a:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

.footer-connect .footer-email {
    font-family: var(--font-family-body);
    font-size: var(--font-size-body);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: color 0.3s ease;
}

.footer-connect .footer-email:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

.footer-connect .footer-email i {
    color: rgba(255, 255, 255, 0.8);
}

.footer-connect .footer-social {
    display: flex;
    gap: var(--spacing);
    margin-left: -3px;
}

.footer-connect .social-link {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.footer-connect .social-link:hover {
    color: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-connect .social-link[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
}

.copyrights {
    background-color: #212529;
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 0;
}

/* Terms and Conditions Page */
.terms-title {
    padding: var(--spacing-xxl) 0;
}

.terms-title h1 {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-h1);
    color: var(--color-heading);
}

.terms-content {
    background-color: var(--color-background-light);
    padding: var(--spacing-xxl) 0;
}

.terms-content p {
    font-family: var(--font-family-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.terms-content h5 {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-h3);
    color: var(--color-primary);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

/* Responsive styles for footer navigation */
@media (max-width: 1024px) {
    .footer-navigation {
        padding-left: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-navigation {
        padding-left: 15px;
    }
    .footer-brand{
        text-align: left !important;
    }
}