/* ===== IDYLLIC SERVICES   Premium Corporate Design System ===== */

/* ===== DESIGN TOKENS ===== */
:root {
    --navy: #0c2d48;
    --navy-light: #123e62;
    --teal: #01929e;
    --teal-dark: #017a85;
    --teal-light: #02b5c4;
    --orange: #f15a24;
    --orange-light: #ff7e4d;

    --bg-white: #ffffff;
    --bg-off: #f7f8fc;
    --bg-light: #eef1f7;
    --bg-card: #ffffff;
    --bg-navy: #0c2d48;

    --text-dark: #0f172a;
    --text-body: #3d4f65;
    --text-muted: #7a8ba0;
    --text-white: #ffffff;

    --border: rgba(18, 62, 98, 0.1);
    --border-light: rgba(18, 62, 98, 0.06);

    --shadow-xs: 0 1px 3px rgba(12, 45, 72, 0.04);
    --shadow-sm: 0 2px 8px rgba(12, 45, 72, 0.06);
    --shadow-md: 0 4px 20px rgba(12, 45, 72, 0.08);
    --shadow-lg: 0 12px 40px rgba(12, 45, 72, 0.12);
    --shadow-xl: 0 20px 60px rgba(12, 45, 72, 0.16);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container: 1320px;
    --section-pad: 100px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--navy) var(--bg-light);
}

body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 10px;
}

::selection {
    background: var(--teal);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ===== UTILITIES ===== */
.section-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--teal);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.section-label.center {
    justify-content: center;
}

.label-line {
    width: 32px;
    height: 2px;
    background: var(--teal);
    display: inline-block;
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 50%, var(--orange) 100%);
    background-size: 200% auto;
    background-position: left center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(12, 45, 72, 0.15);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(1, 146, 158, 0.25);
}

.btn-secondary {
    background: rgba(241, 90, 36, 0.04);
    color: var(--orange);
    border: 1px solid rgba(241, 90, 36, 0.1);
    border-radius: 50px;
}

.btn-secondary:hover {
    background: rgba(241, 90, 36, 0.08);
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(241, 90, 36, 0.1);
}

/* Hero Text Colors */
.text-teal {
    color: var(--teal);
}

.text-orange {
    color: var(--orange);
}

.btn-lg {
    padding: 16px 44px;
    font-size: 1rem;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

#preloader.loaded,
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--bg-light);
    border-top-color: var(--teal);
    animation: spin 0.8s linear infinite;
}

.loader-logo-wrapper {
    margin-top: 8px;
}

.loader-logo-img {
    height: 40px;
    width: auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== CURSOR FOLLOWER ===== */
.cursor-follower {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--teal);
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s, transform 0.15s, width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-follower.active {
    opacity: 0.5;
}

.cursor-follower.hover {
    width: 44px;
    height: 44px;
    border-color: var(--orange);
    opacity: 0.3;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(12, 45, 72, 0.06);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    transition: var(--transition);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--teal);
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-contact a {
    font-size: 0.95rem;
    color: var(--text-body);
}

.mobile-contact a:hover {
    color: var(--teal);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(170deg, var(--bg-white) 0%, var(--bg-off) 40%, var(--bg-light) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(1, 146, 158, 0.12);
    top: -100px;
    right: -50px;
    animation: orbFloat1 18s ease-in-out infinite;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(241, 90, 36, 0.08);
    bottom: -50px;
    left: -50px;
    animation: orbFloat2 22s ease-in-out infinite;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(12, 45, 72, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 15s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 20px);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -15px);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(12, 45, 72, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 45, 72, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(1, 146, 158, 0.08);
    border: 1px solid rgba(1, 146, 158, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 24px;
}

.hero-title-accent {
    color: var(--teal);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--teal);
    font-size: 0.85rem;
}

.trust-divider {
    width: 1px;
    height: 16px;
    background: var(--border);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 32px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-md);
}

.hero-stat {
    padding: 0 28px;
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--navy);
}

.hero-stat-plus,
.hero-stat-unit {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
}

.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== SOLUTIONS SECTION ===== */
.solutions {
    padding: var(--section-pad) 0;
    background: var(--bg-white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--bg-off);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(1, 146, 158, 0.15);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(12, 45, 72, 0.04);
    line-height: 1;
}

