:root {
    --clr-deep: #0a1628;
    --clr-navy: #0f2240;
    --clr-teal: #00b4d8;
    --clr-teal-dark: #0077a8;
    --clr-teal-glow: rgba(0, 180, 216, 0.15);
    --clr-slate: #334155;
    --clr-mist: #f0f6ff;
    --clr-white: #ffffff;
    --clr-accent: #00e5ff;
    --ff-display: 'Syne', sans-serif;
    --ff-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    color: var(--clr-slate);
    background: var(--clr-white);
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 180, 216, 0.15);
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand span {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.navbar-brand span em {
    color: var(--clr-teal);
    font-style: normal;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-teal) !important;
    background: rgba(0, 180, 216, 0.1);
}

.nav-cta {
    background: var(--clr-teal);
    color: var(--clr-deep) !important;
    font-weight: 600 !important;
    padding: 8px 22px !important;
}

.nav-cta:hover {
    background: var(--clr-accent) !important;
    color: var(--clr-deep) !important;
}

.navbar-toggler {
    border: 1px solid rgba(0, 180, 216, 0.4);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* PAGE HERO (sub pages) */
.page-hero {
    background: var(--clr-deep);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 180, 216, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 119, 168, 0.25) 0%, transparent 70%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-eyebrow {
    display: inline-block;
    color: var(--clr-teal);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.page-hero-title {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-hero-title .accent {
    color: var(--clr-teal);
}

.page-hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.7;
}

.breadcrumb-ef {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 24px;
}

.breadcrumb-ef a {
    color: var(--clr-teal);
    text-decoration: none;
}

.breadcrumb-ef a:hover {
    color: #fff;
}

/* HERO (home) */
.hero {
    min-height: 100vh;
    background: var(--clr-deep);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 180, 216, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(60px, 60px)
    }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(0, 119, 168, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(0, 180, 216, 0.1) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 216, 0.12);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--clr-teal);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    background: var(--clr-teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4)
    }
}

.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(2.6rem, 5.5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--clr-teal), var(--clr-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat-value {
    font-family: var(--ff-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-value span {
    color: var(--clr-teal);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 180, 216, 0.2);
}

.hero-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.3) 0%, transparent 60%);
}

