/*!
Theme Name: cleanstep
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cleanstep
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

cleanstep is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
        - Normalize
        - Box sizing
# Base
        - Typography
        - Elements
        - Links
        - Forms
## Layouts
# Components
        - Navigation
        - Posts and pages
        - Comments
        - Widgets
        - Media
        - Captions
        - Galleries
# plugins
        - Jetpack infinite scroll
# Utilities
        - Accessibility
        - Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
         ========================================================================== */


/* ============================================================
   CLINISMS — FUTURISTIC REDESIGN v2
   Fonts: Futura PT (local)
   Brand: #00adef (blue), navy base, glassmorphism
   ============================================================ */

/* ---- FUTURA PT LOCAL FONTS ---- */
@font-face {
    font-family: 'FuturaPT';
    src: url('assets/fonts/FuturaPT-Medium.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('assets/fonts/FuturaPT-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;

    font-display: swap;
}

/* ---- TOKENS ---- */
:root {
    --navy-950: #020c1b;
    --navy-900: #061220;
    --navy-800: #0a1a30;
    --navy-700: #0e2240;
    --navy-600: #132a50;
    --navy-mid: #04111f;
    /* extra-dark mid section */

    --brand: #00adef;
    --brand-dim: #0090cc;
    --brand-glow: rgba(0, 173, 239, 0.16);
    --brand-border: rgba(0, 173, 239, 0.22);

    --white: #ffffff;
    --off-white: #deeeff;
    --muted: rgba(222, 238, 255, 0.55);
    --border: rgba(0, 173, 239, 0.15);

    --font-display: 'FuturaPT', 'Futura', 'Century Gothic', sans-serif;
    --font-body: 'FuturaPT', 'Futura', 'Century Gothic', sans-serif;

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-pill: 999px;

    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 6px 40px rgba(0, 0, 0, 0.55);
    --glow: 0 0 36px rgba(0, 173, 239, 0.28);
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);

    color: var(--off-white);
    overflow-x: hidden;
    line-height: 1.65;
}

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

ul {
    list-style: none;
}

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

.txt-center {
    text-align: center;
}

em{
    font-style: normal !important;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    background: #01adef;
    border-bottom: 1px solid var(--border);
    font-size: 0.78rem;
    z-index: 200;
    position: relative;
    display: none;
}

.topbar-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 8px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-contact,
.topbar-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    flex-wrap: wrap;
}

.topbar-contact i,
.topbar-email i {
    color: #ffffff;
    font-size: 0.85rem;
}

.topbar-contact a,
.topbar-email a {
    color: white;
    transition: color var(--transition);
}

.topbar-contact a:hover,
.topbar-email a:hover {
    color: var(--brand);
}

.topbar-contact .sep {
    color: var(--border);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 20px;
    position: relative;
    /* needed for mobile dropdown stacking */
}

.nav-brand img {
    height: 75px;
    width: auto;
    object-fit: contain;
    margin-top: -6px;
}





/* ---- Nav Links ---- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links li {
    position: relative;
}

.nav-links li>a {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgb(0 0 0);
    padding: 8px 13px;
    border-radius: var(--r-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}



.nav-links li>a:hover,
.nav-links li.active>a {
    background: rgba(0, 173, 239, 0.08);
    color: #00adef;
}

.nav-links li.active>a {
    color: var(--brand);
}

/* CTA pill */
.nav-links li:last-child > a {
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: var(--r-pill);
}

.nav-links li:last-child > a:hover {
    background: var(--brand-dim);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(0, 173, 239, 0.4);
}

/* ---- Dropdown fix: invisible bridge prevents gap-disappear ---- */
.has-dropdown {
    position: relative;
}

/* The bridge sits between nav link and menu so mouse doesn't "leave" */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    /* covers the gap */
    background: transparent;
    display: none;
}

.has-dropdown:hover::after {
    display: block;
}

.has-dropdown .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 10px);
    /* same as bridge height */
    left: 0;
    background: var(--navy-800);
    border: 1px solid var(--brand-border);
    border-radius: var(--r-md);
    min-width: 270px;
    padding: 8px 0;
    box-shadow: var(--shadow);
    z-index: 9000;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.has-dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.has-dropdown .dropdown-menu li a {
    padding: 11px 22px;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    border-radius: 0;
    display: block;
    color: var(--muted);
    background: none;
    transition: color var(--transition), background var(--transition), padding var(--transition);
}