.solution-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(1, 146, 158, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.2rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.solution-card:hover .solution-icon {
    background: var(--teal);
    color: #fff;
}

.solution-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.solution-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
}

.solution-link:hover {
    gap: 10px;
}

.solution-link i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.solution-link:hover i {
    transform: translateX(3px);
}

/* ===== PROMISE SECTION ===== */
.promise {
    padding: var(--section-pad) 0;
    background: var(--bg-white);
    position: relative;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.promise-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.4s var(--ease);
}

.promise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.promise-card-number {
    position: absolute;
    top: 8px;
    right: 14px;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(12, 45, 72, 0.04);
    line-height: 1;
}

.promise-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(1, 146, 158, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.2rem;
    color: var(--teal);
    transition: var(--transition);
}

.promise-card:hover .promise-card-icon {
    background: var(--teal);
    color: #fff;
}

.promise-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.promise-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.65;
}

/* ===== ABOUT / WHY CHOOSE US ===== */
.about {
    padding: var(--section-pad) 0;
    background: var(--bg-off);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-description {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.about-description strong {
    color: var(--navy);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 28px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: rgba(1, 146, 158, 0.08);
    border: 1px solid rgba(1, 146, 158, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 0.95rem;
}

.about-feature h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-cta {
    margin-top: 8px;
}

/* About Visual & Why Choose Us Cards */
.about-right {
    position: relative;
    padding: 30px;
}

.about-visual {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-bg {
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: radial-gradient(circle at 30% 30%, rgba(1, 146, 158, 0.1), transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(241, 90, 36, 0.05), transparent 70%);
    filter: blur(20px);
}

.about-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(12, 45, 72, 0.1);
    transition: all 0.6s var(--ease);
    width: 200px;
    z-index: 2;
    animation: floatingCard 6s ease-in-out infinite;
}

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.about-card:nth-child(2) {
    animation-delay: -2s;
}

.about-card:nth-child(3) {
    animation-delay: -4s;
}

.about-card:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 25px 50px rgba(12, 45, 72, 0.15);
    background: #fff;
    z-index: 10;
    animation-play-state: paused;
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.about-card-1 .card-icon {
    color: var(--teal);
}

.about-card-2 .card-icon {
    color: var(--orange);
}

.about-card-3 .card-icon {
    color: var(--navy);
}

.card-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.card-label {
    font-size: 0.9rem;
    color: var(--text-body);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.about-card-1 {
    top: 0;
    left: -20px;
    border-top: 4px solid var(--teal);
}

.about-card-2 {
    top: 35%;
    right: -30px;
    border-top: 4px solid var(--orange);
}

.about-card-3 {
    bottom: 0;
    left: 10%;
    border-top: 4px solid var(--navy);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-pad) 0;
    background: var(--bg-white);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s var(--ease);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
}

.testimonial-card>.testimonial-quote {
    font-size: 2rem;
    color: var(--teal);
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.85;
    max-width: 700px;
    margin: 0 auto 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(1, 146, 158, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.1rem;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
}

.author-role {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-top: 16px;
}

.testimonial-stars i {
    color: var(--orange);
    font-size: 0.85rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--navy);
    font-size: 0.85rem;
}

.slider-btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--teal);
    transform: scale(1.2);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-pad) 0;
    background: var(--bg-off);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(1, 146, 158, 0.08);
    top: -100px;
    right: -100px;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(241, 90, 36, 0.05);
    bottom: -100px;
    left: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-title .text-accent {
    background: linear-gradient(135deg, var(--teal), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--navy) 60%, var(--orange));
    background-size: 200% 200%;
    background-position: 0% 50%;
}

.cta-section .btn-primary:hover {
    background-position: 100% 50%;
}

.cta-section .btn-secondary {
    color: var(--navy);
    border-color: var(--border);
}

.cta-section .btn-secondary:hover {
    border-color: var(--teal);
    color: var(--teal);
}

/* ===== INDUSTRIES ===== */
.industries {
    padding: var(--section-pad) 0;
    background: var(--bg-off);
}