.hero-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--clr-teal), var(--clr-teal-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.hero-badge-text .label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-badge-text .value {
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

/* BUTTONS */
.btn-primary-ef {
    background: var(--clr-teal);
    color: var(--clr-deep);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.35);
}

.btn-primary-ef:hover {
    background: var(--clr-accent);
    color: var(--clr-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.5);
}

.btn-outline-ef {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}

.btn-outline-ef:hover {
    border-color: var(--clr-teal);
    color: var(--clr-teal);
    background: rgba(0, 180, 216, 0.08);
}

.btn-light-ef {
    background: white;
    color: var(--clr-deep);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}

.btn-light-ef:hover {
    background: var(--clr-mist);
    color: var(--clr-teal-dark);
    transform: translateY(-2px);
}

/* SECTION STYLES */
.section-eyebrow {
    display: inline-block;
    color: var(--clr-teal-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: serif;
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 800;
    color: var(--clr-deep);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-title .accent {
    color: var(--clr-teal-dark);
}

.section-lead {
    font-size: 1.05rem;
    color: #5a6b7e;
    line-height: 1.7;
}

section {
    padding: 100px 0;
}

/* COUNTER BAR */
.counter-bar {
    background: linear-gradient(135deg, var(--clr-teal-dark), var(--clr-teal));
    padding: 60px 0;
}

.counter-value {
    font-family: var(--ff-display);
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ABOUT STRIP */
.about-strip {
    background: var(--clr-mist);
    padding: 80px 0;
    border-top: 1px solid rgba(0, 119, 168, 0.1);
    border-bottom: 1px solid rgba(0, 119, 168, 0.1);
}

.about-img-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.about-img-stack {
    position: relative;
}

.about-badge-exp {
    position: absolute;
    top: 24px;
    left: -20px;
    background: var(--clr-teal);
    color: white;
    border-radius: 14px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 180, 216, 0.4);
}

.about-badge-exp .num {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-exp .lbl {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.9;
}

.feature-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.check-icon {
    width: 22px;
    height: 22px;
    background: var(--clr-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-check p {
    font-size: 0.95rem;
    color: var(--clr-slate);
    line-height: 1.5;
    margin: 0;
}

.feature-check strong {
    color: var(--clr-deep);
}

/* WHY SECTION */
.why-section {
    background: var(--clr-deep);
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-teal), var(--clr-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.why-card:hover {
    background: rgba(0, 180, 216, 0.07);
    border-color: rgba(0, 180, 216, 0.35);
    transform: translateY(-4px);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: var(--clr-teal-glow);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-teal);
    margin-bottom: 20px;
}

.why-card h4 {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.why-stat {
    display: flex;
    gap: 6px;
    margin: 8px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.why-stat i {
    color: var(--clr-teal);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* SERVICES */
.services-section {
    background: white;
}

.service-card {
    background: white;
    border: 1px solid #e2eaf2;
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--clr-teal);
    box-shadow: 0 12px 40px rgba(0, 180, 216, 0.12);
    transform: translateY(-4px);
}

.service-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(0, 119, 168, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--clr-teal-dark);
    margin-bottom: 20px;
}

.service-card h4 {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-deep);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: #6b7b8e;
    line-height: 1.6;
    margin: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-teal-dark);
    text-decoration: none;
    margin-top: 16px;
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 10px;
    color: var(--clr-teal);
}

/* INDUSTRIES */
.industries-section {
    background: var(--clr-mist);
}

.industry-item {
    background: white;
    border: 1px solid #e2eaf2;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.25s;
}

.industry-item:hover {
    border-color: var(--clr-teal);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.1);
    transform: translateX(4px);
}

.industry-num {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: rgba(0, 180, 216, 0.2);
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
}

.industry-item h5 {
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-deep);
    margin-bottom: 6px;
}

.industry-item p {
    font-size: 0.85rem;
    color: #6b7b8e;
    margin: 0;
    line-height: 1.5;
}

/* TESTIMONIALS */
.testimonials-section {
    background: white;
}

.testimonial-card {
    background: var(--clr-mist);
    border: 1px solid #e2eaf2;
    border-radius: 16px;
    padding: 36px 30px;
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--clr-teal);
    opacity: 0.25;
    line-height: 1;
}

.testimonial-stars {
    color: var(--clr-teal-dark);
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.97rem;
    color: var(--clr-slate);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--clr-teal), var(--clr-teal-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-author-info .name {
    font-weight: 700;
    color: var(--clr-deep);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-author-info .role {
    font-size: 0.8rem;
    color: #8a9bb0;
    margin: 0;
}

/* CTA */
.cta-section {
    background: var(--clr-deep);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
}

/* FOOTER */
footer {
    background: #050e1c;
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 180, 216, 0.1);
}

.footer-brand-name {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
}

.footer-brand-name em {
    color: var(--clr-teal);
    font-style: normal;
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.2s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--clr-teal);
    color: white;
    border-color: var(--clr-teal);
}

.footer-heading {
    font-family: var(--ff-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--clr-teal);
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.88rem;
}

.footer-contact-item i {
    color: var(--clr-teal);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    margin-top: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    margin: 0;
}

/* SCROLL TO TOP */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--clr-teal);
    color: var(--clr-deep);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 180, 216, 0.4);
    z-index: 999;
}

#scrollTop.visible {
    opacity: 1;
    pointer-events: auto;
}

#scrollTop:hover {
    background: var(--clr-accent);
    transform: translateY(-2px);
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* PRODUCT/SERVICE PAGE SPECIFICS */
.product-card {
    background: white;
    border: 1px solid #e2eaf2;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.product-card:hover {
    border-color: var(--clr-teal);
    box-shadow: 0 16px 50px rgba(0, 180, 216, 0.12);
    transform: translateY(-4px);
}

.product-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card-body {
    padding: 28px 24px;
}

.product-card-body h4 {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-deep);
    margin-bottom: 10px;
}

.product-card-body p {
    font-size: 0.88rem;
    color: #6b7b8e;
    line-height: 1.6;
    margin: 0;
}

.product-tag {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    color: var(--clr-teal-dark);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

/* TEAM */
.team-card {
    background: white;
    border: 1px solid #e2eaf2;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    border-color: var(--clr-teal);
    box-shadow: 0 12px 40px rgba(0, 180, 216, 0.1);
    transform: translateY(-4px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--clr-teal), var(--clr-teal-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 16px;
}

.team-card h5 {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-deep);
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 0.85rem;
    color: var(--clr-teal-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.85rem;
    color: #6b7b8e;
    line-height: 1.6;
    margin: 0;
}

/* CONTACT FORM */
.contact-form-wrap {
    background: white;
    border: 1px solid #e2eaf2;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.05);
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-deep);
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border: 1px solid #dce5ef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: all 0.2s;
    color: var(--clr-deep);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--clr-teal);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
    outline: none;
}

