/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

section{
    width: 100%;
}

/* Root Variables */
:root {
    /* Main Colors */
    --color-background: #232729;
    --color-background-light: #32373a;
    --color-text: #ffffff;
    --color-text-muted: #dbeafe;
    
    /* Accent Colors */
    --color-accent: #82E5F7;
    --color-accent-hover: #7edcff;
    --color-accent-light: #aeefff;
    
    /* UI Colors */
    --color-border: #ffffff;
    --color-shadow: rgba(0, 0, 0, 0.08);
    /* Hero Colors */
    --color-hero-heading: #D5E1E7;
    --color-hero-subheading: #F5F5F5;
}

/* Styles */

/* Font Faces */
@font-face {
    font-family: 'Satoshi';
    src: url('../assets/fonts/Satoshi-Variable.woff2') format('woff2'),
         url('../assets/fonts/Satoshi-Variable.woff2') format('woff');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ET Mono';
    src: url('../assets/fonts/et_mono.woff2') format('woff2'),
         url('../assets/fonts/et_mono.woff2') format('woff');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

/* Base Styles */
body {
    margin: 0;
    background: var(--color-background);
    color: var(--color-text);
    font-family: 'Satoshi', Arial, sans-serif;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero Section */
.hero {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    text-align: center;
    color: var(--color-text);
    padding: 0 20px;
}

.hero__subheading {
    font-family: 'ET Mono', monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--color-hero-subheading);
    margin-bottom: 2rem;
    opacity: 0.85;
    text-transform: uppercase;
}

.hero__heading {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-hero-heading);
    margin: 0;
    text-shadow: 0 2px 16px rgba(0,0,0,0.28);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero__heading {
        font-size: 2rem;
    }
    .hero__subheading {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }
    .hero__content {
        padding: 0 1rem;
    }
}

/* Add media queries for different aspect ratios */
@media (max-aspect-ratio: 16/9) {
    .hero__video {
        width: auto;
        height: 100%;
    }
}

@media (min-aspect-ratio: 16/9) {
    .hero__video {
        width: 100%;
        height: auto;
    }
}

/* Ensure video covers on mobile devices */
@media (max-width: 768px) {
    .hero__video {
        width: 100%;
        height: 100%;
        object-position: center center;
    }
}

/* Layout Components */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.main-header {
    background: transparent; /* Changed from var(--color-background) to transparent */
    padding: 0;
    width: 100%;
    position: absolute; /* Make header fixed */
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure header stays above video */
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    width: 100%;
}

/* Logo Styles */
.logo-area {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'ET Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text);
}

/* Navigation Styles */
.main-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-family: 'ET Mono', monospace;
    font-size: 1.1rem;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s;
    padding: 2px 0;
}

.main-nav a:hover {
    color: var(--color-accent-light);
}

/* Header Actions */
.header-right-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.header-actions-desktop {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Button Styles */
.btn {
    font-family: 'ET Mono', monospace;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 2rem; /* Default padding, will be adjusted for header buttons if needed */
    border-radius: 12px;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    display: inline-flex; /* For vertical alignment */
    align-items: center;    /* For vertical alignment */
    justify-content: center; /* For horizontal alignment of text */
    box-sizing: border-box; /* Ensure padding and border are included in height/width */
}

.main-header .btn-outline,
.main-header .btn-accent {
    height: 57px;
    padding-top: 0; /* Remove specific top/bottom padding, rely on height and flex align */
    padding-bottom: 0;
    /* Side padding will be inherited or can be set by .header-actions-desktop .btn */
}

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

.btn-outline:hover {
    background: var(--color-text);
    color: var(--color-background);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-background);
    border: 2px solid var(--color-accent);
}

.btn-accent:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

/* Hamburger Menu */
.hamburger {
    flex: 0 0 auto;
    margin-left: 1rem;
    display: flex;
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--color-background-light);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    z-index: 1002; /* Ensure hamburger stays above everything */
    box-shadow: 0 1px 4px var(--color-shadow);
    transition: background 0.2s;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 3px;
    background: var(--color-text-muted);
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 28px; }

/* Hamburger Animation */
.header-open .hamburger span:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
}

.header-open .hamburger span:nth-child(2) {
    top: 22px;
    transform: rotate(-45deg);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    z-index: 1001; /* Ensure menu stays above video and header */
}

.header-open .menu-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    background: var(--color-background);
    z-index: 1100;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
}

.menu-overlay .main-nav,
.menu-overlay .header-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
}

.menu-overlay .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    width: auto;
    text-align: center;
    padding: 0;
    margin: 0;
}

.menu-overlay .main-nav li {
    width: auto;
    text-align: center;
    list-style: none;
}

.menu-overlay .main-nav a {
    display: block;
    width: auto;
    padding: 0.7rem 0;
    text-align: center;
}