.industries-marquee {
    overflow: hidden;
    margin-top: 24px;
    padding: 12px 0;
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.industry-badge,
.marquee-item {
    padding: 12px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    white-space: nowrap;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.marquee-item i {
    color: var(--teal);
}

.industry-badge:hover,
.marquee-item:hover {
    border-color: var(--teal);
    color: var(--teal);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-pad) 0;
    background: var(--bg-off);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(1, 146, 158, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1rem;
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.9rem;
    color: var(--text-body);
}

.contact-info-card a:hover {
    color: var(--teal);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(1, 146, 158, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
}

/* Contact Page Specific */
.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2;
}

.contact-desc {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(1, 146, 158, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1rem;
}

.contact-item-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-item-value {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.5;
}

a.contact-item-value:hover {
    color: var(--teal);
}

.contact-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== FOOTER (White/Light) ===== */
.footer {
    background: var(--bg-white);
    color: var(--text-body);
    position: relative;
    border-top: 1px solid var(--border-light);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-about {
    padding-right: 20px;
}

.footer-about h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    margin-top: 10px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    /* No filter   show original brand colors */
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.footer-links-group h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--teal);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--teal);
    margin-top: 4px;
    font-size: 0.85rem;
}

.footer-contact a,
.footer-contact span {
    color: var(--text-body);
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact a:hover {
    color: var(--teal);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    border-radius: 2px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--teal);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

/* ===== CAREER PAGE ===== */
.career-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: linear-gradient(170deg, var(--bg-white) 0%, var(--bg-off) 40%, var(--bg-light) 100%);
}

.career-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.career-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.career-orb-1 {
    width: 450px;
    height: 450px;
    background: rgba(1, 146, 158, 0.14);
    top: -80px;
    right: -30px;
    animation: orbFloat1 18s ease-in-out infinite;
}

.career-orb-2 {
    width: 320px;
    height: 320px;
    background: rgba(241, 90, 36, 0.09);
    bottom: -30px;
    left: -40px;
    animation: orbFloat2 22s ease-in-out infinite;
}

.career-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(12, 45, 72, 0.06);
    top: 40%;
    left: 40%;
    animation: orbFloat3 15s ease-in-out infinite;
}

.career-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(12, 45, 72, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 45, 72, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.career-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.career-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 24px;
}

.career-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

.career-explore-btn i {
    transition: transform 0.3s var(--ease);
}

.career-explore-btn:hover i {
    transform: translateY(3px);
}

/* Career Why Join Us */
.career-why {
    padding: var(--section-pad) 0;
    background: var(--bg-white);
}

.career-perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.career-perk-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.career-perk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.career-perk-card:hover::before {
    transform: scaleX(1);
}

.career-perk-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(1, 146, 158, 0.15);
}

.perk-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(1, 146, 158, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.4rem;
    color: var(--teal);
    transition: all 0.35s var(--ease);
}

.career-perk-card:hover .perk-icon-wrapper {
    background: var(--teal);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(1, 146, 158, 0.3);
}

.career-perk-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.career-perk-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* Career Stats Strip */
.career-stats-section {
    padding: 60px 0;
    background: var(--bg-navy);
    position: relative;
    overflow: hidden;
}

.career-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(1, 146, 158, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(241, 90, 36, 0.1) 0%, transparent 50%);
}

.career-stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.career-stat-item {
    padding: 16px 48px;
    text-align: center;
}

.career-stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.career-stat-unit {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--teal-light);
}

.career-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.career-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* Career Jobs Section (iframe) */
.career-jobs {
    padding: var(--section-pad) 0;
    background: var(--bg-off);
}

.career-iframe-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    min-height: 600px;
}

.career-iframe-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--bg-card);
    z-index: 2;
}

.career-iframe-loading p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.career-iframe-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 800px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* ===== CULTURE PAGE ===== */
.culture-intro {
    padding: var(--section-pad) 0;
    background: var(--bg-white);
}

.culture-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.culture-intro-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 20px;
}

.culture-intro-content p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.culture-intro-visual {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.culture-visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(12, 45, 72, 0.1);
    width: 170px;
    animation: floatingCard 6s ease-in-out infinite;
}