.contact-info-card {
    background: var(--clr-deep);
    border-radius: 20px;
    padding: 40px 36px;
    color: white;
    height: 100%;
}

.contact-info-card h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.contact-info-card .subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-teal);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-item .detail-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
}

.contact-info-item .detail-val {
    font-size: 0.92rem;
    color: white;
    font-weight: 500;
    margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .hero-stats {
        gap: 24px;
    }

    .about-img-accent {
        display: none;
    }

    .about-badge-exp {
        left: 0;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .contact-form-wrap {
        padding: 32px 20px;
    }

    .page-hero {
        padding: 120px 0 60px;
    }
}

/* //new css  */



/* =====================================================
   MISSING / SUBPAGE STYLES — appended supplement
   Covers: about, services, products, contact pages
   ===================================================== */

/* ── Utility helpers ── */
.text-white-75 {
    color: rgba(255, 255, 255, .75) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, .50) !important;
}

.text-accent {
    color: var(--clr-teal) !important;
}

.rounded-lg {
    border-radius: 16px !important;
}

.section-pad {
    padding: 100px 0;
}

/* navbar-scrolled alias (main.js adds .navbar-scrolled) */
.navbar-scrolled {
    padding: 10px 0 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .3) !important;
}

/* ── Background utilities ── */
.bg-dark-brand {
    background: var(--clr-deep);
}

.bg-light-subtle {
    background: var(--clr-mist);
}

.bg-accent-gradient {
    background: linear-gradient(135deg, var(--clr-teal-dark) 0%, var(--clr-teal) 100%);
}

/* ── Eyebrow variants ── */
.eyebrow-light {
    color: var(--clr-teal) !important;
}

/* ── Breadcrumb ── */
.breadcrumb-custom {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, .45);
}

.breadcrumb-custom li+li::before {
    content: '/';
    margin-right: 8px;
    opacity: .5;
}

.breadcrumb-custom a {
    color: var(--clr-teal);
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    color: #fff;
}

.breadcrumb-custom .active {
    color: rgba(255, 255, 255, .55);
}

/* ── Page hero sub-text ── */
.page-hero-sub {
    color: rgba(255, 255, 255, .68);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
}

