@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@500;600;700;800&display=swap');

/* =========================================================
   FANZY CHOLAD TECHNOLOGIES
   FRONTEND MAIN CSS
   Bootstrap 5 compatible
   Client Brand:
   Black  #050505
   Gold   #F5C518
   Gold 2 #D4A017
   White  #FFFFFF
   Grey   #B8B8B8
========================================================= */

:root {
    --front-black: #050505;
    --front-black-2: #080808;
    --front-dark: #101010;
    --front-dark-2: #151515;

    --front-gold: #F5C518;
    --front-gold-secondary: #D4A017;

    --front-white: #FFFFFF;
    --front-light: #F5F5F5;
    --front-gray: #B8B8B8;
    --front-gray-dark: #777777;

    --front-border: rgba(245, 197, 24, 0.25);
    --front-white-border: rgba(255, 255, 255, 0.12);

    --front-container: 1320px;
    --front-radius: 18px;
    --front-transition: 0.3s ease;

    --front-heading-font: "Montserrat", sans-serif;
    --front-body-font: "Inter", sans-serif;
}

/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--front-black);
    color: var(--front-white);
    font-family: var(--front-body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

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

a:hover {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

::selection {
    background: var(--front-gold);
    color: var(--front-black);
}

/* =========================================================
   GLOBAL TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6,
.front-header,
.front-header-cta,
.gold-btn,
.outline-gold-btn,
.cta-button,
.section-label,
.hero-small-title,
.solution-card,
.about-values,
.partnership-types {
    font-family: var(--front-heading-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--front-white);
}

p {
    margin-top: 0;
}

.front-container {
    width: 100%;
    max-width: var(--front-container);
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
}

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

.front-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(5, 5, 5, 0.78);
    border-bottom: 1px solid rgba(245, 197, 24, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.3s ease;
}

.front-header.header-scrolled {
    position: fixed;
    background: rgba(5, 5, 5, 0.97);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.front-header .navbar {
    min-height: 82px;
    padding: 12px 0;
}

.front-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--front-gold);
    font-family: var(--front-heading-font);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.3px;
    transition: var(--front-transition);
}

.front-logo:hover {
    color: var(--front-white);
}

.front-logo img {
    width: auto;
    max-width: 210px;
    max-height: 55px;
    object-fit: contain;
}

.front-header .navbar-nav {
    gap: 3px;
}

.front-header .nav-link {
    position: relative;
    padding: 10px 13px !important;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--front-heading-font);
    font-size: 15px;
    font-weight: 500;
    transition: var(--front-transition);
}

.front-header .nav-link:hover,
.front-header .nav-link.active {
    color: var(--front-gold);
}

.front-header .nav-link::after {
    position: absolute;
    right: 13px;
    bottom: 3px;
    left: 13px;
    height: 2px;
    background: var(--front-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--front-transition);
}

.front-header .nav-link:hover::after,
.front-header .nav-link.active::after {
    transform: scaleX(1);
}

.front-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: 18px;
    padding: 11px 19px;
    border: 1px solid var(--front-gold);
    border-radius: 50px;
    color: var(--front-gold);
    font-size: 14px;
    font-weight: 600;
    transition: var(--front-transition);
}

.front-header-cta:hover {
    background: var(--front-gold);
    color: var(--front-black);
    transform: translateY(-2px);
}

.front-header .navbar-toggler {
    padding: 7px 10px;
    border: 1px solid var(--front-gold);
    color: var(--front-gold);
}

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

/* =========================================================
   HOME HERO
   IMPORTANT: Blade uses .front-hero
========================================================= */

.front-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 45%, rgba(245, 197, 24, 0.14), transparent 30%),
        radial-gradient(circle at 15% 75%, rgba(245, 197, 24, 0.055), transparent 28%),
        var(--front-black);
}

.front-hero .front-container,
.front-hero .row {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 760px;
    padding: 100px 0 60px;
}

.hero-small-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--front-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
}

.hero-small-title span {
    color: var(--front-gold-secondary);
}