.menu-overlay .header-actions {
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .header-actions-desktop .btn {
        width: auto;
        min-width: 120px;
        max-width: 200px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .header-actions-mobile {
        display: none !important;
    }
}

@media (max-width: 767px) {


    body .contact-form .form-group-checkbox input[type="checkbox"] {
        width: 50px;
    }

    .main-header {
        padding: 0.5rem 0.7rem;
    }
    
    .container {
        padding: 0;
    }
    
    .header-flex {
        flex-direction: row;
        height: 70px;
        gap: 0;
        padding: 0;
    }
    
    .main-nav,
    .header-actions {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100vw;
        background: var(--color-background);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 2rem 0 1rem 0;
        z-index: 1100;
        text-align: center;
    }
    
    .header-open .main-nav,
    .header-open .header-actions {
        display: flex;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        width: 100%;
        padding: 0.7rem 0;
    }
    
    .btn {
        width: 90vw;
        max-width: 320px;
        text-align: center;
    }
    
    .header-actions-desktop {
        display: none !important;
    }
    
    .hamburger {
        margin-left: 0;
        margin-top: 0.5rem;
        align-self: flex-end;
    }
}

/* Hide nav and actions by default on all screens */
.main-nav,
.header-actions {
    display: none;
}

/* Show nav and actions as overlay when menu is open (all screens) */
.header-open .main-nav,
.header-open .header-actions {
    display: flex;
}

.main-nav,
.header-actions {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    background: var(--color-background);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0 1rem 0;
    z-index: 1100;
    text-align: center;
}
.main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.main-nav li {
    width: 100%;
}
.main-nav a {
    display: block;
    width: 100%;
    padding: 0.7rem 0;
}
.btn {
    width: 90vw;
    max-width: 320px;
    text-align: center;
}
.hamburger {
    margin-left: 1rem;
    display: flex;
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--color-background-light);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    z-index: 1002; /* Ensure hamburger stays above everything */
    box-shadow: 0 1px 4px var(--color-shadow);
    transition: background 0.2s;
    justify-content: center;
    align-items: center;
}

.menu-overlay {
    display: none;
}
.header-open .menu-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    background: var(--color-background);
    z-index: 1100;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    height: 93vh;
}
.menu-overlay .main-nav,
.menu-overlay .header-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-height: fit-content;
}
.menu-overlay .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    width: auto;
    text-align: center;
    padding: 0;
    margin: 0;
}
.menu-overlay .main-nav li {
    width: auto;
    text-align: center;
    list-style: none;
}
.menu-overlay .main-nav a {
    display: block;
    width: auto;
    padding: 0.7rem 0;
    text-align: center;
}
.menu-overlay .header-actions {
    gap: 1rem;
    margin-top: 1.5rem;
}
.menu-overlay .btn {
    width: 90vw;
    max-width: 320px;
    text-align: center;
}
/* Remove previous overlay styles for .main-nav and .header-actions */
.main-nav,
.header-actions {
    position: static;
    width: auto;
    background: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    padding: 0;
    z-index: auto;
    text-align: left;
    display: none;
}

.header-actions-desktop {
    display: flex;
    gap: 1rem;
    align-items: center;
}
@media (max-width: 767px) {
    .header-actions-desktop {
        display: none !important;
    }
}

/* General button styles */
.btn {
  font-family: 'ET Mono', monospace;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 12px;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  display: inline-flex; /* For vertical alignment */
  align-items: center;    /* For vertical alignment */
  justify-content: center; /* For horizontal alignment of text */
  box-sizing: border-box; /* Ensure padding and border are included in height/width */
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}
.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-background);
}
.btn-accent {
  background: var(--color-accent);
  color: var(--color-background);
  border: 2px solid var(--color-accent);
}
.btn-accent:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

/* Desktop CTA size override only */
.header-actions-desktop .btn {
  width: auto;
  min-width: 120px;
  max-width: 200px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

/* Hero Actions (Buttons) */
.hero__actions {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    pointer-events: auto; /* Ensure buttons are clickable */
}

.hero-btn {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 18px;
    font-family: 'ET Mono', monospace;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 0;
    height: 88px;
    min-width: 320px;
    max-width: 400px;
    transition: box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    overflow: hidden;
    text-decoration: none; /* Remove underline */
    position: relative; /* Ensure clickable */
}

.hero-btn:hover {
    text-decoration: none; /* Ensure no underline on hover */
}

.hero-btn:focus {
    outline: none; /* Remove focus outline */
    text-decoration: none;
}

.hero-btn__text {
    flex: 1;
    text-align: center;
    z-index: 2;
}

.hero-btn__icon-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 18px;
    background: #232729;
    margin-left: auto;
    transition: background 0.2s;
}