.culture-vc-1 {
    top: 0;
    left: 0;
    border-top: 4px solid var(--teal);
}

.culture-vc-2 {
    top: 30%;
    right: 0;
    border-top: 4px solid var(--orange);
    animation-delay: -2s;
}

.culture-vc-3 {
    bottom: 0;
    left: 20%;
    border-top: 4px solid var(--navy);
    animation-delay: -4s;
}

.cvc-icon {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--teal);
}

.culture-vc-2 .cvc-icon {
    color: var(--orange);
}

.culture-vc-3 .cvc-icon {
    color: var(--navy);
}

.cvc-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.cvc-label {
    font-size: 0.82rem;
    color: var(--text-body);
    font-weight: 600;
}

/* Vision & Mission */
.culture-vm {
    padding: var(--section-pad) 0;
    background: var(--bg-off);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.vm-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(1, 146, 158, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--teal);
    transition: all 0.35s var(--ease);
}

.vm-card:hover .vm-icon {
    background: var(--teal);
    color: #fff;
}

.vm-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}

.vm-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.75;
}

/* Core Values */
.culture-values {
    padding: var(--section-pad) 0;
    background: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(1, 146, 158, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.2rem;
    color: var(--teal);
    transition: all 0.35s var(--ease);
}

.value-card:hover .value-icon {
    background: var(--teal);
    color: #fff;
    transform: scale(1.1);
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.65;
}

/* DEI Section */
.culture-dei {
    padding: var(--section-pad) 0;
    background: var(--bg-off);
}

.dei-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.dei-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 32px;
}

.dei-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
}

.dei-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s var(--ease);
}

.dei-item:hover {
    border-color: rgba(1, 146, 158, 0.2);
    box-shadow: var(--shadow-sm);
}

.dei-item i {
    color: var(--teal);
    font-size: 1rem;
    flex-shrink: 0;
}

.dei-item span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
}

/* ===== LEGAL PAGES (Privacy Policy, Disclaimer) ===== */
.legal-content {
    padding: 60px 0 var(--section-pad);
    background: var(--bg-white);
}

.legal-body {
    max-width: 820px;
    margin: 0 auto;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-weight: 500;
}

.legal-body h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-light);
}

.legal-body p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-body ul {
    margin: 10px 0 20px 24px;
    list-style: disc;
}

.legal-body ul li {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 8px;
}

.legal-body a {
    color: var(--teal);
    font-weight: 500;
}

.legal-body a:hover {
    text-decoration: underline;
}

.legal-contact-info {
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-top: 16px;
}

.legal-contact-info p {
    margin-bottom: 4px;
}

/* ===== CONTACT MAP ===== */
.contact-map {
    padding: var(--section-pad) 0 60px;
    background: var(--bg-white);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

/* ===== SUBPAGE HEADER ===== */
.subpage-header {
    padding: 140px 0 50px;
    text-align: center;
    background: linear-gradient(170deg, var(--bg-white) 0%, var(--bg-off) 50%, var(--bg-light) 100%);
}

.subpage-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.subpage-header p {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 540px;
    margin: 0 auto;
}

/* ===== CHATBOT ===== */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 100px;
    z-index: 500;
}

.chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.chatbot-toggle:hover {
    background: var(--teal);
    transform: scale(1.05);
}

.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
    border: 2px solid var(--bg-white);
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s var(--ease);
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    padding: 16px 20px;
    background: var(--navy);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(1, 146, 158, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.chat-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.chat-header p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
}

.chat-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.chat-close:hover {
    color: #fff;
}

.chat-messages {
    height: 280px;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 85%;
    animation: fadeInMsg 0.3s ease;
}