.hero-content h1 {
    margin-bottom: 28px;
    color: var(--front-white);
    font-family: var(--front-heading-font);
    font-size: clamp(56px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -2.5px;
}

.hero-content h1 span {
    color: var(--front-gold);
}

.hero-content>p {
    max-width: 700px;
    margin-bottom: 35px;
    color: #d0d0d0;
    font-family: var(--front-body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
}

/* =========================================================
   HERO IMAGE
   Blade uses .hero-image
========================================================= */

.hero-image {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
}

/* =========================================================
   HERO IMAGE - REMOVE DECORATIVE CIRCLES
========================================================= */

.hero-image {
    position: relative;
}

/* Remove all decorative circles */
.hero-image::before,
.hero-image::after {
    display: none !important;
    content: none !important;
}

/* Keep only the actual image */
.hero-image img {
    position: relative;
    z-index: 1;

    display: block;
    width: 100%;
    height: auto;

    object-fit: contain;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes heroPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.75;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   BUTTONS
   Blade uses .gold-btn and .outline-gold-btn
========================================================= */

.gold-btn,
.outline-gold-btn,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 24px;
    border-radius: 50px;
    font-family: var(--front-heading-font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s ease;
}

.gold-btn {
    border: 1px solid var(--front-gold);
    background: var(--front-gold);
    color: var(--front-black);
}

.gold-btn:hover {
    border-color: var(--front-white);
    background: var(--front-white);
    color: var(--front-black);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 197, 24, 0.18);
}

.outline-gold-btn {
    border: 1px solid var(--front-gold-secondary);
    background: transparent;
    color: var(--front-white);
}

.outline-gold-btn:hover {
    border-color: var(--front-gold);
    background: var(--front-gold);
    color: var(--front-black);
    transform: translateY(-3px);
}

.gold-btn i,
.outline-gold-btn i,
.cta-button i {
    transition: transform 0.3s ease;
}

.gold-btn:hover i,
.outline-gold-btn:hover i,
.cta-button:hover i {
    transform: translateX(4px);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

/* =========================================================
   SECTIONS
========================================================= */

.front-section {
    position: relative;
    padding: 110px 0;
    background: var(--front-black);
}

.front-section:nth-of-type(even) {
    background: var(--front-black-2);
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--front-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
}

.section-heading-row h2,
.about-content h2,
.partnership-content h2 {
    margin-bottom: 0;
    font-family: var(--front-heading-font);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.section-heading-row h2 span,
.about-content h2 span,
.partnership-content h2 span {
    color: var(--front-gold);
}

.section-heading-description {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 530px;
}

.gold-line {
    flex: 0 0 45px;
    width: 45px;
    height: 2px;
    margin-top: 12px;
    background: var(--front-gold);
}

.section-heading-description p {
    margin: 0;
    color: var(--front-gray);
    font-family: var(--front-body-font);
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================================
   SOLUTIONS
========================================================= */

.solutions-grid {
    overflow: hidden;
    border: 1px solid var(--front-border);
    border-radius: var(--front-radius);
}

.solution-card {
    position: relative;
    height: 100%;
    min-height: 310px;
    padding: 35px 28px;
    background: #090909;
    border-right: 1px solid var(--front-border);
    transition: all 0.35s ease;
}

.solutions-grid .col-lg:last-child .solution-card {
    border-right: 0;
}

.solution-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--front-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
    border: 1px solid var(--front-border);
    border-radius: 14px;
    background: rgba(245, 197, 24, 0.05);
    color: var(--front-gold);
    font-size: 25px;
}

.solution-card h3 {
    margin-bottom: 17px;
    color: var(--front-white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.solution-card p {
    margin: 0;
    color: var(--front-gray);
    font-family: var(--front-body-font);
    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding-top: 0;
    padding-bottom: 0;
}

.about-section .front-container {
    max-width: 100%;
    padding: 0;
}

.about-image,
.partnership-image {
    position: relative;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
    background: #0a0a0a;
}

.about-image img,
.partnership-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.about-image::after,
.partnership-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.35));
    content: "";
}

.about-content,
.partnership-content {
    height: 100%;
    padding: 90px 65px;
    background: #080808;
}

.about-content h2,
.partnership-content h2 {
    margin-bottom: 25px;
}

.about-content>p,
.partnership-content>p {
    max-width: 650px;
    margin-bottom: 30px;
    color: var(--front-gray);
    font-family: var(--front-body-font);
    font-size: 16px;
    line-height: 1.85;
}

.about-values {
    height: 100%;
    padding: 70px 35px;
    background: #0d0d0d;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.value-item:first-child {
    padding-top: 0;
}

.value-item:last-child {
    border-bottom: 0;
}

.value-item>i {
    flex: 0 0 auto;
    color: var(--front-gold);
    font-size: 25px;
}

.value-item h4 {
    margin-bottom: 8px;
    color: var(--front-white);
    font-size: 16px;
    font-weight: 700;
}

.value-item p {
    margin: 0;
    color: var(--front-gray);
    font-family: var(--front-body-font);
    font-size: 13px;
    line-height: 1.7;
}

/* =========================================================
   PARTNERSHIP
========================================================= */

.partnership-section {
    padding-top: 0;
    padding-bottom: 0;
}

.partnership-section .front-container {
    max-width: 100%;
    padding: 0;
}

.partnership-types {
    height: 100%;
    padding: 55px 35px;
    background: #0d0d0d;
}

.partnership-types>div {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partnership-types>div:last-child {
    border-bottom: 0;
}

.partnership-types i {
    flex: 0 0 auto;
    width: 27px;
    color: var(--front-gold);
    font-size: 20px;
}

.partnership-types span {
    display: block;
    color: var(--front-gray);
    font-family: var(--front-body-font);
    font-size: 13px;
    line-height: 1.5;
}

.partnership-types strong {
    display: block;
    margin-bottom: 2px;
    color: var(--front-white);
    font-family: var(--front-heading-font);
    font-size: 14px;
    font-weight: 600;
}

/* =========================================================
   CTA
========================================================= */

.front-cta {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background: var(--front-gold);
    color: var(--front-black);
}

.front-cta::before {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(5, 5, 5, 0.12);
    border-radius: 50%;
    content: "";
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border: 1px solid rgba(5, 5, 5, 0.2);
    border-radius: 16px;
    font-size: 28px;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    margin-bottom: 8px;
    color: var(--front-black);
    font-family: var(--front-heading-font);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
}

.cta-content p {
    max-width: 750px;
    margin: 0;
    color: rgba(5, 5, 5, 0.75);
    font-family: var(--front-body-font);
    font-size: 15px;
}

.cta-button {
    flex: 0 0 auto;
    border: 1px solid var(--front-black);
    background: var(--front-black);
    color: var(--front-white);
}

.cta-button:hover {
    background: var(--front-white);
    color: var(--front-black);
}

/* =========================================================
   FOOTER
========================================================= */

.front-footer {
    padding: 80px 0 25px;
    background: #020202;
    border-top: 1px solid var(--front-border);
}

.footer-brand {
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    color: var(--front-gold);
    font-family: var(--front-heading-font);
    font-weight: 700;
}

.footer-brand img {
    width: auto;
    max-width: 190px;
    max-height: 65px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand strong {
    max-width: 300px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.front-footer p {
    color: #777777;
    font-family: var(--front-body-font);
    font-size: 14px;
}

.front-footer h4 {
    margin-bottom: 20px;
    color: var(--front-white);
    font-family: var(--front-heading-font);
    font-size: 15px;
    font-weight: 700;
}

.front-footer a {
    transition: var(--front-transition);
}

.front-footer .row a:not(.footer-brand) {
    display: block;
    margin-bottom: 10px;
    color: #888888;
    font-family: var(--front-body-font);
    font-size: 14px;
}

.front-footer .row a:not(.footer-brand):hover {
    color: var(--front-gold);
}

.front-footer hr {
    margin: 50px 0 25px;
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom p {
    max-width: 650px;
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
}

/* =========================================================
   GENERAL SUPPORT CLASSES
========================================================= */

.front-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 24px;
    border-radius: 50px;
    font-family: var(--front-heading-font);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.front-btn-primary {
    border: 1px solid var(--front-gold);
    background: var(--front-gold);
    color: var(--front-black);
}

.front-btn-primary:hover {
    border-color: var(--front-white);
    background: var(--front-white);
    color: var(--front-black);
}

.front-btn-outline {
    border: 1px solid var(--front-gold-secondary);
    background: transparent;
    color: var(--front-white);
}

.front-btn-outline:hover {
    border-color: var(--front-gold);
    background: var(--front-gold);
    color: var(--front-black);
}

/* Inner pages / existing reusable classes */
.front-inner-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    padding: 150px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 30%, rgba(245, 197, 24, 0.14), transparent 32%),
        #070707;
    border-bottom: 1px solid var(--front-border);
}

.front-inner-hero .container {
    position: relative;
    z-index: 1;
}

.front-inner-hero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--front-white);
    font-family: var(--front-heading-font);
    font-size: clamp(45px, 6vw, 78px);
    font-weight: 800;
    line-height: 1;
}

.front-inner-hero h1 span {
    color: var(--front-gold);
}

.front-inner-hero p {
    max-width: 700px;
    margin-top: 25px;
    color: var(--front-gray);
    font-family: var(--front-body-font);
    font-size: 18px;
}

.front-section-title {
    margin-bottom: 25px;
    font-family: var(--front-heading-font);
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 700;
    line-height: 1.05;
}

.front-section-title span {
    color: var(--front-gold);
}

.front-large-text {
    color: #e8e8e8;
    font-family: var(--front-body-font);
    font-size: 21px;
    line-height: 1.7;
}

.front-highlight {
    margin-top: 35px;
    padding: 20px 25px;
    border-left: 3px solid var(--front-gold);
    background: rgba(245, 197, 24, 0.05);
    color: var(--front-gold);
    font-family: var(--front-heading-font);
    font-size: 18px;
    font-weight: 600;
}

.front-card,
.solution-detail-card,
.industry-card,
.partner-card {
    height: 100%;
    border: 1px solid var(--front-border);
    border-radius: var(--front-radius);
    background: #0a0a0a;
    transition: all 0.35s ease;
}

.front-card {
    padding: 35px;
}

.front-card:hover,
.solution-detail-card:hover,
.industry-card:hover,
.partner-card:hover {
    border-color: var(--front-gold);
    transform: translateY(-6px);
}

.front-card h3,
.solution-detail-card h2,
.industry-card h2,
.partner-card h2 {
    font-family: var(--front-heading-font);
    font-weight: 700;
}

.front-card p,
.solution-detail-card p,
.industry-card p,
.partner-card p {
    color: var(--front-gray);
    font-family: var(--front-body-font);
}

.card-icon,
.solution-detail-card>i,
.industry-card>i,
.partner-card i {
    color: var(--front-gold);
}

/* =========================================================
   CONTACT / FORM
========================================================= */

.front-contact-form,
.front-contact-info {
    border: 1px solid var(--front-border);
    border-radius: 20px;
    background: #0b0b0b;
}

.front-contact-form {
    padding: 45px;
}

.front-contact-form .form-label {
    margin-bottom: 8px;
    color: #e5e5e5;
    font-family: var(--front-heading-font);
    font-size: 14px;
    font-weight: 600;
}

.front-contact-form .form-control,
.front-contact-form .form-select {
    min-height: 52px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 9px;
    background: #111111;
    color: var(--front-white);
    font-family: var(--front-body-font);
}

.front-contact-form textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

.front-contact-form .form-control::placeholder {
    color: #777777;
}

.front-contact-form .form-control:focus,
.front-contact-form .form-select:focus {
    border-color: var(--front-gold);
    background: #111111;
    color: var(--front-white);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.08);
}

.front-contact-form .form-select option {
    background: #111111;
    color: var(--front-white);
}

.front-contact-info {
    position: sticky;
    top: 110px;
    padding: 35px;
}

.front-contact-info h2 {
    margin-bottom: 35px;
    font-family: var(--front-heading-font);
    font-size: 32px;
    font-weight: 700;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    color: #cccccc;
    font-family: var(--front-body-font);
}

.contact-info-item i {
    flex-shrink: 0;
    color: var(--front-gold);
    font-size: 20px;
}

.contact-info-item a:hover {
    color: var(--front-gold);
}

/* =========================================================
   LEGAL
========================================================= */

.legal-content {
    max-width: 950px;
    margin: auto;
}

.legal-content h2 {
    margin-bottom: 25px;
    color: var(--front-gold);
    font-family: var(--front-heading-font);
    font-size: 32px;
    font-weight: 700;
}

.legal-content h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-family: var(--front-heading-font);
    font-size: 23px;
    font-weight: 700;
}

.legal-content p,
.legal-content li {
    color: #bcbcbc;
    font-family: var(--front-body-font);
    font-size: 16px;
    line-height: 1.85;
}

.legal-content ul {
    padding-left: 25px;
}

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--front-black);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #444444;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--front-gold);
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

