/* ============================================
   HYLOSENSE - Custom Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary-purple: #9131d0;
    --primary-dark: #000000;
    --primary-white: #ffffff;
    --light-bg: #F2F7FE;
    --text-gray: #666666;
    --transition-speed: 0.3s;
}

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

body {
    background-color: #000000;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-purple);
}

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

/* ---------- Announcement Bar ---------- */
.announcement-bar {
    background-color: var(--primary-purple);
    color: var(--primary-white);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    position: fixed;
    top: 0;
    z-index: 1001;
    width: 100%;
}

.announcement-bar a {
    color: var(--primary-white);
    text-decoration: none;
    transition: opacity var(--transition-speed);
}

.announcement-bar a:hover {
    color: var(--primary-white);
    opacity: 0.85;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .navbar,
    .navbar.scrolled,
    .page-inner .navbar {
        top: 2.5rem;
    }
}

@media (max-width: 480px) {

    .navbar,
    .navbar.scrolled,
    .page-inner .navbar {
        top: 3rem;
    }
}

/* ---------- Navigation ---------- */
.navbar {
    padding: 1rem 4rem;
    background: transparent;
    position: absolute;
    top: 2rem;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-speed);
}

.navbar>.container {
    max-width: 100%;
    padding: 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    height: 40px;
    border: none;
    outline: none;
}

.navbar-nav .nav-link {
    color: var(--primary-white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color var(--transition-speed);
}

.navbar.scrolled .nav-link {
    color: var(--primary-white);
}

.navbar-nav .nav-link:hover {
    text-decoration: underline;
}

.navbar-nav .nav-link.active {
    color: var(--primary-white);
}

/* Dropdown hover */
.navbar-nav .dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    text-decoration: underline;
}

.btn-cta {
    background-color: var(--primary-purple);
    color: var(--primary-white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    border: none;
    transition: all var(--transition-speed);
}

.btn-cta:hover {
    background-color: var(--primary-white);
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

/* ---------- Hero Section ---------- */
.hero-section {
    min-height: 100dvh;
    display: flex;
    /* align-items: flex-end; */
    justify-content: end;
    text-align: left;
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-wind-turbines.jpg');
    /* background-size: cover; */
    background-position: bottom;
    /* animation: kenBurns 20s ease-in-out infinite alternate; */
    z-index: -2;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.6) 100%),
        linear-gradient(135deg, rgba(145, 49, 208, 0.7) 0%, rgba(145, 49, 208, 0.5) 50%, rgba(145, 49, 208, 0.3) 100%);
    z-index: -1;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-2%, -1%);
    }
}

.hero-content {
    padding: 2rem;
    padding-left: 80px;
    padding-bottom: 40px;
}

.hero-content h1 {
    font-size: 3.7rem;
    font-weight: 100;
    margin-bottom: 0;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-purple);
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 100;
    line-height: 1.5;
}

.hero-arrow {
    display: inline-block;
    color: var(--primary-white);
    font-size: 2rem;
    transition: transform var(--transition-speed);
}

.hero-arrow:hover {
    color: var(--primary-white);
    transform: translateY(5px);
}

/* ---------- Clients Logo Section ---------- */
.clients-section {
    padding: 2rem 0;
    background: var(--primary-dark);
}

.clients-section h2 {
    text-align: center;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: marquee var(--marquee-duration, 20s) linear infinite;
}

.logo-set {
    display: flex;
    flex-shrink: 0;
}

.logo-set img {
    height: 50px;
    margin: 0 3rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-speed);
    flex-shrink: 0;
}

.logo-set img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.nda-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    padding-left: 80px;
    margin-top: 10px;
}

/* ---------- Value Proposition Section ---------- */
.value-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.value-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.value-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Comparison Cards */
.comparison-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.comparison-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 0;
}

.comparison-problem {
    background-color: #fefefe;
    opacity: 0.8;
}

.comparison-problem h3 {
    color: var(--text-gray);
}

.comparison-solution {
    background-image: url('../images/wind-mast.png');
    background-size: cover;
    background-position: center right;
    border: 2px solid #9131d0;
}