@keyframes fadeInMsg {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.bot {
    background: var(--bg-off);
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    background: var(--navy);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-quick-questions {
    padding: 0 16px 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.quick-question-btn {
    padding: 6px 12px;
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.quick-question-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.chat-input-area {
    display: flex;
    padding: 12px 16px;
    border-top: 1px solid var(--border-light);
    gap: 8px;
}

.chat-input-area input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: var(--transition);
}

.chat-input-area input:focus {
    outline: none;
    border-color: var(--teal);
}

.chat-input-area button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.chat-input-area button:hover {
    background: var(--teal);
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translate(0);
}

/* Culture section (about page) */
.culture {
    padding: var(--section-pad) 0;
    background: var(--bg-white);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.culture-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.culture-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.culture-card i {
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 16px;
}

.culture-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.culture-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* About story section */
.story {
    padding: var(--section-pad) 0;
    background: var(--bg-off);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.25;
}

.story-content p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 14px;
}

.story-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
}

.story-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
}

.story-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-right {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .career-perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-stat-item {
        padding: 16px 32px;
    }

    .culture-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 70px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo-img {
        height: 36px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .hero-stat {
        padding: 12px 0;
    }

    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-trust-strip {
        flex-direction: column;
        gap: 10px;
    }

    .trust-divider {
        display: none;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }

    .career-hero {
        padding: 120px 0 60px;
    }

    .career-hero-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .career-perks-grid {
        grid-template-columns: 1fr;
    }

    .career-stats-strip {
        flex-direction: column;
        gap: 8px;
    }

    .career-stat-divider {
        width: 60px;
        height: 1px;
    }

    .career-stat-item {
        padding: 12px 0;
    }

    .career-iframe-wrapper iframe {
        min-height: 600px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .dei-highlights {
        grid-template-columns: 1fr;
    }

    .map-wrapper iframe {
        min-height: 280px;
    }

    /* Culture page mobile fixes */
    .culture-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .culture-intro-visual {
        position: relative;
        min-height: 260px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .culture-visual-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: calc(50% - 12px);
        animation: none;
    }

    .culture-vc-3 {
        width: 100%;
        max-width: 200px;
    }

    .cvc-number {
        font-size: 1.6rem;
    }

    /* Vision & Mission mobile */
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 30px 24px;
    }

    /* Legal pages mobile fixes */
    .legal-content {
        padding: 20px 0 60px;
    }

    .legal-body h2 {
        font-size: 1.1rem;
        margin-top: 24px;
    }

    .legal-contact-info {
        padding: 18px;
    }

    /* DEI items */
    .dei-item {
        padding: 12px 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 0 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .subpage-header {
        padding: 100px 0 30px;
    }

    .chatbot-container {
        right: 20px;
        bottom: 20px;
    }

    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 28px;
    }

    .culture-visual-card {
        width: 100%;
        max-width: 200px;
    }

    .culture-intro-title {
        font-size: 1.5rem;
    }

    .value-card {
        padding: 24px 18px;
    }

    .vm-card {
        padding: 24px 18px;
    }

    .map-wrapper iframe {
        min-height: 220px;
    }

    .legal-body {
        padding: 0 4px;
    }

    .contact-map {
        padding: 50px 0 40px;
    }


    .subpage-header h1 {
        font-size: 1.8rem;
    }

    .solution-card {
        padding: 24px 20px;
    }

    .solution-title {
        font-size: 1.05rem;
    }

    .solution-desc {
        font-size: 0.85rem;
    }
}

/* ===== LARGE SCREENS (1440px+) ===== */
@media (min-width: 1440px) {
    :root {
        --container: 1400px;
    }
}

@media (min-width: 1920px) {
    :root {
        --container: 1600px;
    }

    .solutions-grid {
        gap: 32px;
    }

    .solution-card {
        padding: 44px 40px;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: auto;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
    z-index: 490;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
    color: #fff;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* ===== CHATBOT   REDESIGNED ===== */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 100px;
    z-index: 500;
}

.chatbot-toggle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border: none;
    color: #fff;
    font-size: 1.35rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(12, 45, 72, 0.3);
    transition: var(--transition);
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(1, 146, 158, 0.4);
}

.notification-dot {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 14px;
    height: 14px;
    background: var(--orange);
    border-radius: 50%;
    border: 2.5px solid #fff;
    animation: dotPulse 2s ease-in-out infinite;
}

.chat-window {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 360px;
    background: #fff;
    border: 1px solid rgba(12, 45, 72, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(12, 45, 72, 0.18);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transition: all 0.3s var(--ease);
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.chat-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #2ecc71;
    border-radius: 50%;
    margin-right: 4px;
    animation: dotPulse 2s ease-in-out infinite;
}

.chat-header h4 {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.chat-header p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1px;
}

.chat-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.chat-messages {
    height: 260px;
    overflow-y: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f8f9fc;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.chat-message {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.83rem;
    line-height: 1.55;
    max-width: 82%;
    animation: fadeInMsg 0.3s ease;
    word-break: break-word;
}

.chat-message.bot {
    background: #fff;
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(12, 45, 72, 0.06);
    border: 1px solid var(--border-light);
}

.chat-message.user {
    background: linear-gradient(135deg, var(--navy), var(--teal-dark));
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(12, 45, 72, 0.2);
}

.chat-quick-questions {
    padding: 8px 12px 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px solid var(--border-light);
    background: #fff;
}

.quick-question-btn {
    padding: 5px 11px;
    background: rgba(1, 146, 158, 0.06);
    border: 1px solid rgba(1, 146, 158, 0.2);
    border-radius: 20px;
    font-size: 0.74rem;
    color: var(--teal-dark);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-weight: 500;
}

.quick-question-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.chat-input-area {
    display: flex;
    padding: 10px 12px;
    border-top: 1px solid var(--border-light);
    gap: 8px;
    background: #fff;
}

.chat-input-area input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.83rem;
    background: var(--bg-off);
    color: var(--text-dark);
    transition: var(--transition);
}

.chat-input-area input:focus {
    outline: none;
    border-color: var(--teal);
    background: #fff;
}

.chat-input-area button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.chat-input-area button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(1, 146, 158, 0.3);
}

/* ===== NAV CONTACT CTA LINK ===== */
.nav-link-cta {
    background: var(--teal);
    color: #fff !important;
    border-radius: 20px;
    padding: 7px 18px !important;
    font-weight: 600 !important;
}

.nav-link-cta:hover {
    background: var(--navy);
    color: #fff !important;
}

.nav-link-cta::after {
    display: none !important;
}

/* ===== NAV TOGGLE   SMALLER ON MOBILE ===== */
/* nav-toggle base is defined in NAVBAR section above; only override sizes here */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 6px;
        background: none;
        border: none;
        border-radius: 6px;
        transition: background 0.2s;
    }

    .nav-toggle:hover {
        background: rgba(12, 45, 72, 0.06);
    }

    .nav-toggle span {
        width: 22px;
        height: 2.5px;
        background: var(--navy);
        border-radius: 2px;
        transition: var(--transition);
        display: block;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
}

/* ===== FOOTER   MOBILE CENTERED ===== */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-about {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 12px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-links-group ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* WhatsApp adjust for mobile */
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    /* Chatbot adjust for mobile */
    .chatbot-container {
        bottom: 88px;
        right: 20px;
    }

    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;
    }

    /* Mobile menu link size */
    .mobile-link {
        font-size: 1.5rem;
    }

    .mobile-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .mobile-contact a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.92rem;
        color: var(--text-body);
    }

    .mobile-contact a:hover {
        color: var(--teal);
    }
}