.hero-btn__icon {
    width: 40px;
    height: 40px;
    filter: brightness(1.5) saturate(1.2);
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.hero-btn:hover .hero-btn__icon {
    transform: translateX(5px); /* Move arrow slightly to the right on hover */
}

.hero-btn--dark {
    background: #232729;
    color: #BFC7CB;
}
.hero-btn--dark .hero-btn__icon-bg {
    background: #1C2123;
    border: 3px solid #242729;
}
.hero-btn--dark .hero-btn__text {
    color: #BFC7CB;
}

.hero-btn--light {
    background: var(--color-accent);
    color: #232729;
    border: 3px solid var(--color-accent);
}
.hero-btn--light .hero-btn__icon-bg {
    background: #232729;
    border: 3px solid var(--color-accent);
    margin-right: -3px;
}
.hero-btn--light .hero-btn__text {
    color: #232729;
}

@media (max-width: 450px) {

.hero__actions {
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

}

@media (max-width: 768px) {

    .hero__actions {
        display: flex;
        gap: 0.5rem;
    }

    body .menu-overlay .main-nav ul {

        gap: 0.5rem;
    }


    .hero-btn {
        min-width: 200px;
        height: 48px;
        font-size: 1.1rem;
        border-radius: 8px;
    }

    .hero-btn__text {
        text-align: left;
        padding-left: 20px;
    }

    .hero-btn__icon-bg {
        width: 64px;
        height: 50px;
        border-radius: 10px;
    }
    .hero-btn__icon {
        width: 28px;
        height: 28px;
    }


}

/* Core Services Section */
.core-services {
    background: #92A6B0;
    padding: 120px 0 124px 0;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 99;
    position: relative;
}

button.core-tab {
    min-width: 200px;
    max-width: 215px;
    width: -webkit-fill-available;
}

.core-services__subheading {
    font-family: 'ET Mono', monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    color: #232729;
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    text-transform: uppercase;
    line-height: 1.3;
    padding: 0 20px;
}

.core-services__heading {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    color: #232729;
    margin: 0 0 3.5rem 0;
    line-height: 1.1;
}
.core-services__heading--light {
    font-weight: 500;
    color: #D5E1E7;
    display: block;
}

.core-services__tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    overflow: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.core-tab {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background: #A3B8C2;
    color: #232729;
    border: none;
    border-radius: 12px;
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    outline: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
}
.core-tab--active, .core-tab:focus {
    background: #B1C5CE;
    color: #232729;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.core-services__tab-content {
    max-width: 1312px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem 0 1rem;
}

.core-tab-panel {
    display: none;
}
.core-tab-panel--active {
    display: block;
}

.core-tab-panel__inner {
    display: flex;
    gap: 2.5rem;
    background: #B1C5CE;
    border-radius: 18px;
    padding: 2.5rem 2.5rem 2.5rem 2.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    align-items: flex-start;
    justify-content: space-between;
}

.core-tab-panel__text {
    flex: 1 1 0;
}
.core-tab-panel__text h3 {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #232729;
    margin: 0 0 1.2rem 0;
    max-width: 260px;
    line-height: 1.2;
}

.core-services__subheading--light {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 500;
    color: #D5E1E7;
    display: block;
    margin: auto;
    text-align: center;
}

.core-tab-panel__text p {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 1.1rem;
    color: #232729;
    margin: 0;
    line-height: 1.5;
}

.core-tab-panel__img {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.core-tab-panel__img img {
    width: 100%;
    max-width: 570px;
    border-radius: 18px;
    /* box-shadow: 0 2px 16px rgba(0,0,0,0.10); */
    filter: brightness(0) saturate(100%) invert(23%) sepia(60%) saturate(452%) hue-rotate(162deg) brightness(100%) contrast(95%);
}

@media (max-width: 900px) {
    .core-tab-panel__inner {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    .core-tab-panel__img {
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
    }
    .core-tab-panel__img img {
        max-width: 100%;
    }


}

@media (max-width: 600px) {
    .core-services {
        padding: 70px 0 70px 0;
    }
    .core-services__heading {
        font-size: 1.5rem;
    }
    .core-tab-panel__inner {
        padding: 1.2rem;
        gap: 1.2rem;
    }
    .core-tab-panel__text h3 {
        font-size: 1.2rem;
    }
    .core-tab-panel__text p {
        font-size: 0.95rem;
    }

} 

img.core-tab__icon {
    max-width: 50px;
}

.core-services__tabs-wrapper {
    padding: 0 20px;
}

.ongoing-work {
    background: #161A1B;
    padding: 120px 20px 120px 20px;
    margin-top: -20px;
}

.ongoing-work .core-services__subheading,
.ongoing-work .core-services__subheading--light,
.ongoing-work .core-services__heading {
    text-align: center;
}

.ongoing-work .core-services__subheading {
    margin-bottom: 1.5rem;
    opacity: 0.7;
    color: #F5F5F5;
}

.ongoing-work .core-services__subheading--light {
    color: #D5E1E7;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.ongoing-work .core-services__heading {
    color: #D5E1E7;
    margin-bottom: 2.5rem;
}

.ongoing-work .core-tab-panel__text.p {
    color: #D5E1E7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 0 auto;
    font-size: 1.1rem;
    line-height: 1.5;
    font-family: 'Satoshi', Arial, sans-serif;
    font-weight: 400;
    
}

@media (max-width: 767px) {
    .ongoing-work {
        padding: 90px 20px 70px 20px;
    }
    .ongoing-work .core-services__heading {
        font-size: 1.5rem;
    }
    .ongoing-work .core-tab-panel__text.p {
        font-size: 0.95rem;
    }


    .core-tab-panel__img {
        display: none;
    }

}

.ongoing-work-card {
    display: flex;
    background: #323738;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    overflow: hidden;
    margin: 48px auto 0 auto;
    max-width: 1280px;
    min-height: 420px;
    width: 100%;
}

.ongoing-work-card__content {
    flex: 1 1 0;
    padding: 48px 40px 48px 40px;
    display: flex;
    flex-direction: column;
    color: #F5F5F5;
    max-width: 40%;
}

.ongoing-work-card__heading {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 1.2rem 0;
    color: #F5F5F5;
    line-height: 1.2;
}

.ongoing-work-card__desc {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 1.1rem;
    margin: 0 0 2.2rem 0;
    color: #F5F5F5;
    line-height: 1.5;
}

.ongoing-work-card__link {
    font-family: 'ET Mono', monospace;
    font-size: 1rem;
    color: #F5F5F5;
    text-decoration: underline;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: color 0.2s;
}
.ongoing-work-card__link:hover {
    color: #AEEFFF;
}

.ongoing-work-card__image {
    flex: 1 1 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;

}
.ongoing-work-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}


@media (max-width: 425px) {

body .ongoing-work-card__image img {
    min-height: 0px;
}

}

@media (max-width: 767px) {
    .ongoing-work-card {
        flex-direction: column-reverse;
        min-height: 0;
    }
    .ongoing-work-card__content {
        padding: 32px 20px 24px 20px;
    }
    .ongoing-work-card__image img {
        min-height: 288px;
    }

    .ongoing-work-card__image img {

        object-fit: contain;
    }

    .ongoing-work-card__content {
        max-width: 100%;
    }

    body .ongoing-work-card.reverse{
    flex-direction: column-reverse;
}

body .ongoing-work-card {

    top: 40px;

  }

  span.card-number {

    font-size: 0.8rem;
}

span.card-number {
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important;

}
    
}


.ongoing-work-card.reverse {
    flex-direction: row-reverse;
}
  


.ongoing-work {
    display: grid;
    gap: 0; /*40 0*/
  }
  
  .ongoing-work-card {
    position: sticky;
    top: 88px;
    z-index: 1;
    transition: transform 0.3s ease, filter 0.3s ease;
    will-change: transform, filter;
  }
  
  .space {
    height: 90vh;
  }
  .space--small {
    height: 40vh;
  }
  

  span.card-number {
    position: absolute;
    bottom: 40px;
    left: 40px;
    opacity: 0.7;
    font-size: 1.5rem;
}
  
.ongoing-work-card.reverse span.card-number {
    right: 40px;
    left: auto;
}



@media (max-width: 767px) {
    .metric-section {
        padding: 70px 20px 70px 20px;
    }
}

.testimonials-section {
    background: #B1C5CE;
    padding: 120px 20px 100px 20px;
    margin-top: -20px;
}



@media (max-width: 767px) {
    .testimonials-section {
        padding: 90px 20px 90px 20px;
    }
    
    body .about-us-section {
        padding: 90px 20px 70px 20px;
    }

}



@media (max-width: 880px) {
    .testimonials-section {
        overflow: hidden;
    }

}

.about-us-section {
    background: #92A6B0;
    padding: 120px 20px 100px 20px;
    border-radius: 18px 18px 0 0;
    margin-top: -20px;
}

.contact-section {
    background: #B1C5CE;
    padding: 120px 20px 100px 20px;
    border-radius: 18px 18px 0 0;
    margin-top: -20px;

}

@media (max-width: 767px) {
    .contact-section {
        padding: 90px 20px 70px 20px;
    }
}


.metric-section {
    background: #92A6B0;
    padding: 100px 20px 100px 20px;
    border-radius: 18px;
    margin-top: -20px;
    z-index: 99;
    position: relative;
}

.metrics-cards-container {
    background: #B1C5CE;
    display: flex;
    gap: 0.3rem;
    border-radius: 18px;
    padding: 0.3rem;
    justify-content: center;
    align-items: stretch;
    max-width: 1280px;
    margin: auto;
}

.metric-card {
    background: #92A6B0;
    border-radius: 18px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem 2rem 1rem;
    text-align: center;
    min-width: 0;
    min-height: 400px;
}

.metric-card__icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    filter: brightness(0) saturate(100%) invert(92%) sepia(12%) saturate(170%) hue-rotate(155deg) brightness(97%) contrast(90%);
}

.metric-card__value {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #D5E1E7;
    margin-bottom: 0.5rem;
}

.metric-card__label {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #D5E1E7;
    line-height: 1.2;
}

@media (max-width: 900px) {
    .metrics-cards-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    .metric-card {
        padding: 2rem 0.5rem 1.5rem 0.5rem;
    }
}

.gallery {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 420px;
  padding: 0px 0 70px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cards {
  position: relative;
  width: 100%;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards li {
  list-style: none;
  width: 400px;
  max-width: 90vw;
  background: #F5FCFF;
  box-shadow: 0 0 5px 1px rgba(163,184,194,0.5);
  border-radius: 18px;
  color: #232729;
  font-family: 'Satoshi', Arial, sans-serif;
  font-size: 1.1rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.6);
  opacity: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  text-align: center;
  transition: transform 0.5s, opacity 0.5s, z-index 0s;
}

.cards li.prev {
  transform: translateX(-120%) scale(0.8);
  opacity: 0.5;
  z-index: 0;
}
.cards li.next {
  transform: translateX(20%) scale(0.8);
  opacity: 0.5;
  z-index: 0;
}
.cards li.active {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 1;
}

.testimonial-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border: 4px solid #E4EDF1;
  display: none;
}

.testimonial-card__stars {
  color: #F7B500;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-family: 'Satoshi', Arial, sans-serif;
  color: #232729;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
  padding: 0 10px;
}

.testimonial-card__author {
  font-family: 'ET Mono', monospace;
  color: #6B7A86;
  font-size: 1rem;
  margin-top: auto;
}

.actions {
  position: relative;
  margin-top: 2rem;
  display: flex;
  gap: 5px;
  justify-content: center;
  top: 50px;
}

button.prev, button.next {
  padding: 12px 25px;
  border: none;
  border-radius: 12px;
  background: #E4EDF1;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

button.prev:hover, button.next:hover {
  background: #F5FCFF;
}

@media (max-width: 600px) {
  .cards li {
    width: 95vw;
    min-width: 0;
    padding: 2rem;
    min-height: 300px;
        justify-content: center;
  }
  .gallery {
    min-height: 0;
    padding: 0px 0 70px 0;
  }
}

.actions img.arrow-left {
    transform: rotate(180deg);
}

.testimonial-arrow
 {
    max-width: 25px;
    filter: brightness(0) saturate(100%) invert(26%) sepia(7%) saturate(578%) hue-rotate(143deg) brightness(103%) contrast(89%);
}


button:has(.testimonial-arrow) {
    display: flex;
    flex-direction: row;
}

.actions {
    background: #92A6B0;
    padding: 5px;
    border-radius: 18px;
}

/* About Us Feature Section - New Styles */
.about-us-feature {
    display: flex;
    flex-direction: row-reverse; /* Image on left, text on right */
    gap: 2.5rem; 
    align-items: flex-start; /* Align items to the start */
    justify-content: space-between;
    max-width: 1280px; /* Consistent max-width */
    margin: 48px auto; /* Centering and spacing */
    padding: 0 20px; /* Horizontal padding */
}

.about-us-feature__content {
    flex: 1 1 0;
    max-width: 50%; /* Adjust as needed, similar to ongoing-work-card__content but can be more flexible */
    color: var(--color-text); /* Assuming text color similar to hero/darker sections */
}

.about-us-feature__heading {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 1.2rem 0;
    color: #232729; /* Changed to black */
    line-height: 1.2;
}

.about-us-feature__desc {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 1.1rem;
    margin: 0 0 2.2rem 0;
    color: #232729; /* Changed to black */
    line-height: 1.5;
}

.about-us-feature__link {
    font-family: 'ET Mono', monospace;
    font-size: 1rem;
    color: var(--color-accent-light);
    text-decoration: underline;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: color 0.2s;
}

.about-us-feature__link:hover {
    color: var(--color-accent);
}

.about-us-feature__image {
    flex: 1 1 0;
    display: flex;
    align-items: center; /* Center image vertically if needed */
    justify-content: center; /* Center image horizontally */
    max-width: 45%; /* Adjust as needed */
}

.about-us-feature__image img {
    width: 100%;
    max-width: 570px; /* Consistent with other sections */
    border-radius: 18px; /* Optional: if you want rounded corners for the image itself */
    /* box-shadow: 0 2px 16px rgba(0,0,0,0.10); Optional: if you want a subtle shadow on the image */
    display: block;
}

/* Responsive adjustments for About Us Feature */
@media (max-width: 900px) { /* Consistent breakpoint */
    .about-us-feature {
        flex-direction: column-reverse; /* Image on top, text below */
        gap: 2rem;
        margin: 30px auto;
    }

    .about-us-feature__content,
    .about-us-feature__image {
        max-width: 100%;
    }

    .about-us-feature__image {
        justify-content: flex-start; /* Align image to the left on smaller screens */
    }
    .about-us-feature__heading{
        font-size: 1.8rem;
    }
     .about-us-feature__desc{
        font-size: 1rem;
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 90px 20px 70px 20px;
    }

    .about-us-feature {
        padding: 0;
    }
    body .contact-layout {
        padding: 0;
    }
}

/* Contact Section Layout & Form Styles */
.contact-layout {
    display: flex;
    gap: 3rem; /* Gap between text and form area */
    max-width: 1280px;
    margin: 40px auto; /* Spacing around the layout */
    padding: 0 20px;
    align-items: flex-start; /* Align items to the top */
}

.contact-layout__text {
    flex: 1 1 40%; /* Text area takes about 40% */
    color: #232729; /* Changed default text color to black */
}

.contact-layout__text h3 {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #232729; /* Ensured heading is black */
    margin-bottom: 1.5rem;
}

.contact-layout__text p {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #232729; /* Explicitly set paragraph text to black */
}

.contact-layout__form-area {
    flex: 1 1 55%; 
    background-color: #92A6B0; 
    padding: 2rem;
    border-radius: 18px;
    outline: 1px solid #95a5af; /* Added outline */
    outline-offset: 5px; /* Added gap for the outline */
}

.contact-form-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    background-color: #2E373E; /* Background for the tab container */
    border-radius: 12px;
    overflow: hidden;
}

.contact-form-tab {
    flex: 1;
    padding: 0.8rem 1rem;
    background-color: transparent; 
    color: #A0AEC0; 
    border: none;
    font-family: 'ET Mono', monospace;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
    text-decoration: none; /* For anchor tag styling */
    height: 57px; /* Set height */
    display: inline-flex; /* For vertical centering */
    align-items: center;    /* For vertical centering */
    justify-content: center;/* For horizontal centering */
    box-sizing: border-box;
}

.contact-form-tab.active {
    background-color: #b4c4cd;
    color: #242729;
}

.contact-form-tab:not(.active):hover {
    background-color: #38414A;
}

.contact-form-tab .tab-arrow {
    margin-left: 0.5em; /* Space for the arrow in tab */
}

.contact-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form .form-group {
    flex: 1;
    margin-bottom: 1rem;
}

.contact-form .form-group:last-child {
    /* margin-bottom: 0; */ /* Handled by specific group margins if needed */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form textarea {
    width: 100%;
    padding: 1rem 1rem; 
    background-color: transparent; 
    border: 1px solid #2E373E; 
    border-radius: 8px; 
    color: var(--color-text-muted);
    font-family: 'ET Mono', monospace;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease; /* Added transition for smoother focus */
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="url"]:focus,
.contact-form textarea:focus {
    outline: none; /* Remove default browser focus outline */
    border-color: var(--color-accent); /* Change border color on focus */
    /* Optionally, you could add a subtle box-shadow here if preferred over border color change */
    /* box-shadow: 0 0 0 2px rgba(var(--color-accent-rgb), 0.25); */
}

/* Specifically target one-line inputs for height adjustment */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"] {
    height: 57px;
    line-height: 4;
}


.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form input[type="tel"]::placeholder,
.contact-form input[type="url"]::placeholder,
.contact-form textarea::placeholder {
    color: #718096;
    opacity: 1; /* Firefox requires this for full opacity */
}

/* Webkit browsers (Chrome, Safari, Edge) */
.contact-form input[type="text"]::-webkit-input-placeholder,
.contact-form input[type="email"]::-webkit-input-placeholder,
.contact-form input[type="tel"]::-webkit-input-placeholder,
.contact-form input[type="url"]::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
    color: #718096;
}

/* Mozilla Firefox */
.contact-form input[type="text"]::-moz-placeholder,
.contact-form input[type="email"]::-moz-placeholder,
.contact-form input[type="tel"]::-moz-placeholder,
.contact-form input[type="url"]::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
    color: #718096;
    opacity: 1;
}