.has-dropdown .dropdown-menu li a:hover {
    color: var(--brand);
    background: var(--brand-glow);
    padding-left: 28px;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #141414;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* ============================================================
   HERO / BANNER
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center; /* was: flex-end — this caused content to sit at the very bottom */
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--navy-900);
    transition: transform 9s ease;
}

.hero-slide.active .hero-bg {
    transform: scale(1.06);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        rgba(2, 12, 27, 0.92) 0%,
        rgba(2, 12, 27, 0.62) 55%,
        rgba(2, 12, 27, 0.22) 100%);
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 70px 64px;
    z-index: 3;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease 0.4s, transform 0.9s ease 0.4s;
}



.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(0, 173, 239, 0.1);
    border: 1px solid rgba(0, 173, 239, 0.3);
    padding: 5px 16px;
    border-radius: var(--r-pill);
    margin-bottom: 22px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--brand);
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6; /* was: "normal" — inconsistent across browsers */
    color: rgb(222 238 255);
    max-width: 480px;
    margin-bottom: 34px;

}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    padding: 13px 30px;
    border-radius: var(--r-pill);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--brand-dim);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 173, 239, 0.4);
}

.btn-primary.large {
    font-size: 0.95rem;
    padding: 15px 36px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--off-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    padding: 12px 26px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: border-color var(--transition), color var(--transition), background var(--transition);
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-glow);
}

/* Hero nav */
.hero-nav {
    position: absolute;
    bottom: 50%; /* was: 100px — reduced to sit just above scroll cue zone */
    right: 64px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-prev,
.hero-next {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: rgba(2, 12, 27, 0.65);
    color: var(--off-white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.hero-prev:hover,
.hero-next:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-glow);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.dot.active {
    background: var(--brand);
    transform: scale(1.35);
}

/* Progress bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 10;
}

.hero-progress-bar {
    height: 100%;
    background: var(--brand);
    width: 0%;
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 28px; /* was: 44px */
    left: 50%; /* was: left: 0 + right: 0 which conflicted */
    transform: translateX(-50%); /* centers it properly */
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color var(--transition);
    animation: scrollBounce 2.2s ease-in-out infinite;
}

.scroll-cue:hover {
    color: var(--brand);
}

.scroll-cue i {
    font-size: 1rem;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50%       {
        transform: translateX(-50%) translateY(7px);
    }
    /* translateX(-50%) must be kept in both keyframe states */
}
/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
    background: var(--navy-800);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 5;
}

.stats-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 36px 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 44px;
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--brand);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

.stat-label {
    font-size: 0.72rem;
    color: white;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 6px;
}

.stat-divider {
    width: 1px;
    height: 52px;
    background: var(--border);
}

/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
.section-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 96px 28px;
}

.section-eyebrow {
    font-size: 16PX;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
    display: block;
}

.section-eyebrow.light {
    color: rgba(0, 173, 239, 0.75);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.18;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: white;
    max-width: 560px;
    line-height: 1.72;
}

.section-body {
    font-size: 16PX;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 16px;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

/* Fade-up */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.18s;
}

.fade-up:nth-child(4) {
    transition-delay: 0.26s;
}

.fade-up:nth-child(5) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(6) {
    transition-delay: 0.18s;
}

/* ============================================================
   ABOUT SECTION  (light navy)
   ============================================================ */
.about-section {
    background: #ffffff;
}

.about-section .section-title {
    color: #161616;
}

.about-section .wp-block-paragraph {
    color: #161616;
    FONT-SIZE: 16PX;
    text-align: justify;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--r-lg);
    overflow: visible;
}

.about-img-wrap img {
    width: 100%;

    object-fit: cover;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    display: block;
}

.about-img-placeholder {
    display: none;
    width: 100%;
    height: 480px;
    background: var(--navy-800);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--brand);
}

.about-badge {
    position: absolute;
    bottom: -21px;
    right: -10px;
    background: var(--brand);
    color: var(--white);
    border-radius: var(--r-md);
    padding: 16px 22px;
    text-align: center;
    box-shadow: var(--glow);
}



.badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.badge-txt {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 32px;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-glow);
    border: 1px solid var(--brand-border);
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 7px 16px;
    border-radius: var(--r-pill);
}

/* ============================================================
   SERVICES SECTION  (slightly lighter navy)
   ============================================================ */
.services-section {
    background: #00adef;
}

.services-section .section-eyebrow {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #ffffff;
    border: 1px solid rgb(10 26 48 / 0%);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    will-change: transform;
    transition:
        border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}



.service-card:hover {
    border-color: var(--brand);
    transform: translateY(-6px) scale(1.015);
    background-color: #fdfdff;
    box-shadow:
        0 6px 16px rgba(10, 26, 48, 0.06),
        0 20px 48px rgba(0, 173, 239, 0.16);
}




.service-icon {
    width: 52px;
    height: 52px;
    background: var(--brand-glow);
    border: 1px solid var(--brand-border);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--brand);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: #0b0b0b;
    margin-bottom: 10px;
    line-height: 1.32;
    letter-spacing: 0.02em;
}

.service-card p {
    font-size: 16PX;
    color: #1d1d1d;
    line-height: 1.68;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.service-link:hover {
    gap: 11px;
}

/* ============================================================
   DARK MID SECTION — WHY CHOOSE US
   Extra-dark panel between service cards and process
   ============================================================ */
.why-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-section .section-title {
    color: #161616;
}

.why-section .wp-block-paragraph {
    color: #161616;
}

.why-section img {
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Subtle dot-grid texture */
.why-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 173, 239, 0.08) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

/* Ambient corner glow */
.why-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(0, 173, 239, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(0, 173, 239, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.why-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--brand-glow);
    border: 1px solid var(--brand-border);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 1.1rem;
}

.why-item h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: #04101d;
    margin-bottom: 5px;
    letter-spacing: 0.02em;
}



.why-item p {
    font-size: 15PX;
    color: #04101d;
    line-height: 1.68;
}



/* Orb */
.why-orb-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
}

.why-orb {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 173, 239, 0.22);
    animation: orbSpin 14s linear infinite;
}

.orb-ring.r1 {
    width: 220px;
    height: 220px;
}

.orb-ring.r2 {
    width: 308px;
    height: 308px;
    animation-duration: 22s;
    animation-direction: reverse;
    border-color: rgba(0, 173, 239, 0.1);
}

.orb-ring.r3 {
    width: 390px;
    height: 390px;
    animation-duration: 30s;
    border-color: rgba(0, 173, 239, 0.05);
}

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

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

.orb-center {
    position: relative;
    z-index: 2;
    background: var(--navy-800);
    border: 1px solid var(--brand-border);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 7px;
    box-shadow: 0 0 50px rgba(0, 173, 239, 0.18);
}

.orb-center i {
    font-size: 1.8rem;
    color: var(--brand);
}

.orb-center span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