.title-gradient {
    background: linear-gradient(135deg, var(--clr-teal), var(--clr-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section body text ── */
.section-body {
    font-size: 1rem;
    color: #5a6b7e;
    line-height: 1.75;
}

/* ── Buttons — subpage variants ── */
.btn-accent {
    background: var(--clr-teal);
    color: var(--clr-deep);
    font-weight: 700;
    border: none;
    border-radius: 10px;
    transition: all .25s;
    box-shadow: 0 4px 20px rgba(0, 180, 216, .35);
}

.btn-accent:hover {
    background: var(--clr-accent);
    color: var(--clr-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, .5);
}

.btn-outline-dark-brand {
    border: 1.5px solid rgba(0, 180, 216, .45);
    color: var(--clr-teal);
    background: transparent;
    font-weight: 600;
    border-radius: 10px;
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
}

.btn-outline-dark-brand:hover {
    background: var(--clr-teal);
    color: var(--clr-deep);
    border-color: var(--clr-teal);
}

.btn-white-cta {
    background: #fff;
    color: var(--clr-teal-dark);
    font-weight: 700;
    border-radius: 10px;
    border: none;
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-white-cta:hover {
    background: var(--clr-mist);
    transform: translateY(-2px);
}

.btn-outline-white-cta {
    border: 2px solid rgba(255, 255, 255, .5);
    color: #fff;
    background: transparent;
    font-weight: 600;
    border-radius: 10px;
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-white-cta:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

/* ── About page — image wrap ── */
.about-img-wrap {
    position: relative;
}

.about-img-wrap .main-img {
    border-radius: 16px;
}

/* ── Stats section (about page) ── */
.stats-section {
    background: var(--clr-deep);
}

.counter-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(0, 180, 216, .2);
    border-radius: 16px;
    padding: 36px 24px;
    color: white;
    transition: all .3s;
}

.counter-card:hover {
    background: rgba(0, 180, 216, .08);
    border-color: rgba(0, 180, 216, .4);
    transform: translateY(-4px);
}

.counter-card-accent {
    background: rgba(0, 180, 216, .12) !important;
    border-color: rgba(0, 180, 216, .4) !important;
}

.counter-num {
    font-family: var(--ff-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--clr-teal);
    line-height: 1;
    margin-bottom: 10px;
}

.counter-label {
    font-family: var(--ff-display);
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.counter-sub {
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.5;
}

/* ── What sets us apart (about) ── */
.apart-card {
    background: #fff;
    border: 1px solid #e2eaf2;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all .3s;
}

.apart-card:hover {
    border-color: var(--clr-teal);
    box-shadow: 0 12px 40px rgba(0, 180, 216, .1);
    transform: translateY(-4px);
}

.apart-icon {
    color: var(--clr-teal);
}

.apart-title {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-deep);
}

.apart-body {
    font-size: .9rem;
    color: #6b7b8e;
    line-height: 1.65;
    margin: 0;
}

/* ── Team (about page) ── */
.team-card {
    background: #fff;
    border: 1px solid #e2eaf2;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all .3s;
}

.team-card:hover {
    border-color: var(--clr-teal);
    box-shadow: 0 12px 40px rgba(0, 180, 216, .1);
    transform: translateY(-4px);
}

.team-avatar-wrap {
    display: flex;
    justify-content: center;
}

.team-avatar {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--clr-teal), var(--clr-teal-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
}

.team-name {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-deep);
}

.team-role {
    font-size: .85rem;
    color: var(--clr-teal-dark);
    font-weight: 600;
}

.team-bio {
    font-size: .88rem;
    color: #6b7b8e;
    line-height: 1.65;
}

.team-social {
    width: 36px;
    height: 36px;
    border: 1.5px solid #dce5ef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7b8e;
    text-decoration: none;
    font-size: .9rem;
    transition: all .2s;
}

.team-social:hover {
    background: var(--clr-teal);
    border-color: var(--clr-teal);
    color: #fff;
}

/* ── CTA Band (shared across pages) ── */
.cta-band {
    background: linear-gradient(135deg, var(--clr-teal-dark), var(--clr-teal));
}

.cta-title {
    /* font-family: var(--ff-display); */
    font-family: serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
}

.cta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .8);
}

/* ── Services page detail cards ── */
.svc-detail-card {
    background: #fff;
    border: 1px solid #e2eaf2;
    border-radius: 16px;
    padding: 36px 30px;
    transition: all .3s;
}

.svc-detail-card:hover {
    border-color: var(--clr-teal);
    box-shadow: 0 12px 40px rgba(0, 180, 216, .1);
    transform: translateY(-4px);
}

.svc-icon-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.svc-icon-lg {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 180, 216, .1), rgba(0, 119, 168, .15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-teal-dark);
}

.svc-number {
    font-family: var(--ff-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 180, 216, .12);
    line-height: 1;
}

.svc-title {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-deep);
}

.svc-body {
    font-size: .92rem;
    color: #5a6b7e;
    line-height: 1.7;
}

.svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-list li {
    font-size: .9rem;
    color: #5a6b7e;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

/* ── Process timeline (services page) ── */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px 0;
}

.process-step-num {
    font-family: var(--ff-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-teal);
    line-height: 1;
    min-width: 60px;
    text-align: right;
    flex-shrink: 0;
}

.process-step-content {
    flex: 1;
}

.process-title {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.process-body {
    font-size: .9rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
    margin: 0;
}

.process-connector {
    width: 2px;
    height: 28px;
    background: rgba(0, 180, 216, .25);
    margin-left: 51px;
}

/* ── Result pills (services page) ── */
.result-pill {
    background: #fff;
    border: 1.5px solid #e2eaf2;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color .2s;
}

.result-pill:hover {
    border-color: var(--clr-teal);
}

.result-num {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-teal-dark);
    line-height: 1;
}

.result-desc {
    font-size: .8rem;
    color: #6b7b8e;
    text-transform: uppercase;
    letter-spacing: .6px;
}

/* ── Products page ── */
.product-tabs-bar {
    background: #fff;
    border-bottom: 1px solid #e2eaf2;
    z-index: 100;
}

.sticky-top-below-nav {
    position: sticky;
    top: 72px;
    z-index: 100;
}

.prod-tab-btn {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 600;
    color: #5a6b7e;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all .2s;
}

.prod-tab-btn:hover {
    color: var(--clr-teal-dark);
    background: rgba(0, 180, 216, .07);
}