/* Microsoft Edge */
.contact-form input[type="text"]::-ms-input-placeholder,
.contact-form input[type="email"]::-ms-input-placeholder,
.contact-form input[type="tel"]::-ms-input-placeholder,
.contact-form input[type="url"]::-ms-input-placeholder,
.contact-form textarea::-ms-input-placeholder {
    color: #718096;
}


.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group-checkbox input[type="checkbox"] {
    width: 30px;
    height: 20px;
    accent-color: var(--color-accent);
    background-color: #718096; /* Checkbox background when not checked */
    border: 1px solid #A0AEC0;
    border-radius: 4px;
    cursor: pointer;
    appearance: none; /* Remove default appearance */
    position: relative;
}

.contact-form .form-group-checkbox input[type="checkbox"]:checked {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.contact-form .form-group-checkbox input[type="checkbox"]:checked::before {
    content: '\2713'; /* Checkmark character */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-background); /* Checkmark color */
    font-size: 0.9rem;
    font-weight: bold;
}

.contact-form .form-group-checkbox label {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.contact-form .privacy-link {
    color: var(--color-accent-light);
    text-decoration: underline;
}

.contact-form .privacy-link:hover {
    color: var(--color-accent);
}

.contact-form .btn-submit-form {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background-color: var(--color-accent);
    color: var(--color-background);
    border-color: var(--color-accent);
}

.contact-form .btn-submit-form:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive adjustments for Contact Layout */
@media (max-width: 900px) {
    .contact-layout {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    .contact-layout__text,
    .contact-layout__form-area {
        flex-basis: 100%; /* Full width on smaller screens */
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-layout__form-area {
        padding: 1.5rem;
    }
    .contact-form .form-row {
        flex-direction: column;
        gap: 0; /* Remove gap if stacking, rely on individual form-group margin */
    }
    .contact-form .form-row .form-group {
        margin-bottom: 1rem; /* Ensure spacing when stacked */
    }
    .contact-form-tabs {
        flex-direction: column-reverse;
    }

    .contact-form-tab:last-child {
        border-bottom: none;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    background-color: var(--color-background-light); /* Or var(--color-background) depending on desired contrast */
    color: var(--color-text);
    padding: 150px 0; /* Adjusted padding for a content page */
    min-height: calc(100vh - 70px); /* 70px is approx header height, ensures it fills viewport if content is short */
}

.privacy-content-container {
    max-width: 900px; /* Optimal width for text readability */
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--color-background); /* Slightly different background for the text block if desired */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.privacy-content-container h1 {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-hero-heading);
    margin-bottom: 1rem;
    text-align: center;
}

.privacy-content-container h2 {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-accent-light);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid var(--color-border-subtle, #4A5568); /* Subtle underline */
    padding-bottom: 0.3rem;
}

.privacy-content-container p,
.privacy-content-container li {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.privacy-content-container strong {
    font-weight: 600;
    color: var(--color-text); /* Make strong text stand out more */
}

.privacy-content-container ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1rem;
}

.privacy-content-container a {
    color: var(--color-accent);
    text-decoration: underline;
}

.privacy-content-container a:hover {
    color: var(--color-accent-hover);
}

@media (max-width: 768px) {
    .privacy-content-container h1 {
        font-size: 2.2rem;
    }
    .privacy-content-container h2 {
        font-size: 1.5rem;
    }
    .privacy-content-container {
        padding: 1.5rem;
    }
}

/* Main Footer Section Styles */
.main-footer-section {
    background-color: #161A1B; /* Dark background from image */
    color: var(--color-text);
    padding: 50px 0;
    text-align: center; /* Center heading by default */
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    margin-top: -20px;
}

.main-footer-section .container {
    /* max-width will be inherited from global .container styles */
}

.footer-heading-container {
    margin-bottom: 20px;
}

.footer-heading {
    font-family: 'Satoshi', Arial, sans-serif;
    font-size: 2.5rem; /* Adjust size as needed */
    font-weight: 700;
    color: var(--color-hero-heading); /* Light text color */
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: #4A5568; /* Subtle divider color */
    margin: 20px auto 30px auto;
    max-width: 100%;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px; /* Gap between logo and social icons if they wrap */
}

.footer-logo-area {
    /* Flex properties will be handled by parent if needed */
}

.footer-logo-img {
    height: 35px; /* Adjust size as needed */
    width: auto;
}

.footer-social-icons {
    display: flex;
    gap: 10px; /* Gap between social icons */
    display: none;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;  /* Square buttons */
    height: 40px; /* Square buttons */
    background-color: #2E373E; /* Darker background for icons */
    color: var(--color-text-muted);
    text-decoration: none;
    font-family: 'Satoshi', Arial, sans-serif; /* Consistent font */
    font-size: 1rem; /* Adjust if icons are actual text */
    font-weight: 500;
    border-radius: 6px; /* Slightly rounded corners */
    transition: background-color 0.3s ease;
}

.social-icon-link:hover {
    background-color: #4A5568; /* Lighter on hover */
    color: var(--color-text);
}

/* Responsive Footer Adjustments */
@media (max-width: 768px) {
    .footer-heading {
        font-size: 2rem;
        text-align: center;
    }
    .footer-bottom-content {
        flex-direction: column; /* Stack logo and social icons */
        align-items: center; /* Center them when stacked */
    }
    .main-footer-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .footer-heading {
        font-size: 1.6rem;
    }
    .social-icon-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}


.main-footer-section .container {
    max-width: 1280px;
}

/* Sticky Bottom Bar Styles */
.sticky-bottom-bar {
    position: fixed;
    bottom: 10px;
    left: 49vw; 
    transform: translateX(-50%) translateY(70px); /* Initial transform: centered and slid down */
    width: min-content;
    background-color: #3a4246; 
    padding: 10px 12px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.25); 
    z-index: 1050; 
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 12px;
    gap: 10px; 
    visibility: hidden; 
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; /* Animate opacity and transform */
    /* Removed visibility from direct transition for smoother effect */
}

.sticky-bottom-bar.visible {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0); /* Slide into view */
}

.sticky-bottom-bar.visible:has(.is-close-icon){
    background-color: transparent;
}



.sticky-bottom-bar .sticky-hamburger {
    margin: 0;
    background-color: transparent; /* Added background */
    width: 43px; /* Increased size by ~20% from 36px */
    height: 43px; /* Increased size by ~20% from 36px */
    padding: 8px; /* Adjusted padding for new size */
    border-radius: 8px; /* Added border-radius for consistency */
    border: 1px solid #94e3f4;
}

/* Adjust hamburger spans for new size and color */
.sticky-hamburger span {
    height: 2.5px; /* Slightly thicker for better visibility */
    background: #94e3f4;
    margin-top: -2px;
}

.sticky-action-btn {
    background-color: transparent; /* Added background */
    border: none;
    color: var(--color-text-muted); /* Base color for text, though icons are main focus */
    cursor: pointer;
    padding: 0; /* Remove padding, rely on width/height for centering icon */
    border-radius: 8px; /* Consistent border-radius */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
    width: 43px; /* Increased size by ~20% from 36px */
    height: 43px; /* Increased size by ~20% from 36px */
    border: 1px solid #94e3f4;
}

@media (min-width: 1024px) {
    .sticky-action-btn:hover {
        background-color: #5E6A78; /* Slightly lighter shade for hover on #4A5568 */
        /* color: var(--color-text); */ /* Keep icon color change separate if needed */
    }

    button#stickyHamburger:hover {
        background-color: #5E6A78;
    }


}