.comparison-solution h3 {
    color: var(--primary-purple);
}

a.comparison-solution {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

a.comparison-solution:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(145, 49, 208, 0.15);
}

.comparison-solution p {
    margin-bottom: 1.5rem;
}

.comparison-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-purple);
    font-weight: 600;
    transition: all var(--transition-speed);
}

.comparison-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.globe-container>i.bi-globe-americas {
    font-size: 4rem;
    color: var(--text-gray);
    opacity: 0.6;
}


/* Icon Container - hylosense */
.icon-container,
.globe-container {
    width: 100px;
    height: 100px;
    margin: 0;
    display: flex;
    align-items: center;
}

.icon-container>i {
    font-size: 4rem;
    color: var(--primary-purple);
}

@media (max-width: 991px) {
    .value-section .row>[class*="col-"]:first-child {
        margin-bottom: 1.5rem;
    }

    .comparison-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .comparison-card {
        padding: 1.5rem;
    }

    .globe-container {
        width: 80px;
        height: 80px;
    }

    .globe-container>i.bi-globe-americas {
        font-size: 3rem;
    }

    .icon-container {
        display: none;
        width: 80px;
        height: 80px;
    }

    .icon-container>i {
        font-size: 3rem;
    }

    .comparison-card h3 {
        font-size: 1.3rem;
    }

    .comparison-card p {
        font-size: 0.9rem;
    }
}

/* ---------- Energy Sectors Section ---------- */
.sectors-section {
    padding: 6rem 0;
    background: var(--primary-white);
}

.sectors-image-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.sectors-image-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(145, 49, 208, 0.7) 0%, rgba(145, 49, 208, 0.5) 50%, rgba(145, 49, 208, 0.3) 100%);
    z-index: 0;
}

.sectors-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.sectors-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    z-index: 1;
}

.sectors-image-overlay h2 {
    font-size: 2.8rem;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
}

.sectors-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 0;
}

.sectors-list {
    padding-left: 2rem;
}

a.sector-item {
    display: block;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed);
}

a.sector-item:last-child {
    border-bottom: none;
}

a.sector-item:hover {
    color: inherit;
}

a.sector-item:hover h4,
a.sector-item:hover i {
    color: var(--primary-purple);
}

.sector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.sector-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.sector-header i {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.sector-item p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .sectors-image-box {
        min-height: 145px;
        max-height: 145px !important;
        margin-bottom: 2rem;
        height: 145px;
    }

    .sectors-list {
        padding-left: 0;
    }

    .sector-header h4 {
        font-size: 1.4rem;
    }
}

/* ---------- Client Showcases Section ---------- */
.showcases-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.showcases-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.showcases-section .accordion {
    max-width: 900px;
    margin: 0 auto;
}