/* ===== TEAM GRID   MAX 4 PER ROW ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-card-image {
    height: 220px;
    overflow: hidden;
    background: var(--bg-off);
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s var(--ease);
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-avatar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--border);
}

.team-card-content {
    padding: 1.25rem 1rem;
}

.team-member-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
}

.team-member-role {
    font-size: 0.78rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-member-bio {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.team-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(0, 119, 181, 0.1);
    border-radius: 50%;
    color: #0077b5;
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}

.team-linkedin:hover {
    background: #0077b5;
    color: white;
    transform: scale(1.1);
}

/* ===== IMAGE UPLOADS   PREVENT INCORRECT CROPPING ===== */
/* Blog card images */
.blog-card-image {
    height: 220px;
    overflow: hidden;
    background: var(--bg-off);
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s var(--ease);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--border);
}

/* Blog post featured image   use contain to show full image */
.blog-post-featured-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    background: var(--bg-off);
    border: 1px solid var(--border-light);
    max-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-post-featured-image img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
}

/* ===== BLOG POST BODY   IMPROVED TYPOGRAPHY ===== */
.blog-post-section {
    padding: 3rem 0 5rem;
    background: var(--bg-white);
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .blog-post-layout {
        grid-template-columns: 1fr;
    }
}

.blog-post-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-body);
    max-width: 720px;
}