.sticky-action-btn img {
    height: 24px; /* Increased size by 20% from 20px */
    width: 24px;  /* Increased size by 20% from 20px */
    /* Applying filter to make it off-white. Adjust brightness/contrast as needed */

}

.scroll-to-top-btn img {
    transform: rotate(-90deg); 
    /* filter: brightness(0) saturate(100%) invert(26%) sepia(7%) saturate(578%) hue-rotate(143deg) brightness(103%) contrast(89%); */
}

.phone-contact-btn {
    text-decoration: none; 
}

.phone-contact-btn .phone-icon {
    font-size: 24px; /* Increased size by 20% from 20px */
    color: #94e3f4; /* Off-white color */
    line-height: 1; 
}

.phone-contact-btn:hover .phone-icon {
    color: #94e3f4; /* Brighter white on hover */
}

/* Styles for the hamburger when it becomes a close icon */
.sticky-hamburger.is-close-icon span:nth-child(1) {
    /* transform: translateY(10px) rotate(45deg); */ /* User adjusted */
    /* Re-evaluating transform for new size and thickness */
    transform: translateY(6px) rotate(45deg); 
}

.sticky-hamburger.is-close-icon span:nth-child(2) {
    /* transform: translateY(-2px) rotate(-45deg); */ /* User adjusted */
    /* Re-evaluating transform for new size and thickness */
    transform: translateY(-6px) rotate(-45deg);
}