.why-pill {
    position: absolute;
    background: rgba(10, 26, 48, 0.92);
    border: 1px solid var(--brand-border);
    color: var(--off-white);
    font-size: 0.77rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

.why-pill i {
    color: var(--brand);
}

.why-pill.p1 {
    top: 40px;
    left: 8%;
}

.why-pill.p2 {
    top: 40px;
    right: 4%;
}

.why-pill.p3 {
    bottom: 60px;
    left: 12%;
}
/* ============================================================
   PROCESS SECTION  (navy-900)
   ============================================================ */
.process-section {
    background: #00adef;
}
.process-section .section-eyebrow {
    color: white;
}
.process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-line {
    position: absolute;
    top: 44px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, #ffffff, #ffffff, #ffffff);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 32px 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}
.process-step:hover {
    transform: translateY(-6px);
    border-color: var(--brand);
    box-shadow: 0 12px 32px rgba(0, 173, 239, 0.16);
}

.pstep-num {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    color: rgb(0 173 239);
    letter-spacing: 0.14em;
    margin-bottom: 12px;
    transition: letter-spacing var(--transition);
}
.process-step:hover .pstep-num {
    letter-spacing: 0.2em;
}

.pstep-icon {
    width: 56px;
    height: 56px;
    background: var(--brand-glow);
    border: 1px solid var(--brand-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--brand);
    transition: transform var(--transition), background var(--transition);
}
.process-step:hover .pstep-icon {
    transform: scale(1.08);
    background: var(--brand);
    color: #ffffff;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: #303030;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    transition: color var(--transition);
}
.process-step:hover h3 {
    color: var(--brand);
}

.process-step p {
    font-size: 16px;
    color: #2b2b2b;
    line-height: 1.68;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section {
    background: #ffffff;
}


.industries-section .section-title {
    color: #161616;

}

.industries-section .section-subtitle {
    color: #161616;

}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.ind-img-wrap {
    position: relative;
    width: 100%;

    overflow: hidden;
}

.ind-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.industry-card:hover .ind-img-wrap img {
    transform: scale(1.05);
}

.ind-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgb(255 255 255);
    padding: 3px 10px;
    border-radius: 4px;
    display: none;
}

.ind-body {
    padding: 18px 20px 22px;
}

.ind-body h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-900, #0a1628);
    margin: 0 0 8px;
}



.ind-body p {

    color: #202020;
    line-height: 1.6;
    margin: 0;

    display: none;
}

/* Responsive */
@media (max-width: 900px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-section {
    background: #00adef;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cta-section .section-eyebrow {
    color: white;
}

.cta-section .btn-primary {

    border: 1px solid white;

}

.cta-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 100px 28px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 173, 239, 0.11) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.01em;
    line-height: 1.18;
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 0.97rem;
    color: white;
    margin-bottom: 38px;
    line-height: 1.72;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section {
    background: #000000;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 64px 28px 32px;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border: 1px solid rgb(0 173 239 / 62%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(222 238 255);
    font-size: 0.9rem;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer-social a:hover {
    color: var(--brand);
    border-color: var(--brand);
    background: var(--brand-glow);
}

.footer-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 40px;
}

.footer-main-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 16px;
    color: white;
    line-height: 1.78;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 15px;
    color: white;
    transition: color var(--transition), padding var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.02em;
}

.footer-col ul li a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--brand);
    border-radius: 50%;
    opacity: 0;
    flex-shrink: 0;
    transition: opacity var(--transition);
}

.footer-col ul li a:hover {
    color: var(--brand);
}

.footer-col ul li a:hover::before {
    opacity: 1;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--brand);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item p,
.contact-item a {

    color: white;
    line-height: 1.68;
}

.contact-item a:hover {
    color: var(--brand);
}

.footer-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-strip p {

    color: rgb(255, 255, 255);
    letter-spacing: 0.02em;
}

.footer-strip a {
    color: var(--brand);
    font-weight: 600;
}

.footer-strip a:hover {
    text-decoration: underline;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: #0a1a30;
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
    z-index: 600;
    box-shadow: 0 4px 20px rgba(0, 173, 239, 0.32);
}