.blog-post-body h1,
.blog-post-body h2,
.blog-post-body h3,
.blog-post-body h4 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
    font-weight: 700;
}

.blog-post-body h2 {
    font-size: 1.55rem;
    border-left: 4px solid var(--teal);
    padding-left: 14px;
}

.blog-post-body h3 {
    font-size: 1.25rem;
}

.blog-post-body h4 {
    font-size: 1.05rem;
    color: var(--teal);
}

.blog-post-body p {
    margin-bottom: 1.35rem;
    color: var(--text-body);
}

.blog-post-body ul,
.blog-post-body ol {
    padding-left: 1.75rem;
    margin-bottom: 1.35rem;
}

.blog-post-body li {
    margin-bottom: 0.55rem;
    color: var(--text-body);
    line-height: 1.75;
}

.blog-post-body ul li::marker {
    color: var(--teal);
}

.blog-post-body strong,
.blog-post-body b {
    color: var(--navy);
    font-weight: 700;
}

.blog-post-body em,
.blog-post-body i {
    font-style: italic;
    color: var(--text-muted);
}

.blog-post-body blockquote {
    border-left: 4px solid var(--orange);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(241, 90, 36, 0.04);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-body);
}

.blog-post-body code {
    background: var(--bg-off);
    border: 1px solid var(--border-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.88em;
    color: var(--teal-dark);
    font-family: 'Consolas', monospace;
}

.blog-post-body pre {
    background: var(--navy);
    color: #e8eaf0;
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-size: 0.88rem;
    line-height: 1.7;
}

.blog-post-body pre code {
    background: none;
    border: none;
    color: inherit;
    padding: 0;
}

.blog-post-body a {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.blog-post-body a:hover {
    color: var(--navy);
}

.blog-post-body hr {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 2.5rem 0;
}

.blog-post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.blog-post-body table th {
    background: var(--navy);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
}

.blog-post-body table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-body);
}

.blog-post-body table tr:hover td {
    background: var(--bg-off);
}

/* Blog Sidebar */
.blog-post-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--teal);
    font-family: var(--font-heading);
}

.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-post-item {
    display: flex;
    gap: 0.875rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 0.75rem;
    border-radius: 10px;
    background: var(--bg-off);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.sidebar-post-item:hover {
    background: var(--bg-light);
    border-color: rgba(1, 146, 158, 0.2);
    transform: translateX(3px);
}

.sidebar-post-item img {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-post-placeholder {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    flex-shrink: 0;
    font-size: 1.4rem;
}

.sidebar-post-title {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.sidebar-post-date {
    font-size: 0.74rem;
    color: var(--text-muted);
}

/* Blog meta header */
.blog-post-meta-header {
    margin-bottom: 1.25rem;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: gap 0.2s;
}

.back-to-blog:hover {
    gap: 0.75rem;
    color: var(--teal);
}

.blog-post-header-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.875rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.blog-post-header-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Blog listing grid */
.blog-section {
    padding: 3rem 0 5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--teal);
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 1rem;
    line-height: 1.65;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: gap 0.2s;
}

.blog-read-more:hover {
    gap: 0.75rem;
    color: var(--teal);
}

/* Blog pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.pagination-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.pagination-info {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Blog empty state */
.blog-empty,
.team-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-muted);
}

.blog-empty-icon,
.team-empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--border);
}

.blog-empty h2,
.team-empty h2 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.blog-empty p,
.team-empty p {
    color: var(--text-body);
    margin-bottom: 2rem;
}

/* ===== CHATBOT TOGGLE — LOGO STYLE ===== */
.chatbot-toggle-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    padding: 3px;
}

/* ===== FOOTER QUICK LINKS — 2-COLUMN GRID ===== */
.footer-quick-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
}

.footer-quick-links-grid ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Mobile: stack quick links back to single column */
@media (max-width: 768px) {
    .footer-quick-links-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .whatsapp-btn {
        bottom: 20px;
        left: 16px;
        right: auto;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}