.sticky-bottom-bar.visible:has(.is-close-icon) {
    /* gap: 40px; User-added, but likely not needed if only one item is visible and centered */
    justify-content: center; /* Center the close button */
}

.sticky-bottom-bar.visible:has(.sticky-hamburger.is-close-icon) .scroll-to-top-btn,
.sticky-bottom-bar.visible:has(.sticky-hamburger.is-close-icon) .phone-contact-btn {
    display: none; /* Hide other icons when menu is full-screen */
}

/* Responsive adjustments if needed for the sticky bar */
@media (max-width: 480px) {
    .sticky-bottom-bar {
        /* left: 50%; transform: translateX(-50%) will handle centering */
        /* padding: 8px 10px; */ /* Already adjusted base */
        /* justify-content: space-between; */
    }
    /* Sizes are now consistent, so less specific overrides needed here unless behavior changes */
}

/* Full Screen Menu Styles (when opened by sticky hamburger) */
.main-header.header-fullscreen-open .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(22 26 27); /* Darker, slightly more opaque for full screen */
    z-index: 1100; /* Above regular header menu overlay z-index */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 7rem 2rem; /* Ensure content isn't at edge */
    overflow-y: auto; /* In case content overflows */
}

.main-header.header-fullscreen-open .menu-overlay .main-nav ul {
    gap: 2rem; /* Larger gap for full screen */
}