.front-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.front-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1199.98px) {
    .front-header .nav-link {
        padding-right: 9px !important;
        padding-left: 9px !important;
        font-size: 14px;
    }

    .front-header-cta {
        margin-left: 8px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .solution-card {
        min-height: 300px;
        padding: 30px 22px;
    }

    .about-content,
    .partnership-content {
        padding: 70px 45px;
    }
}

@media (max-width: 991.98px) {
    .front-container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .front-header {
        position: fixed;
    }

    .front-header .navbar-collapse {
        margin-top: 12px;
        padding: 20px;
        border: 1px solid var(--front-border);
        border-radius: 15px;
        /* margin-right: 12px; */
        background: rgba(5, 5, 5, 0.98);
    }

    .front-header .navbar-nav {
        align-items: stretch !important;
    }

    .front-header .nav-link {
        padding: 12px 8px !important;
        font-size: 15px;
    }

    .front-header .nav-link::after {
        display: none;
    }

    .front-header-cta {
        width: 100%;
        margin: 15px 0 0;
    }

    .front-hero {
        min-height: auto;
        padding: 130px 0 80px;
    }

    .front-hero .row {
        min-height: auto !important;
    }

    .hero-content {
        padding: 30px 0;
    }

    .hero-content h1 {
        font-size: clamp(48px, 7vw, 62px);
    }

    .hero-image {
        min-height: 450px;
        padding: 40px 0;
    }

    .hero-image img {
        max-width: 480px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .solutions-grid {
        border-radius: var(--front-radius);
    }

    .solution-card {
        border-right: 1px solid var(--front-border);
        border-bottom: 1px solid var(--front-border);
    }

    .about-image,
    .partnership-image,
    .about-image img,
    .partnership-image img {
        min-height: 400px;
        height: 400px;
    }

    .about-content,
    .partnership-content {
        padding: 65px 40px;
    }

    .about-values,
    .partnership-types {
        padding: 45px 30px;
    }

    .cta-wrapper {
        flex-wrap: wrap;
    }

    .cta-content {
        min-width: 0;
    }

    .cta-button {
        margin-left: 95px;
    }

    .front-contact-info {
        position: static;
    }
}

/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767.98px) {
    .front-container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .front-header .navbar {
        min-height: 70px;
    }

    .front-logo img {
        max-width: 180px;
        max-height: 45px;
    }

    .front-hero {
        padding: 110px 0 60px;
    }

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

    .hero-small-title {
        margin-bottom: 17px;
        font-size: 10px;
        letter-spacing: 1.8px;
    }

    .hero-content h1 {
        margin-bottom: 22px;
        font-size: clamp(36px, 10vw, 44px);
        line-height: 1.05;
        letter-spacing: -1.5px;
    }

    .hero-content>p {
        margin-bottom: 28px;
        font-size: 15px;
        line-height: 1.75;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .gold-btn,
    .outline-gold-btn {
        width: 100%;
    }

    .hero-image {
        min-height: 330px;
        padding: 25px 0;
    }

    .hero-image::before {
        width: 310px;
    }

    .hero-image::after {
        width: 240px;
    }

    .hero-image img {
        max-width: 340px;
    }

    .front-section {
        padding: 65px 0;
    }

    .section-heading-row {
        margin-bottom: 35px;
    }

    .section-heading-row h2,
    .about-content h2,
    .partnership-content h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .section-heading-description {
        gap: 13px;
    }

    .section-heading-description p {
        font-size: 14px;
    }

    .solutions-grid {
        border-radius: 12px;
    }

    .solution-card {
        min-height: auto;
        padding: 30px 25px;
        border-right: 0;
    }

    .solution-icon {
        margin-bottom: 22px;
    }

    .solution-card h3 {
        font-size: 20px;
    }

    .about-image,
    .partnership-image,
    .about-image img,
    .partnership-image img {
        min-height: 300px;
        height: 300px;
    }

    .about-content,
    .partnership-content {
        padding: 55px 25px;
    }

    .about-values,
    .partnership-types {
        padding: 35px 25px;
    }

    .value-item {
        padding: 20px 0;
    }

    .partnership-types>div {
        padding: 15px 0;
    }

    .front-cta {
        padding: 55px 0;
    }

    .cta-wrapper {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-button {
        width: 100%;
        margin-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .front-contact-form {
        padding: 25px;
    }

    .front-contact-info {
        padding: 28px;
    }

    .front-inner-hero {
        min-height: 330px;
        padding: 125px 0 60px;
    }

    .front-inner-hero h1 {
        font-size: 43px;
    }

    .front-section-title {
        font-size: 40px;
    }

    .front-card {
        padding: 28px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
    .front-container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .front-header .navbar {
        padding: 10px 0;
    }

    .front-logo img {
        max-width: 155px;
        max-height: 40px;
    }

    .front-hero {
        padding-top: 105px;
    }

    .hero-content h1 {
        font-size: 37px;
    }

    .hero-image {
        min-height: 290px;
    }

    .hero-image img {
        max-width: 290px;
    }

    .section-heading-row h2,
    .about-content h2,
    .partnership-content h2 {
        font-size: 34px;
    }

    .front-inner-hero h1 {
        font-size: 37px;
    }

    .front-section-title {
        font-size: 35px;
    }

    .front-btn,
    .gold-btn,
    .outline-gold-btn,
    .cta-button {
        width: 100%;
    }

    .front-contact-form {
        padding: 20px;
    }
}

/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =========================================================
   INDUSTRIES CARD ICON BOX
========================================================= */

.industry-card {
    position: relative;
    height: 100%;
    padding: 35px;
    border: 1px solid var(--front-border);
    border-radius: var(--front-radius);
    background: #0a0a0a;
    transition: all 0.35s ease;
    overflow: hidden;
}

.industry-card:hover {
    border-color: var(--front-gold);
    background: #0d0d0d;
    transform: translateY(-5px);
}

/* Icon Box */
.industry-card>i {
    width: 58px;
    height: 58px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border: 1px solid var(--front-gold-secondary);
    border-radius: 12px;

    background: rgba(245, 197, 24, 0.06);

    color: var(--front-gold);

    font-size: 25px;
    line-height: 1;

    transition: all 0.3s ease;
}

/* Icon box hover */
.industry-card:hover>i {
    background: var(--front-gold);
    border-color: var(--front-gold);
    color: var(--front-black);

    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.18);
}

/* Heading */
.industry-card h2 {
    margin-bottom: 15px;

    color: var(--front-white);

    font-family: var(--front-heading-font);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.25;
}

/* Description */
.industry-card p {
    margin: 0;

    color: var(--front-gray);

    font-family: var(--front-body-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

/* =========================================================
   SOLUTIONS PAGE - DETAIL CARDS
========================================================= */

.solution-detail-card {
    position: relative;
    height: 100%;
    min-height: 300px;

    padding: 32px 35px 35px;

    border: 1px solid var(--front-border);
    border-radius: var(--front-radius);

    background: #0a0a0a;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

/* Gold top hover line */
.solution-detail-card::before {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: var(--front-gold);

    content: "";

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}

.solution-detail-card:hover {
    border-color: var(--front-gold);
    background: #0d0d0d;

    transform: translateY(-5px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.solution-detail-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   NUMBER + ICON
========================================================= */

.solution-card-top {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;
}

/* Number */
.solution-detail-card .solution-number {
    display: inline-flex;
    align-items: center;

    color: var(--front-white);

    font-family: var(--front-heading-font);
    font-size: 18px;
    font-weight: 500;

    line-height: 1;
}

/* Icon */
.solution-detail-card>i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin: 0;

    border: 1px solid var(--front-gold-secondary);
    border-radius: 7px;

    background: rgba(245, 197, 24, 0.06);

    color: var(--front-gold);

    font-size: 17px;
    line-height: 1;

    transition: all 0.3s ease;
}

.solution-detail-card:hover>i {
    border-color: var(--front-gold);

    background: var(--front-gold);

    color: var(--front-black);

    transform: translateY(-1px);
}


/* =========================================================
   SOLUTION TITLE
========================================================= */

.solution-detail-card h2 {
    margin: 0 0 18px;

    color: var(--front-white);

    font-family: var(--front-heading-font);
    font-size: 28px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: -0.5px;
}


/* =========================================================
   SOLUTION DESCRIPTION
========================================================= */

.solution-detail-card p {
    margin: 0;

    color: var(--front-gray);

    font-family: var(--front-body-font);
    font-size: 15px;
    font-weight: 400;

    line-height: 1.8;
}


/* =========================================================
   OPTIONAL SOLUTION LINK
========================================================= */

.solution-detail-card .solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 25px;

    color: var(--front-gold);

    font-family: var(--front-heading-font);
    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.solution-detail-card .solution-link i {
    transition: transform 0.3s ease;
}

.solution-detail-card .solution-link:hover {
    color: var(--front-white);
}

.solution-detail-card .solution-link:hover i {
    transform: translateX(4px);
}

/* =========================================================
   COMPLIANCE / LICENSING NOTICE
   Used on Ventures + Solutions pages
========================================================= */

.front-compliance-note {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 18px;

    width: 100%;

    margin-top: 40px;
    padding: 22px 26px;

    border: 1px solid rgba(245, 197, 24, 0.28);
    border-radius: 14px;

    background:
        linear-gradient(135deg,
            rgba(245, 197, 24, 0.055),
            rgba(245, 197, 24, 0.018));

    color: var(--front-gray);

    overflow: hidden;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

/* Gold accent line */
.front-compliance-note::before {
    position: absolute;

    top: 0;
    left: 0;

    width: 3px;
    height: 100%;

    background: var(--front-gold);

    content: "";
}

/* Subtle glow */
.front-compliance-note::after {
    position: absolute;

    top: -80px;
    left: -80px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(245, 197, 24, 0.05);

    content: "";

    pointer-events: none;
}

/* Hover */
.front-compliance-note:hover {
    border-color: rgba(245, 197, 24, 0.55);

    background:
        linear-gradient(135deg,
            rgba(245, 197, 24, 0.08),
            rgba(245, 197, 24, 0.025));

    transform: translateY(-2px);
}


/* =========================================================
   COMPLIANCE ICON
========================================================= */

.front-compliance-note>i {
    position: relative;
    z-index: 2;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    margin-top: 1px;

    border: 1px solid rgba(245, 197, 24, 0.45);
    border-radius: 10px;

    background: rgba(245, 197, 24, 0.07);

    color: var(--front-gold);

    font-size: 19px;
}


/* =========================================================
   COMPLIANCE TEXT
========================================================= */

.front-compliance-note p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #cfcfcf;

    font-family: var(--front-body-font);
    font-size: 14px;
    font-weight: 400;

    line-height: 1.75;
}


/* Highlight important words if used */
.front-compliance-note strong {
    color: var(--front-white);

    font-family: var(--front-heading-font);
    font-weight: 600;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .front-compliance-note {
        gap: 14px;

        margin-top: 30px;
        padding: 18px 18px 18px 20px;

        border-radius: 12px;
    }

    .front-compliance-note>i {
        width: 40px;
        height: 40px;

        border-radius: 9px;

        font-size: 17px;
    }

    .front-compliance-note p {
        font-size: 13px;
        line-height: 1.7;
    }
}

/* =========================================================
   ABOUT PAGE - OPERATING MODEL
========================================================= */

.operating-model-card {
    position: relative;
    height: 100%;
    min-height: 300px;

    padding: 30px;

    border: 1px solid var(--front-border);
    border-radius: 16px;

    background:
        linear-gradient(145deg,
            #101010 0%,
            #080808 100%);

    overflow: hidden;

    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* subtle gold glow */
.operating-model-card::before {
    position: absolute;
    top: -80px;
    right: -80px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(245, 197, 24, 0.05);

    content: "";
    pointer-events: none;
}

.operating-model-card:hover {
    border-color: rgba(245, 197, 24, 0.6);

    transform: translateY(-4px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);
}


/* Small heading */

.operating-model-card .model-label {
    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 18px;

    color: var(--front-gold);

    font-family: var(--front-heading-font);
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* Main items */

.operating-model-card .model-item {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    min-height: 46px;

    color: var(--front-white);

    font-family: var(--front-heading-font);
    font-size: 21px;
    font-weight: 500;

    line-height: 1.25;
}


/* Plus sign */

.operating-model-card .model-plus {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    min-width: 25px;
    height: 25px;

    margin-right: 10px;

    color: var(--front-gold);

    font-family: var(--front-heading-font);
    font-size: 18px;
    font-weight: 500;
}


/* Optional icon */

.operating-model-card .model-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 18px;

    border: 1px solid var(--front-border);
    border-radius: 10px;

    background: rgba(245, 197, 24, 0.05);

    color: var(--front-gold);

    font-size: 19px;
}

/* =========================================================
   PARTNERSHIPS PAGE
   PARTNER CARDS
========================================================= */

.partner-card {
    position: relative;

    height: 100%;
    min-height: 180px;

    display: flex;
    flex-direction: column;

    padding: 30px;

    border: 1px solid var(--front-border);
    border-radius: 16px;

    background:
        linear-gradient(145deg,
            #0d0d0d 0%,
            #080808 100%);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   TOP GOLD ACCENT
========================================================= */

.partner-card::before {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: var(--front-gold);

    content: "";

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}


/* =========================================================
   SUBTLE BACKGROUND GLOW
========================================================= */

.partner-card::after {
    position: absolute;

    top: -70px;
    right: -70px;

    width: 160px;
    height: 160px;

    border-radius: 50%;

    background: rgba(245, 197, 24, 0.035);

    content: "";

    pointer-events: none;
}


/* =========================================================
   HOVER
========================================================= */

.partner-card:hover {
    border-color: rgba(245, 197, 24, 0.65);

    background:
        linear-gradient(145deg,
            #111111 0%,
            #090909 100%);

    transform: translateY(-6px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.38);
}

.partner-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   PARTNER ICON BOX
========================================================= */

.partner-card>i {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 24px;

    border: 1px solid var(--front-gold-secondary);
    border-radius: 11px;

    background: rgba(245, 197, 24, 0.06);

    color: var(--front-gold);

    font-size: 22px;
    line-height: 1;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Icon hover */

.partner-card:hover>i {
    border-color: var(--front-gold);

    background: var(--front-gold);

    color: var(--front-black);

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(245, 197, 24, 0.18);
}


/* =========================================================
   PARTNER TITLE
========================================================= */

.partner-card h2 {
    position: relative;
    z-index: 2;

    margin: 0 0 13px;

    color: var(--front-white);

    font-family: var(--front-heading-font);
    font-size: 25px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: -0.4px;
}


/* =========================================================
   PARTNER DESCRIPTION
========================================================= */

.partner-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--front-gray);

    font-family: var(--front-body-font);
    font-size: 15px;
    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   PARTNERSHIP GRID
========================================================= */

.partnership-grid {
    row-gap: 25px;
}

.partnership-grid>[class*="col-"] {
    display: flex;
}

.partnership-grid .partner-card {
    width: 100%;
}


/* =========================================================
   PARTNERSHIP PAGE SECTION SPACING
========================================================= */

.partnerships-section {
    padding-top: 90px;
    padding-bottom: 100px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .partnerships-section {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .partnership-grid {
        row-gap: 18px;
    }

    .partner-card {
        min-height: 165px;

        padding: 26px;
    }

    .partner-card>i {
        width: 48px;
        height: 48px;

        margin-bottom: 20px;

        border-radius: 10px;

        font-size: 20px;
    }

    .partner-card h2 {
        margin-bottom: 10px;

        font-size: 21px;
        line-height: 1.25;
    }

    .partner-card p {
        font-size: 14px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .partner-card {
        padding: 23px;
    }

    .partner-card>i {
        width: 45px;
        height: 45px;

        font-size: 19px;
    }

    .partner-card h2 {
        font-size: 20px;
    }
}


/* =========================================================
   PREMIUM GOLD SECTION DIVIDER
========================================================= */

/* .front-hero {
    border-bottom: 1px solid rgba(245, 197, 24, 0.75);
}

.solutions-section,
.about-section,
.partnership-section {
    border-top: 1px solid rgba(245, 197, 24, 0.75);
}

.front-cta {
    border-top: 1px solid rgba(5, 5, 5, 0.25);
} */

/* =========================================================
   HOME PAGE - YELLOW SECTION SEPARATOR LINES
========================================================= */

/* Hero bottom separator */
.front-hero {
    border-bottom: 1px solid rgba(245, 197, 24, 0.65);

    /* subtle gold glow */
    box-shadow:
        0 1px 0 rgba(212, 160, 23, 0.18);
}


/* Every main section gets a gold separator */
.front-section {
    position: relative;

    border-top: 1px solid rgba(245, 197, 24, 0.65);

    box-shadow:
        inset 0 1px 0 rgba(212, 160, 23, 0.08);
}


/* Avoid unnecessary extra line if needed */
.front-section:first-of-type {
    border-top: 0;
}


/* =========================================================
   STRONGER SECTION DIVIDERS
   Solutions / About / Partnership
========================================================= */

.solutions-section,
.about-section,
.partnership-section {
    border-top: 1px solid var(--front-gold);
}


/* =========================================================
   CTA TOP SEPARATOR
========================================================= */

.front-cta {
    position: relative;

    border-top: 1px solid var(--front-gold);
}


/* =========================================================
   SOLUTIONS PAGE - PROPER CARD DESIGN
========================================================= */

.solution-detail-card {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 280px;

    padding: 32px 35px;

    border: 1px solid rgba(245, 197, 24, 0.32);
    border-radius: 18px;

    background: #090909;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* Top gold line */

.solution-detail-card::before {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: #F5C518;

    content: "";

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.3s ease;
}


/* Hover */

.solution-detail-card:hover {
    border-color: #F5C518;

    background: #0d0d0d;

    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35);
}

.solution-detail-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   NUMBER + ICON ROW
========================================================= */

.solution-card-top {
    display: flex;
    align-items: center;

    gap: 10px;

    width: 100%;

    margin-bottom: 18px;
}


/* Number */

.solution-detail-card .solution-number {
    display: inline-flex;
    align-items: center;

    color: #FFFFFF;

    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 500;

    line-height: 1;
}


/* =========================================================
   ICON BOX
========================================================= */

.solution-detail-card>i {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin: 0;

    border: 1px solid #D4A017;
    border-radius: 8px;

    background: rgba(245, 197, 24, 0.06);

    color: #F5C518;

    font-size: 18px;

    line-height: 1;

    transition: all 0.3s ease;
}


/* Icon hover */

.solution-detail-card:hover>i {
    border-color: #F5C518;

    background: #F5C518;

    color: #050505;

    box-shadow:
        0 6px 18px rgba(245, 197, 24, 0.18);
}


/* =========================================================
   TITLE
========================================================= */

.solution-detail-card h2 {
    width: 100%;

    margin: 0 0 16px;

    color: #FFFFFF;

    font-family: "Montserrat", sans-serif;

    font-size: 27px;
    font-weight: 700;

    line-height: 1.22;

    letter-spacing: -0.4px;

    overflow-wrap: break-word;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.solution-detail-card p {
    width: 100%;

    margin: 0;

    color: #B8B8B8;

    font-family: "Inter", sans-serif;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.75;

    overflow-wrap: break-word;
}


/* =========================================================
   SOLUTIONS GRID
========================================================= */

.solutions-detail-grid {
    row-gap: 24px;
}

.solutions-detail-grid>[class*="col-"] {
    display: flex;
}

.solutions-detail-grid .solution-detail-card {
    width: 100%;
}


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

.solutions-page-section {
    padding-top: 90px;
    padding-bottom: 100px;

    border-top: 1px solid rgba(245, 197, 24, 0.65);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .solution-detail-card {
        min-height: 260px;

        padding: 28px;
    }

    .solution-detail-card h2 {
        font-size: 24px;
    }

    .solution-detail-card p {
        font-size: 14px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .solutions-page-section {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .solutions-detail-grid {
        row-gap: 18px;
    }

    .solution-detail-card {
        min-height: auto;

        padding: 25px;
    }

    .solution-card-top {
        margin-bottom: 17px;
    }

    .solution-detail-card .solution-number {
        font-size: 16px;
    }

    .solution-detail-card>i {
        width: 36px;
        height: 36px;

        font-size: 17px;
    }

    .solution-detail-card h2 {
        margin-bottom: 13px;

        font-size: 22px;
        line-height: 1.25;
    }

    .solution-detail-card p {
        font-size: 14px;
        line-height: 1.7;
    }
}


/* =========================================================
   PREMIUM CTA
   Used on About / Solutions / Partnerships
========================================================= */

.front-cta {
    position: relative;

    width: 100%;

    padding: 85px 0;

    background: #F5C518;

    color: #050505;

    overflow: hidden;

    border-top: 1px solid rgba(245, 197, 24, 0.8);
    border-bottom: 1px solid rgba(5, 5, 5, 0.18);
}


/* =========================================================
   DECORATIVE CIRCLES
========================================================= */

.front-cta::before {
    position: absolute;

    top: -210px;
    right: -80px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(5, 5, 5, 0.16);
    border-radius: 50%;

    content: "";

    pointer-events: none;
}


.front-cta::after {
    position: absolute;

    right: 75px;
    bottom: -275px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(5, 5, 5, 0.10);
    border-radius: 50%;

    content: "";

    pointer-events: none;
}


/* =========================================================
   CTA CONTAINER
========================================================= */

.front-cta .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   CTA WRAPPER
========================================================= */

.front-cta .cta-wrapper {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    width: 100%;

    padding: 10px 20px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.front-cta .cta-content {
    flex: 1;

    max-width: 850px;
}


/* Small label */

.front-cta .cta-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    color: rgba(5, 5, 5, 0.70);

    font-family: "Montserrat", sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.front-cta .cta-label::before {
    width: 28px;
    height: 2px;

    background: #050505;

    content: "";
}


/* =========================================================
   CTA HEADING
========================================================= */

.front-cta .cta-content h2 {
    margin: 0 0 15px;

    color: #050505;

    font-family: "Montserrat", sans-serif;

    font-size: clamp(36px, 4vw, 52px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


/* Highlight */

.front-cta .cta-content h2 span {
    color: #FFFFFF;
}


/* Description */

.front-cta .cta-content p {
    max-width: 650px;

    margin: 0;

    color: rgba(5, 5, 5, 0.72);

    font-family: "Inter", sans-serif;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.75;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.front-cta .cta-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    flex: 0 0 auto;

    min-width: 205px;
    min-height: 54px;

    padding: 14px 24px;

    border: 1px solid #050505;
    border-radius: 50px;

    background: #050505;

    color: #FFFFFF;

    font-family: "Montserrat", sans-serif;

    font-size: 14px;
    font-weight: 600;

    line-height: 1;

    box-shadow:
        0 10px 25px rgba(5, 5, 5, 0.18);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.front-cta .cta-button:hover {
    border-color: #FFFFFF;

    background: #FFFFFF;

    color: #050505;

    transform: translateY(-4px);

    box-shadow:
        0 14px 30px rgba(5, 5, 5, 0.20);
}


/* Arrow */

.front-cta .cta-button i {
    font-size: 16px;

    transition: transform 0.3s ease;
}


.front-cta .cta-button:hover i {
    transform: translateX(5px);
}


/* =========================================================
   OPTIONAL RIGHT DECORATIVE BOX
========================================================= */

.front-cta .cta-decoration {
    position: absolute;

    right: 40px;
    top: 50%;

    width: 100px;
    height: 100px;

    border: 1px solid rgba(5, 5, 5, 0.15);
    border-radius: 50%;

    transform: translateY(-50%);

    pointer-events: none;
}


/* =========================================================
   REMOVE OLD CTA ICON
========================================================= */

.front-cta .cta-icon {
    display: none;
}


/* =========================================================
   ABOUT / SOLUTIONS / PARTNERSHIP CTA VARIANTS
========================================================= */

.front-cta.about-cta,
.front-cta.solutions-cta,
.front-cta.partnership-cta {
    background: #F5C518;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991.98px) {

    .front-cta {
        padding: 70px 0;
    }

    .front-cta .cta-wrapper {
        align-items: flex-start;

        flex-direction: column;

        gap: 30px;

        padding: 0;
    }

    .front-cta .cta-content {
        max-width: 700px;
    }

    .front-cta .cta-button {
        min-width: 220px;
    }
}


@media (max-width: 767.98px) {

    .front-cta {
        padding: 60px 0;
    }

    .front-cta::before {
        top: -130px;
        right: -170px;

        width: 300px;
        height: 300px;
    }

    .front-cta::after {
        right: -150px;
        bottom: -200px;

        width: 320px;
        height: 320px;
    }

    .front-cta .cta-label {
        margin-bottom: 13px;

        font-size: 10px;
        letter-spacing: 1.7px;
    }

    .front-cta .cta-content h2 {
        margin-bottom: 14px;

        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -0.8px;
    }

    .front-cta .cta-content p {
        font-size: 14px;

        line-height: 1.7;
    }

    .front-cta .cta-button {
        width: 100%;

        min-height: 52px;
    }
}


@media (max-width: 480px) {

    .front-cta {
        padding: 52px 0;
    }

    .front-cta .cta-content h2 {
        font-size: 31px;
    }
}



/* =========================================================
   HEADER DROPDOWN
========================================================= */

.front-header .dropdown-menu {
    min-width: 250px;

    padding: 10px;

    margin-top: 12px;

    border: 1px solid rgba(245, 197, 24, 0.35);
    border-radius: 12px;

    background: #080808;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.45);
}

.front-header .dropdown-item {
    padding: 10px 12px;

    border-radius: 7px;

    color: #B8B8B8;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;

    white-space: normal;

    transition: all 0.25s ease;
}

.front-header .dropdown-item:hover,
.front-header .dropdown-item:focus {
    background: rgba(245, 197, 24, 0.10);

    color: #F5C518;
}

.front-header .dropdown-divider {
    border-color: rgba(245, 197, 24, 0.15);
}


/* Active main menu */

.front-header .nav-link.active {
    color: #F5C518 !important;
}


/* Dropdown arrow */

.front-header .dropdown-toggle::after {
    margin-left: 6px;

    border-top-color: #F5C518;
}


/* =========================================================
   MOBILE DROPDOWN
========================================================= */

@media (max-width: 991.98px) {

    .front-header .dropdown-menu {
        min-width: 100%;

        margin-top: 5px;

        border: 0;
        border-left: 1px solid rgba(245, 197, 24, 0.35);

        border-radius: 0;

        background: rgba(5, 5, 5, 0.5);

        box-shadow: none;
    }

    .front-header .dropdown-item {
        padding: 9px 15px;

        font-size: 13px;
    }

    .front-header .front-header-cta {
        display: inline-flex;

        margin-top: 15px;
    }
}

/* =========================================================
   FRONT HEADER - FINAL DROPDOWN FIX
========================================================= */

.front-header {
    position: relative;
    z-index: 9999;
}

.front-header .navbar {
    background: #050505;
}

.front-header .navbar-nav {
    gap: 4px;
}

/* Main menu links */
.front-header .navbar-nav .nav-link {
    position: relative;

    padding: 12px 14px !important;

    color: #FFFFFF !important;

    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;

    white-space: nowrap;

    transition: color 0.25s ease;
}

/* Hover */
.front-header .navbar-nav .nav-link:hover {
    color: #F5C518 !important;
}

/* Active page */
.front-header .navbar-nav .nav-link.active {
    color: #F5C518 !important;
}

/* IMPORTANT:
   When dropdown is OPEN, parent link must remain gold
*/
.front-header .navbar-nav .nav-item.dropdown.show>.nav-link,
.front-header .navbar-nav .nav-item.dropdown>.nav-link.show {
    color: #F5C518 !important;
}


/* =========================================================
   DROPDOWN
========================================================= */

.front-header .dropdown-menu {
    position: absolute;

    top: calc(100% + 8px);
    left: 0;

    min-width: 250px;
    max-width: 300px;

    margin: 0;
    padding: 9px;

    border: 1px solid rgba(245, 197, 24, 0.45);
    border-radius: 12px;

    background: #080808;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.55);

    z-index: 99999;
}


/* Dropdown items */

.front-header .dropdown-menu .dropdown-item {
    display: block;

    width: 100%;

    padding: 10px 13px;

    border-radius: 7px;

    color: #B8B8B8 !important;

    background: transparent !important;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;

    line-height: 1.5;

    white-space: normal;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}


/* Dropdown hover */

.front-header .dropdown-menu .dropdown-item:hover,
.front-header .dropdown-menu .dropdown-item:focus {
    color: #F5C518 !important;

    background: rgba(245, 197, 24, 0.10) !important;
}


/* Active dropdown item */

.front-header .dropdown-menu .dropdown-item.active,
.front-header .dropdown-menu .dropdown-item:active {
    color: #050505 !important;

    background: #F5C518 !important;
}


/* Divider */

.front-header .dropdown-divider {
    margin: 7px 3px;

    border-top: 1px solid rgba(245, 197, 24, 0.18);
}


/* Dropdown arrow */

.front-header .dropdown-toggle::after {
    margin-left: 7px;

    border-top-color: #F5C518;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991.98px) {

    .front-header .navbar-nav .nav-link {
        padding: 10px 12px !important;
    }

    .front-header .dropdown-menu {
        position: static;

        width: 100%;
        max-width: none;

        margin: 4px 0 8px;
        padding: 7px;

        border: 1px solid rgba(245, 197, 24, 0.25);

        background: #080808;

        box-shadow: none;
    }

    .front-header .dropdown-menu .dropdown-item {
        padding: 10px 13px;

        font-size: 13px;
    }
}


@media (max-width: 991.98px) {

    .front-header .navbar-collapse {
        padding: 20px 12px 25px;
    }

    .front-header .navbar-nav {
        width: 100%;
    }

    .front-header .nav-item {
        width: 100%;
    }

    .front-header .nav-link {
        width: 100%;
    }

    .front-header .dropdown-menu {
        position: static !important;

        display: none;

        width: calc(100% - 10px);
        max-width: none;

        margin: 5px 0 15px 5px;
        padding: 8px;

        border: 1px solid rgba(245, 197, 24, 0.35);
        border-radius: 12px;

        background: #080808;

        box-shadow: none;
    }

    .front-header .dropdown-menu.show {
        display: block;
    }

    .front-header .dropdown-item {
        width: 100%;

        padding: 10px 13px;

        color: #B8B8B8 !important;

        background: transparent !important;

        font-size: 13px;
    }

    .front-header .dropdown-item:hover,
    .front-header .dropdown-item:focus {
        color: #F5C518 !important;

        background: rgba(245, 197, 24, 0.08) !important;
    }
}


/* =========================================================
   MOBILE NAVBAR + DROPDOWN
========================================================= */

@media (max-width: 991.98px) {

    .front-header .navbar-collapse {
        width: 100%;

        margin-top: 12px;

        padding: 20px 12px 24px;

        border: 1px solid rgba(245, 197, 24, 0.30);
        border-radius: 14px;

        background: #050505;
    }


    .front-header .navbar-nav {
        width: 100%;

        margin: 0 !important;
    }


    .front-header .navbar-nav .nav-item {
        width: 100%;
    }


    .front-header .navbar-nav .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 13px 12px !important;

        color: #FFFFFF !important;

        font-family: "Montserrat", sans-serif;
        font-size: 15px;
        font-weight: 500;
    }


    .front-header .navbar-nav .nav-link:hover,
    .front-header .navbar-nav .nav-link.active {
        color: #F5C518 !important;
    }


    /*
    |--------------------------------------------------------------------------
    | Dropdown Toggle
    |--------------------------------------------------------------------------
    */

    .front-header .dropdown-toggle::after {
        margin-left: auto;

        border-top-color: #F5C518;
    }


    /*
    |--------------------------------------------------------------------------
    | MOBILE DROPDOWN
    |--------------------------------------------------------------------------
    */

    .front-header .dropdown-menu {

        position: static !important;

        width: calc(100% - 8px);

        min-width: 0;
        max-width: none;

        margin: 3px 4px 12px;

        padding: 8px;

        border: 1px solid rgba(245, 197, 24, 0.35);

        border-radius: 12px;

        background: #080808;

        box-shadow: none;

        /*
         * Bootstrap controls display.
         */
    }


    /*
    |--------------------------------------------------------------------------
    | Dropdown Item
    |--------------------------------------------------------------------------
    */

    .front-header .dropdown-menu .dropdown-item {

        display: block;

        width: 100%;

        padding: 10px 12px;

        border-radius: 7px;

        color: #B8B8B8 !important;

        background: transparent !important;

        font-family: "Montserrat", sans-serif;

        font-size: 13px;

        font-weight: 500;

        line-height: 1.5;

        white-space: normal;
    }


    .front-header .dropdown-menu .dropdown-item:hover,
    .front-header .dropdown-menu .dropdown-item:focus {

        color: #F5C518 !important;

        background: rgba(245, 197, 24, 0.08) !important;
    }


    /*
    |--------------------------------------------------------------------------
    | Divider
    |--------------------------------------------------------------------------
    */

    .front-header .dropdown-divider {

        margin: 7px 4px;

        border-color: rgba(245, 197, 24, 0.18);
    }


    /*
    |--------------------------------------------------------------------------
    | CTA
    |--------------------------------------------------------------------------
    */

    .front-header .front-header-cta {

        display: flex;

        width: 100%;

        margin-top: 15px;
    }

}