.showcases-section .accordion-item {
    border: none;
    background: var(--primary-white);
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.showcases-section .accordion-button {
    background: var(--primary-white);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: none;
}

.showcases-section .accordion-button:not(.collapsed) {
    background: var(--primary-white);
    color: var(--primary-dark);
}

.showcases-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.accordion-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.accordion-label {
    margin-right: auto;
    font-size: 1.1rem;
    font-weight: 500;
}

.showcases-section .accordion-body {
    padding: 0 2rem 2rem;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.showcases-section .accordion-body p {
    flex: 1;
    margin-bottom: 0;
}

.showcase-image {
    width: 40%;
    flex-shrink: 0;
    height: 200px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .showcases-section .accordion-body {
        flex-direction: column;
    }

    .showcase-image {
        width: 100%;
        height: 180px;
    }
}

.showcases-section .accordion-button::after {
    margin-left: 1rem;
    flex-shrink: 0;
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 6rem 0;
    background: var(--primary-dark);
    color: var(--primary-white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-section h3 {
    font-size: 1.8rem;
    display: inline-block;
    border-bottom: 2px solid var(--primary-purple);
    font-weight: normal;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 700px;
    opacity: 0.85;
    margin-bottom: 2rem;
    display: block;
    line-height: 1.5;
}

.cta-video {
    border-radius: 12px;
    overflow: hidden;
    margin-left: 4rem;
}

.cta-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .cta-video {
        margin-top: 3rem;
        margin-left: 0;
    }
}

.btn-cta-light {
    background-color: var(--primary-purple);
    color: var(--primary-white) !important;
    padding: 0.8rem 2rem;
    border-radius: 0;
    font-weight: 600;
    border: none;
    transition: all var(--transition-speed);
}

.btn-cta-light:hover {
    background-color: var(--primary-white);
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

/* ---------- Inner Pages (non-index) ---------- */
.page-inner .navbar {
    background: var(--primary-dark);
    position: sticky;
    top: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.page-inner .navbar .nav-link {
    color: var(--primary-white);
}

.page-inner .navbar .nav-link:hover {
    text-decoration: underline;
}

.team-hero {
    padding: 5rem 0;
    background: var(--primary-white);
}

.team-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.team-intro {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.team-intro strong {
    color: var(--primary-dark);
}

.investors-title {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.investors-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    align-items: center;
}

.investors-logos img {
    height: 35px;
    width: auto;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-speed);
}

.investors-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

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

.team-card {
    text-align: center;
    padding: 2rem;
    background: var(--primary-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-dark);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.team-bio {
    list-style: disc;
    text-align: left;
    padding-left: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.team-bio li {
    margin-bottom: 0.5rem;
}

.team-social {
    margin-top: 1.5rem;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    margin: 0 0.25rem;
    color: var(--primary-dark);
    transition: all var(--transition-speed);
}

.team-social a:hover {
    background: var(--primary-purple);
    color: var(--primary-white);
}

/* Global Presence / Gallery Section */
.global-presence {
    padding: 5rem 0;
    background: var(--light-bg);
    border-top: 1px solid #e5e5e5;
}

.global-presence h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.global-intro {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--primary-white);
    font-size: 0.85rem;
}

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

    .team-hero h1 {
        font-size: 2.2rem;
    }

    .team-hero,
    .global-presence {
        padding: 3rem 0;
    }

    .investors-logos img {
        height: 30px;
    }
}

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

    .team-photo {
        width: 120px;
        height: 120px;
    }
}

/* ---------- Industries Page ---------- */
.industries-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.industries-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.industries-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industries-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(145, 49, 208, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.industries-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.industries-hero h1 {
    font-size: 3rem;
    color: var(--primary-white);
    margin: 0;
}

/* Industry Sections */
.industry-section {
    padding: 5rem 0;
}

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

.industry-white {
    background: var(--primary-white);
}

.industry-section h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-purple);
    display: inline-block;
}

.industry-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.industry-section .row {
    align-items: stretch !important;
    --bs-gutter-x: 4rem;
}

.industry-section .row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.industry-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-height: 300px;
}

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

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.industry-light .feature-card {
    background: var(--primary-white);
}

.industry-white .feature-card {
    background: var(--light-bg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(145, 49, 208, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.feature-card h5 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Featured Client */
.featured-client {
    background: var(--primary-white);
    border-left: 4px solid var(--primary-purple);
    padding: 1.25rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.industry-white .featured-client {
    background: var(--light-bg);
}

.featured-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.featured-client p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .industries-hero {
        height: 200px;
    }

    .industries-hero h1 {
        font-size: 2.5rem;
    }

    .industry-image {
        margin-bottom: 2rem;
        min-height: unset;
        height: 100px;
        max-height: 110px;
    }

    .gallery-item {
        aspect-ratio: unset;
        max-height: 165px;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .industry-section .order-lg-1,
    .industry-section .order-lg-2 {
        order: unset;
    }
}

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

    .industry-section {
        padding: 3rem 0;
    }

    .industry-section h2 {
        font-size: 1.5rem;
    }
}

/* ---------- Tech Page ---------- */
.industries-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.tech-intro {
    padding: 4rem 0;
    background: var(--primary-white);
}

.tech-intro .lead {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Tech Timeline */
.tech-timeline {
    position: relative;
}

.tech-step {
    position: relative;
}

.tech-step .container {
    position: relative;
}

.tech-step .container::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-purple);
    opacity: 0.3;
}

.tech-step:first-of-type .container::before {
    top: 5rem;
    opacity: 1;
}

.tech-step:last-of-type .container::before {
    bottom: auto;
    height: 6rem;
}

.step-number {
    position: absolute;
    left: -65px;
    top: 5rem;
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(145, 49, 208, 0.3);
}

@media (max-width: 1399px) {

    .tech-step .container::before,
    .step-number {
        display: none;
    }
}

.tech-highlight {
    background: rgba(145, 49, 208, 0.08);
    border-left: 4px solid var(--primary-purple);
    padding: 1.25rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tech-highlight i {
    font-size: 1.5rem;
    color: var(--primary-purple);
    flex-shrink: 0;
}

.tech-highlight p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.variables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.variable-item {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.variable-item i {
    font-size: 1.5rem;
    color: var(--primary-purple);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.variable-item h5 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.variable-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

.api-example {
    background: var(--primary-dark);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.api-example h5 {
    color: var(--primary-white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.api-example pre {
    margin-bottom: 0;
    background: transparent;
}

.api-example code {
    color: #a8d4a8;
    font-size: 0.85rem;
    line-height: 1.6;
}

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

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

    .tech-intro {
        padding: 2.5rem 0;
    }

    .tech-highlight {
        flex-direction: column;
        gap: 0.75rem;
    }

    .variable-item {
        flex-direction: column;
        text-align: center;
    }

    .variable-item i {
        margin: 0 auto;
    }
}

/* ---------- Contact Page ---------- */
.contact-hero {
    padding: 5rem 0;
    background: var(--primary-white);
    min-height: calc(100dvh - 200px);
}

.contact-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-email-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.contact-email-cta p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.contact-email-cta .btn-outline-light {
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.contact-email-cta .btn-outline-light:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--primary-white);
}

.booking-widget {
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-widget iframe {
    display: block;
    min-height: 600px;
}

@media (max-width: 991px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .booking-widget {
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 3rem 0;
    }

    .booking-widget iframe {
        min-height: 500px;
    }
}

/* ---------- Footer ---------- */
.footer {
    background: var(--primary-dark);
    color: var(--primary-white);
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed);
}

.footer-nav a:hover {
    color: var(--primary-purple);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--primary-purple);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    transition: all var(--transition-speed);
}

.social-links a:hover {
    background: var(--primary-purple);
    color: var(--primary-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 991px) {

    .globe-container,
    .icon-container,
    .cta-video {
        display: none;
    }

    .industry-section .row {
        --bs-gutter-x: 0;
    }

    .nda-note {
        padding-left: 16px;
    }

    .navbar {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 2rem;
    }

    .navbar-nav {
        background: var(--primary-dark);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .sectors-section {
        padding: 1rem 0;
    }

    .tech-intro .lead {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .hero-subtitle {
        line-height: 1.2;
    }

    .value-section p {
        font-size: 1rem;
    }

    .hero-content {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .navbar-nav .nav-link {
        color: var(--primary-white);
    }

    .navbar-toggler {
        border: none;
    }


    .navbar-toggler-icon {
        filter: invert(1);
    }

    .navbar.scrolled .navbar-toggler-icon {
        filter: invert(1);
    }

    .hero-content h1 {
        font-size: 40px;
        margin-bottom: 14px;
        line-height: 1;
    }

    .hero-content p {
        font-size: 20px;
        line-height: 1.3;
    }

    .sectors-image-overlay {
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: left;
        padding: 20px;
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {


    .clients-section h2,
    .value-section h2,
    .sectors-section h2,
    .showcases-section h2,
    .cta-section h2 {
        font-size: 1.75rem;
    }

    .value-section,
    .sectors-section,
    .showcases-section,
    .cta-section {
        padding: 3rem 0;
    }

    .clients-section {
        padding: 2.5rem 0;
    }

    .sector-card {
        margin-bottom: 1.5rem;
    }


    .logo-set img {
        height: 35px;
        margin: 0 2rem;
    }
}