.main-header.header-fullscreen-open .menu-overlay .main-nav a {
    font-size: 1.5rem; /* Larger font for full screen */
}

.main-header.header-fullscreen-open .menu-overlay .header-actions {
    margin-top: 2.5rem; /* More space above actions */
    gap: 1.5rem;
}

.main-header.header-fullscreen-open .menu-overlay .btn {
    font-size: 1.2rem; /* Larger buttons */
    padding: 1rem 2.5rem;
}

/* Ensure sticky hamburger (as close button) is above full-screen menu */
.sticky-hamburger.is-close-icon {
    z-index: 1101; 
    position: fixed; /* Needs to be fixed if menu is fixed, to stay relative to viewport */
    /* Position it where the sticky bar was, or a new desired position for close */
    /* This might need adjustment based on where the original bar is */
    bottom: 18px; /* approx (10px bar bottom + 8px padding) */
    /* left will be inherited from .sticky-bottom-bar if it remains a child or set explicitly */
}


div#contactFormStatus {
    text-align: left !important;
    color: #2f373d !important;
}

.grecaptcha-badge { 
    display: none !important;
    visibility: hidden !important;


}

strong {
    font-weight: 700;
}

.testimonial-card__name{
    font-weight: 700;
}

h3.uiux-special {
    max-width: 220px;
}

textarea#message {
    line-height: 1.3;
}