.scroll-top.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--brand-dim);
    box-shadow: 0 8px 30px rgba(0, 173, 239, 0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-orb-wrap {
        height: 300px;
    }

    .footer-main-row {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .process-line {
        display: none;
    }
}

@media (max-width: 768px) {

    /* ---- Mobile nav ---- */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: rgba(2, 12, 27, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 20px 24px;
        border-bottom: 1px solid var(--border);
        gap: 0;
        z-index: 999;
        backdrop-filter: blur(20px);
    }

    .topbar {
        display: none;
    }

    .navbar {
        position: relative !important;
    }

    .nav-links.open {
        display: flex;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li>a {
        width: 100%;
        color: white;
    }

    .has-dropdown:hover .dropdown-menu {
        opacity: 0;

    }

    /* Mobile dropdown — toggle via .open class added by JS */
    .has-dropdown::after {
        display: none !important;
    }

    .has-dropdown .dropdown-menu {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        position: static;
        top: auto;
        left: auto;
        box-shadow: none;
        border: none;
        background: rgba(0, 173, 239, 0.06);
        border-radius: var(--r-sm);
        margin-top: 0px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
    }

    .has-dropdown.open .dropdown-menu {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        max-height: 500px;
    }

    .hero-content {
        padding: 0 24px;
        bottom: -7%;
    }

    .hero-nav {
        /* right: 0; */
        bottom: 36px;
        left: 28%;
        text-align: center;
    }

    .scroll-cue {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-inner {
        flex-direction: column;
    }

    .stat-item {
        padding: 14px 24px;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-main-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-track {
        grid-template-columns: 1fr;
    }

    .topbar-inner {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .about-img-wrap img,
    .about-img-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .section-inner {
        padding: 64px 16px;
    }

    .industries-grid {
        display: block;
    }

    .industry-card {

        margin-bottom: 20px;
    }



    .hero-content h1 {
        font-size: 1.7rem;
    }

    .footer-top-row {
        flex-direction: column;
        align-items: center;
    }

    .footer-strip {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero {

        height: 80vh;
        min-height: 550px;

    }


}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.clients-section {
    background: #ffffff;
    border-top: 1px solid #e8ecf0;
    border-bottom: 1px solid #e8ecf0;
}

.clients-section .section-title {
    color: #161616;
}

.clients-section .section-subtitle {
    color: #1d1d1d;
}

.clients-section .section-eyebrow {
    color: var(--brand);
}

.clients-track-wrap {
    overflow: hidden;
    position: relative;
    margin-bottom: 48px;
}

.clients-track-wrap::before,
.clients-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.clients-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.clients-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.clients-track {
    display: flex;
    gap: 20px;
    animation: clientsScroll 28s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes clientsScroll {
    from {
        transform: translateX(0);
    }

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

.client-logo {
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: var(--r-lg);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 90px;
    flex-shrink: 0;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.client-logo:hover {
    border-color: var(--brand-border);
    box-shadow: 0 6px 24px rgba(0, 173, 239, 0.1);
}

.client-logo img {

    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;

    opacity: 0.6;
    transition: filter var(--transition), opacity var(--transition);
}

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

.clients-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid #e8ecf0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #232323;
    text-transform: uppercase;
}

.trust-item i {
    color: var(--brand);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .clients-trust {
        gap: 20px;
    }
    .containerWrapper{
        padding: 0px 15px;
    }
    .trust-item {
        font-size: 0.72rem;
    }

    .innerBannerSection .head {

        top: 100px !important;
    }

    .innerBannerSection {

        height: 250px !important;

    }
}



/* InnerPage  */
.innerPageSection{
    padding: 0px 0 0 0;
    position: relative;
}

.innerBannerSection {
    width: 100%;
    position: relative;
    height: 300px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}


.innerBannerSection:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 30%);
}
.innerbanner{
    height: 368px;
    background-size: cover;
}
.innerBannerSection h1{
    font-size: 32px !important;
    letter-spacing: 2px;
    color:#fff;
    font-weight: bold;
}
.innerBannerSection .head {
    position: absolute;
    top: 150px;
}
.innerBannerSection .head h3{
    color: #ff7700;
    font-size: 30px;
}
.innerBannerSection .innerBannerImg{
    background-size: cover !important;
    height: 100%;
    /*    background-attachment: fixed !important;*/
    position: relative;
}
.innerBannerSection .innerBannerImg:before{
    position: absolute;
    content:'';
    top:0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,.3);
}
.InnerBannerHeading{
    position: absolute;
    top: -60px;
    color: #fff;
}
.InnerBannerHeading h1{
    font-size: 36px !important;
}
.breadcrumb span {
    font-weight: normal;
    color: #fff;
}
.breadcrumb span a {
    font-weight: normal;
    color: #fff;
}
.breadcrumb {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    background:#01adef;
    color: #000;
    margin-bottom: 0px;
    border-radius: 0;
    border-bottom: solid 1px #ccc;
    padding: 5px 10px;
}
.breadcrumb_last{
    font-weight: 600 !important;
}

.table a{
    color: blue;
}
.table a:hover{
    color:#ffcc2a ;
}
/*innerPageSection */


.elementor-slideshow__title {

    display: none !important;
}

.containerWrapper{
    padding: 0px 30px;
}

/*popup css*/


#cs-rebrand-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 28, 0.55);
    backdrop-filter: blur(3px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
#cs-rebrand-overlay.cs-visible {
    opacity: 1;
    pointer-events: auto;
}

#cs-rebrand-card {
    position: relative;
    width: min(92vw, 560px);
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(10, 20, 28, 0.35);
    overflow: hidden;
    transform: translateY(24px) scale(0.97);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
#cs-rebrand-overlay.cs-visible #cs-rebrand-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

#cs-rebrand-top {
    background: linear-gradient(135deg, #0A2540 0%, #103a5c 100%);
    padding: 36px 40px 54px;
    position: relative;
    overflow: hidden;
}

#cs-rebrand-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 3;
}
#cs-rebrand-close:hover {
    background: rgba(255,255,255,0.25);
}

.cs-eyebrow {
    color: #7fd4f0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

#cs-rebrand-top h2 {
    color: #ffffff;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0;
    max-width: 265px;
    letter-spacing: -0.01em;
}
#cs-rebrand-top h2 span {
    color: #29c1f0;
}

/* Leaf motif, echoing the logo, growing in on load */
.cs-leaf-wrap {
    position: absolute;
    right: 20px;
    top: 45px;
    width: 200px;
    height: 150px;
    opacity: 1;
}
.cs-leaf-wrap svg {
    width: 100%;
    height: 100%;
}
.cs-leaf-back, .cs-leaf-front {
    transform-origin: 50% 100%;
    transform: scale(0.6);
    opacity: 0;
    animation: cs-grow 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.cs-leaf-back {
    animation-delay: 0.15s;
}
.cs-leaf-front {
    animation-delay: 0.35s;
}
@keyframes cs-grow {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Name transition strip */
#cs-rebrand-namestrip {
    padding: 20px 40px 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.cs-old-name {
    font-size: 13px;
    color: #8a97a3;
    text-decoration: line-through;
    text-decoration-color: #c9d3da;
}
.cs-arrow {
    color: #29c1f0;
    font-size: 14px;
}
.cs-new-name {
    font-size: 13px;
    font-weight: 700;
    color: #0A2540;
}

#cs-rebrand-body {
    padding: 16px 40px 8px;
}
#cs-rebrand-body p {
    margin: 0;
    color: #45525c;
    font-size: 14.5px;
    line-height: 1.65;
}

.cs-reassure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 40px 4px;
}
.cs-reassure-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: #33414c;
    background: #F2FAFD;
    border: 1px solid #DBF0F8;
    border-radius: 10px;
    padding: 10px 12px;
}
.cs-reassure-item svg {
    flex-shrink: 0;
    margin-top: 1px;
}