.prod-tab-btn.active {
    color: var(--clr-teal-dark);
    border-color: var(--clr-teal);
    background: rgba(0, 180, 216, .08);
}

/* Product cards */
.prod-card {
    background: #fff;
    border: 1px solid #e2eaf2;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s;
}

.prod-card:hover {
    border-color: var(--clr-teal);
    box-shadow: 0 16px 50px rgba(0, 180, 216, .12);
    transform: translateY(-4px);
}

.prod-img-wrap {
    background: var(--clr-mist);
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.prod-card:hover .prod-img {
    transform: scale(1.04);
}

.prod-body {
    padding: 24px 22px;
}

.prod-badge {
    display: inline-block;
    background: rgba(0, 180, 216, .1);
    color: var(--clr-teal-dark);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.prod-badge-accent {
    background: rgba(0, 119, 168, .12);
    color: var(--clr-teal-dark);
}

.prod-badge-green {
    background: rgba(0, 188, 140, .1);
    color: #007a5a;
}

.prod-name {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-deep);
}

.prod-desc {
    font-size: .88rem;
    color: #6b7b8e;
    line-height: 1.6;
    margin: 0;
}

.prod-specs {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.prod-specs span {
    font-size: .78rem;
    color: var(--clr-teal-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Size table card */
.prod-card-sizes {
    background: var(--clr-deep);
    border-color: rgba(0, 180, 216, .25);
    padding: 28px;
}

.prod-card-sizes .prod-name {
    color: #fff;
}

.size-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.size-row {
    display: flex;
    justify-content: space-between;
    font-size: .88rem;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .75);
    border: 1px solid rgba(0, 180, 216, .12);
}

/* Filter icon placeholder */
.filter-img-wrap {
    background: linear-gradient(135deg, rgba(0, 180, 216, .07), rgba(0, 119, 168, .1));
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-icon-placeholder {
    font-size: 3rem;
    color: var(--clr-teal);
    opacity: .6;
}

/* Additional product cards (dark) */
.addl-prod-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(0, 180, 216, .2);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all .3s;
}

.addl-prod-card:hover {
    background: rgba(0, 180, 216, .07);
    border-color: rgba(0, 180, 216, .4);
    transform: translateY(-4px);
}

.addl-icon {
    color: var(--clr-teal);
}

.addl-title {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.addl-body {
    font-size: .9rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
}

.addl-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.addl-list span {
    font-size: .88rem;
    color: rgba(255, 255, 255, .65);
    display: flex;
    align-items: center;
}

/* Catalog CTA section */
.catalog-cta-section {
    background: linear-gradient(135deg, var(--clr-teal-dark), var(--clr-teal));
}

.text-white-75 {
    color: rgba(255, 255, 255, .75) !important;
}

/* ── Contact page ── */
.contact-info-link {
    color: var(--clr-teal);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-link:hover {
    text-decoration: underline;
}

.ef-input {
    border: 1.5px solid #dce5ef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: .92rem;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
    color: var(--clr-deep);
}

.ef-input:focus {
    border-color: var(--clr-teal);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, .12);
    outline: none;
}

.ef-checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    background: #f5f8fa;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    padding: 6px 14px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

.ef-checkbox-label:has(input:checked) {
    border-color: var(--clr-teal);
    background: rgba(0, 180, 216, .07);
}

.ef-checkbox-label input {
    accent-color: var(--clr-teal);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border: 1.5px solid #e8ecf0;
    border-radius: 12px;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
}

.contact-info-card:hover {
    border-color: var(--clr-teal);
    box-shadow: 0 4px 20px rgba(0, 180, 216, .1);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(0, 180, 216, .1);
    color: var(--clr-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-info-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #8896a3;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: .95rem;
    color: #1a2b3c;
    font-weight: 500;
}

.map-wrap {
    border-radius: 16px;
    overflow: hidden;
}

.process-step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-teal), var(--clr-teal-dark));
    color: #fff;
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0, 180, 216, .25);
}

/* ── Responsive fixes ── */
@media (max-width: 991px) {
    .section-pad {
        padding: 70px 0;
    }

    .process-connector {
        margin-left: 30px;
    }
}

@media (max-width: 575px) {
    .contact-form-wrap {
        padding: 24px 18px;
    }

    .prod-img-wrap {
        height: 180px;
    }

    .counter-num {
        font-size: 2.2rem;
    }
}