#cs-rebrand-actions {
    display: flex;
    gap: 12px;
    padding: 26px 40px 32px;
}
#cs-rebrand-actions a {
    flex: 1;
    text-align: center;
    padding: 13px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cs-btn-primary {
    background: #0A2540;
    color: #fff;
}
.cs-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(10,37,64,0.25);
}
.cs-btn-secondary {
    background: #fff;
    color: #0A2540;
    border: 1.5px solid #dfe6eb;
}
.cs-btn-secondary:hover {
    background: #f7fafb;
}

@media (max-width: 480px) {
    #cs-rebrand-top {
        padding: 30px 24px 46px;
    }
    #cs-rebrand-top h2 {
        font-size: 21px;
        max-width: 260px;
    }
    #cs-rebrand-namestrip, #cs-rebrand-body, #cs-rebrand-actions {
        padding-left: 24px;
        padding-right: 24px;
    }
    .cs-reassure-grid {
        grid-template-columns: 1fr;
        margin-left: 24px;
        margin-right: 24px;
    }
    #cs-rebrand-actions {
        flex-direction: column;
    }
    .cs-leaf-wrap {
        width: 110px;
        height: 110px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cs-leaf-back, .cs-leaf-front {
        animation: none;
        opacity: 1;
        transform: scale(1);
    }
    #cs-rebrand-card {
        transition: opacity 0.2s ease;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
    color: var(--brand);
    letter-spacing: 0.01em;
    max-width: 150px;
    border-left: 1px solid rgba(0, 173, 239, 0.25);
    padding-left: 12px;
}

.nav-brand-tagline strong {
    display: block;
    font-weight: 600;
    color: #0a1a30;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-brand-tagline {
        display: none; /* hide on mobile to avoid crowding the toggle button */
    }
}