/* ============================================
   FIRSTCALL TELEHEALTH - OPTIMIZED STYLESHEET
   Colors: #032E2E (Dark Teal) | #DB5A36 (Orange)
   Fonts: Sora (Headings) | Poppins (Body)
   ============================================ */

/* IMPORT FONTS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700;800&display=swap');

/* CSS VARIABLES */
:root {
    --primary-dark: #032E2E;
    --primary-orange: #DB5A36;
    --primary-orange-hover: #bf4a2a;
    --primary-orange-light: #e8735a;
    --text-muted: #6c757d;
    --text-light: #a0b3b1;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;

    /* Button Animation Variables */
    --btn-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --btn-shadow: 0 4px 15px rgba(219, 90, 54, 0.3);
    --btn-shadow-hover: 0 8px 25px rgba(219, 90, 54, 0.4);
    --btn-shadow-active: 0 2px 10px rgba(219, 90, 54, 0.3);
}
:root {
  --header-height: 80px;
}

body {
  padding-top: var(--header-height);
}

html {
  scroll-padding-top: var(--header-height);
}
/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* ============================================
   TYPOGRAPHY - CONSOLIDATED HEADING STYLES
   ============================================ */

/* Small Title / Badge - Used across all sections */
.small-title,
.section-tagline,
.resource-badge,
.vps-badge,
.note-tagline {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Main Title - Used for section headings */
.main-title,
.section-title,
.er-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

.vps-main-heading,
.osha-title,
.founder-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.main-title span,
.section-title span,
.er-title span,
.osha-title span,
.vps-main-heading span,
.founder-title span {
    color: var(--primary-orange);
}

/* Description Text */

.section-subtitle,
.er-desc,
.vps-sub-paragraph {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.founder-desc {
    color: #f1f1f1;
}

.desc {
    font-size: 1.3rem;
}

.osha-desc {
    color: #f1f1f1;
}

/* Card Headings */
.card-heading,
.service-title,
.serve-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* ============================================
   UNIFIED BUTTON SYSTEM - ULTRA PROFESSIONAL
   ============================================ */

/* Base Button Styles */
.btn-primary-custom,
.btn-get-started,
.btn-main,
.btn-outline-light,
.btn-clinical,
.btn-founder,
.btn-subscribe {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: var(--btn-transition);
    -webkit-tap-highlight-color: transparent;
}

/* Ripple Effect Animation */
.btn-primary-custom::before,
.btn-get-started::before,
.btn-main::before,
.btn-outline-light::before,
.btn-clinical::before,
.btn-founder::before,
.btn-subscribe::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary-custom:active::before,
.btn-get-started:active::before,
.btn-main:active::before,
.btn-outline-light:active::before,
.btn-clinical:active::before,
.btn-founder:active::before,
.btn-subscribe:active::before {
    width: 300px;
    height: 300px;
}

/* Shine Effect */
.btn-primary-custom::after,
.btn-get-started::after,
.btn-main::after,
.btn-founder::after,
.btn-subscribe::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.btn-primary-custom:hover::after,
.btn-get-started:hover::after,
.btn-main:hover::after,
.btn-founder:hover::after,
.btn-subscribe:hover::after {
    left: 100%;
}

/* Primary Button - Orange Gradient */
.btn-primary-custom,
.btn-get-started,
.btn-main,
.btn-founder,
.btn-subscribe {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 50%, var(--primary-orange) 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    box-shadow: var(--btn-shadow);
}

.btn-primary-custom:hover,
.btn-get-started:hover,
.btn-main:hover,
.btn-founder:hover,
.btn-subscribe:hover {
    background: linear-gradient(135deg, var(--primary-orange-hover) 0%, var(--primary-orange) 50%, var(--primary-orange-hover) 100%);
    box-shadow: var(--btn-shadow-hover);
    transform: translateY(-3px);
}

.btn-primary-custom:active,
.btn-get-started:active,
.btn-main:active,
.btn-founder:active,
.btn-subscribe:active {
    transform: translateY(-1px);
    box-shadow: var(--btn-shadow-active);
}

/* Gradient Animation */
@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Pulse Animation for CTA Buttons */
.btn-get-started,
.btn-main {
    animation: gradientShift 3s ease infinite, pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: var(--btn-shadow);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(219, 90, 54, 0.15), var(--btn-shadow);
    }
}

.btn-get-started:hover,
.btn-main:hover {
    animation: none;
}

/* Outline Button Styles */
.btn-outline-light {
    border: 2px solid var(--white);
    background: transparent;
    backdrop-filter: blur(10px);
    transition: var(--btn-transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-light::before {
    background: rgba(255, 255, 255, 0.2);
}

/* Clinical Button - Outline Style */
.btn-clinical {
    border: 2px solid var(--primary-orange);
    background: transparent;
    color: var(--primary-orange);
    transition: var(--btn-transition);
}

.btn-clinical:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--btn-shadow);
}

.btn-clinical::before {
    background: rgba(219, 90, 54, 0.2);
}

/* Button Icon Animation */
.btn-primary-custom span,
.btn-get-started span,
.btn-main span,
.btn-outline-light span,
.btn-founder i,
.btn-clinical i {
    transition: transform 0.3s ease, margin 0.3s ease;
    display: inline-block;
}

.btn-primary-custom:hover span,
.btn-get-started:hover span,
.btn-main:hover span {
    transform: translateX(5px) rotate(45deg);
}

.btn-outline-light:hover span {
    transform: scale(1.2);
}

.btn-founder:hover i {
    transform: translateX(5px);
}

.btn-clinical:hover i {
    transform: rotate(180deg);
}

/* Button Loading State */
.btn-loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: var(--white);
    border-radius: 50%;
    animation: btnSpin 0.8s linear infinite;
}

@keyframes btnSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Button Success State */
.btn-success-state {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Magnetic Hover Effect Container */
.btn-magnetic {
    transition: transform 0.2s ease;
}

/* Float Animation for Special Buttons */
.btn-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Glow Effect on Hover */
.btn-glow:hover {
    animation: glow 1.5s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: var(--btn-shadow), 0 0 20px rgba(219, 90, 54, 0.4);
    }

    50% {
        box-shadow: var(--btn-shadow-hover), 0 0 30px rgba(219, 90, 54, 0.6);
    }
}

/* ============================================
   ULTRA PROFESSIONAL CARD HOVER EFFECTS
   ============================================ */

/* Base Card Hover Transition */
.service-card,
.er-card,
.resource-card,
.result-card,
.serve-card,
.impact-card,
.assessment-card,
.info-card,
.paperwork-card,
.followup-card,
.framework-card,
.timeline-item,
.privacy-box,
.alert-white-box,
.osha-form-card,
.metric-card,
.action-card,
.prevention-card,
.glass-box,
.model-card-white {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Service Cards - Ultra Professional Hover */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light), var(--primary-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(219, 90, 54, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: var(--primary-orange);
}

.service-card:hover .icon-box {
    transform: scale(1.1);
    background: var(--primary-orange);
}

.service-card .icon-box {
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-title {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.service-card .service-title {
    transition: all 0.3s ease;
}

.service-card:hover .btn-clinical {
    background: var(--primary-orange);
    color: white;
    transform: translateX(5px);
}

/* ER Cards - Premium Hover Effect */
.er-card {
    position: relative;
    overflow: hidden;
}

.er-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(219, 90, 54, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.er-card:hover::after {
    opacity: 1;
}

.er-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 0 0 2px rgba(219, 90, 54, 0.3);
}

.er-card:hover .er-icon {
    transform: rotate(360deg) scale(1.2);
    background: var(--primary-orange);
    color: white;
}

.er-card .er-icon {
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.er-card:hover h3 {
    color: var(--primary-orange);
    transform: scale(1.05);
}

.er-card h3 {
    transition: all 0.3s ease;
}

/* Resource Cards - Elegant Hover */
.resource-card {
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(219, 90, 54, 0.05), transparent);
    transition: height 0.4s ease;
}

.resource-card:hover::before {
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(219, 90, 54, 0.12),
        0 0 0 2px var(--primary-orange);
}

.resource-card:hover .badge-tag {
    background: var(--primary-orange);
    transform: scale(1.05);
}

.resource-card .badge-tag {
    transition: all 0.3s ease;
}

.resource-card:hover .card-heading {
    color: var(--primary-orange);
}

.resource-card .card-heading {
    transition: color 0.3s ease;
}

.resource-card:hover .card-link {
    transform: translateX(10px);
    color: var(--primary-orange);
}

.resource-card .card-link {
    transition: all 0.3s ease;
}

/* Result Cards - Metric Hover */
.result-card {
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-orange);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.result-card:hover::before {
    transform: scaleY(1);
}

.result-card:hover {
    transform: translateX(8px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(219, 90, 54, 0.2);
}

.result-card:hover .res-icon {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.15) rotate(5deg);
}

.result-card .res-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.result-card:hover .res-value {
    color: var(--primary-orange);
}

.result-card .res-value {
    transition: color 0.3s ease;
}

/* Serve Cards - Professional Hover */
.serve-card {
    position: relative;
    overflow: hidden;
}

.serve-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(219, 90, 54, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.serve-card:hover::after {
    opacity: 1;
}

.serve-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(219, 90, 54, 0.2);
}

.serve-card:hover img {
    transform: scale(1.08);
}

.serve-card img {
    transition: transform 0.5s ease;
}

.serve-card:hover h3 {
    color: var(--primary-orange);
}

.serve-card h3 {
    transition: color 0.3s ease;
}

.serve-card:hover .check-list li {
    transform: translateX(5px);
}

.serve-card .check-list li {
    transition: all 0.3s ease;
}

/* Impact Cards - Premium Hover */
.impact-card {
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(219, 90, 54, 0.15);
}

.impact-card:hover i {
    transform: scale(1.3) rotate(-10deg);
    color: var(--primary-orange);
}

.impact-card i {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.impact-card:hover h4 {
    color: var(--primary-orange);
}

.impact-card h4 {
    transition: color 0.3s ease;
}

.impact-card.dark-highlight:hover {
    background: linear-gradient(135deg, #0A2623, #0d3330);
}

.impact-card.dark-highlight:hover i {
    color: var(--primary-orange);
}

/* Assessment Cards - Clean Hover */
.assessment-card {
    position: relative;
    overflow: hidden;
}

.assessment-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.assessment-card:hover::before {
    transform: scaleX(1);
}

.assessment-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(219, 90, 54, 0.2);
}

.assessment-card:hover .icon-box {
    background: var(--primary-orange);
    transform: scale(1.15) rotate(-5deg);
}

.assessment-card .icon-box {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.assessment-card:hover h4 {
    color: var(--primary-orange);
}

.assessment-card h4 {
    transition: color 0.3s ease;
}

/* Info Cards (How It Works Page) - Enhanced Hover */
.info-card {
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(219, 90, 54, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.info-card:hover::after {
    opacity: 1;
}

.info-card.light-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 50px rgba(217, 93, 57, 0.2),
        0 0 0 2px var(--primary-orange);
}

.info-card.dark-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 50px rgba(217, 93, 57, 0.3),
        0 0 0 2px var(--primary-orange);
    background: linear-gradient(135deg, #043535, #032525);
}

.info-card:hover h4 {
    transform: translateX(8px);
}

.info-card h4 {
    transition: all 0.3s ease;
}

/* Paperwork Cards - Creative Hover */
.paperwork-card {
    position: relative;
}

.paperwork-card:hover .floating-icon {
    transform: translateX(-50%) scale(1.2) rotate(15deg);
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 10px 25px rgba(219, 90, 54, 0.4);
}

.paperwork-card .floating-icon {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.paperwork-card:hover .card-inner {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.paperwork-card .card-inner {
    transition: all 0.4s ease;
}

.paperwork-card:hover .card-label {
    color: var(--primary-orange);
}

.paperwork-card .card-label {
    transition: color 0.3s ease;
}

/* Follow-up Cards - Smooth Hover */
.followup-card {
    position: relative;
    overflow: hidden;
}

.followup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(219, 90, 54, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.followup-card:hover::before {
    opacity: 1;
}

.followup-card.light-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(219, 90, 54, 0.2);
}

.followup-card.highlight-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 50px rgba(219, 90, 54, 0.15),
        0 0 0 2px var(--primary-orange);
}

.followup-card:hover .fa-icon-box {
    background: var(--primary-orange);
    transform: scale(1.15) rotate(-5deg);
}

.followup-card .fa-icon-box {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.followup-card .fa-icon-box i {
    transition: color 0.3s ease;
}

.followup-card:hover .fa-icon-box i {
    color: white;
}

.followup-card:hover h4 {
    transform: scale(1.02);
}

.followup-card h4 {
    transition: all 0.3s ease;
}

/* Timeline Items - Professional Hover */
.timeline-item {
    position: relative;
}

.timeline-item:hover .timeline-icon {
    background: var(--primary-orange);
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(219, 90, 54, 0.4);
}

.timeline-item .timeline-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(219, 90, 54, 0.2);
}

.timeline-item .timeline-content {
    transition: all 0.4s ease;
}

.timeline-item:hover .time-label {
    color: #032525;
}

.timeline-item:hover .timeline-content h4 {
    color: var(--primary-orange);
}

.timeline-item .timeline-content h4 {
    transition: color 0.3s ease;
}

/* Privacy Box - Subtle Hover */
.privacy-box {
    position: relative;
    overflow: hidden;
}

.privacy-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--primary-orange);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.privacy-box:hover::before {
    transform: scaleY(1);
}

.privacy-box:hover {
    transform: translateX(10px);
    box-shadow: 
        0 15px 30px rgba(217, 93, 57, 0.12),
        0 0 0 1px rgba(219, 90, 54, 0.2);
}

.privacy-box:hover h5 {
    color: var(--primary-orange);
}

.privacy-box h5 {
    transition: color 0.3s ease;
}

/* Alert White Box - Clean Hover (no ::after since border-left already exists) */
.alert-white-box {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.alert-white-box:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.alert-white-box:hover .alert-icon-bg {
    background: var(--primary-orange);
    transform: scale(1.1);
}

.alert-white-box .alert-icon-bg {
    transition: all 0.4s ease;
}

/* Framework Card - Premium Hover */
.framework-card {
    position: relative;
    overflow: hidden;
}

.framework-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(219, 90, 54, 0.2);
}

.framework-card:hover .phase-tag {
    color: #032E2E;
}

.framework-card:hover .card-heading-main {
    color: var(--primary-orange);
}

.framework-card .card-heading-main {
    transition: color 0.3s ease;
}

.framework-card:hover .feature-list li {
    padding-left: 10px;
    color: #032E2E;
}

/* VPS Steps - Icon Hover */
.vps-step:hover .vps-icon-wrapper {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-8px) rotate(10deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(219, 90, 54, 0.4);
}

.vps-step .vps-icon-wrapper {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vps-step:hover .vps-step-title {
    color: white;
}

.vps-step .vps-step-title {
    transition: color 0.3s ease;
}

/* OSHA Form Card - Professional Hover */
.osha-form-card {
    position: relative;
    overflow: hidden;
}

.osha-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.osha-form-card:hover::before {
    transform: scaleX(1);
}

.osha-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(219, 90, 54, 0.3);
}

.osha-form-card:hover .osha-icon-box {
    transform: rotate(360deg);
}

.osha-form-card .osha-icon-box {
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.osha-form-card:hover .form-field {
    background: rgba(248, 249, 250, 0.95);
}

.osha-form-card .form-field {
    transition: background 0.3s ease;
}

/* Metric Cards (ROI Calculator) - Clean Hover */
.metric-card {
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(219, 90, 54, 0.2);
}

.metric-card:hover .metric-value {
    color: var(--primary-orange);
    transform: scale(1.05);
}

.metric-card .metric-value {
    transition: all 0.3s ease;
}

/* Action Card - Professional Hover */
.action-card {
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.action-card:hover::before {
    transform: scaleY(1);
}

.action-card:hover {
    transform: translateX(8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(219, 90, 54, 0.2);
}

.action-card:hover .action-icon-box {
    background: var(--primary-orange);
    transform: scale(1.1) rotate(-5deg);
}

.action-card .action-icon-box {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Action Card - Mobile Responsive */
@media (max-width: 991px) {
    .action-card {
        padding: 1.5rem !important;
    }
    
    .action-card .d-flex.align-items-start {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 1rem !important;
    }
    
    .action-card .action-icon-box {
        margin-bottom: 0.5rem;
    }
    
    .action-card .flex-grow-1 {
        width: 100%;
    }
    
    .action-card .d-flex.align-items-center.gap-2.mb-3 {
        flex-direction: column;
        gap: 0.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .action-card h4 {
        font-size: 1.1rem;
    }
    
    .action-card .row.g-4 {
        row-gap: 1rem !important;
    }
}

@media (max-width: 767px) {
    .action-card {
        padding: 1.25rem !important;
        margin-bottom: 1rem !important;
        border-radius: 1rem !important;
    }
    
    .action-card .action-icon-box {
        padding: 10px !important;
        font-size: 1.25rem;
    }
    
    .action-card .badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .action-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem !important;
    }
    
    .action-card .small {
        font-size: 0.85rem;
    }
    
    .action-card .feature-list.small {
        font-size: 0.8rem;
    }
    
    .action-card .col-md-6 {
        padding: 0 0.5rem !important;
    }
    
    .action-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 575px) {
    .action-card {
        padding: 1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .action-card .action-icon-box {
        padding: 8px !important;
        font-size: 1rem;
    }
    
    .action-card h4 {
        font-size: 0.9rem;
    }
    
    .action-card .small {
        font-size: 0.8rem;
        margin-bottom: 0.75rem !important;
    }
    
    .action-card .feature-list.small {
        font-size: 0.75rem;
    }
    
    .action-card .feature-list.small li {
        padding: 6px 0;
    }
    
    .action-card .row.g-4 {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .action-card .col-md-6 {
        width: 100%;
        padding: 0 !important;
    }
}

/* Prevention Card - Subtle Hover */
.prevention-card {
    position: relative;
    overflow: hidden;
}

.prevention-card:hover {
    transform: translateX(8px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.05),
        inset 5px 0 0 var(--primary-orange);
}

.prevention-card:hover .dot {
    transform: scale(1.5);
    background: var(--primary-orange);
}

.prevention-card .dot {
    transition: all 0.3s ease;
}

/* Glass Box - Premium Hover */
.glass-box {
    position: relative;
    overflow: hidden;
}

.glass-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(219, 90, 54, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glass-box:hover::before {
    opacity: 1;
}

.glass-box:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(219, 90, 54, 0.3);
}

/* Privacy Card Glass Box - No conflicting hover */
.privacy-card .glass-box {
    overflow: visible;
}

.privacy-card .glass-box::before {
    display: none;
}

.privacy-card .glass-box:hover {
    transform: none;
    box-shadow: none;
}

/* Model Card White - Clean Hover */
.model-card-white {
    position: relative;
    overflow: hidden;
}

.model-card-white::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.model-card-white:hover::before {
    transform: scaleY(1);
}

.model-card-white:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(219, 90, 54, 0.2);
}

.model-card-white:hover .icon-circle-teal {
    background: var(--primary-orange);
    transform: scale(1.15) rotate(-10deg);
}

.model-card-white .icon-circle-teal {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================
   ENGAGEMENT MODELS - CARD SLIDE/STACK EFFECT
   ============================================ */

.osha-content {
    position: relative;
}

.model-card-white {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* When card is visible in viewport */
.model-card-white.card-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for each card */
.model-card-white:nth-child(1) { transition-delay: 0s; }
.model-card-white:nth-child(2) { transition-delay: 0.15s; }
.model-card-white:nth-child(3) { transition-delay: 0.3s; }
.model-card-white:nth-child(4) { transition-delay: 0.45s; }
.model-card-white:nth-child(5) { transition-delay: 0.6s; }

/* Hover effect */
.model-card-white:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(219, 90, 54, 0.3);
}

/* Card content animation on hover */
.model-card-white:hover h5 {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.model-card-white h5 {
    transition: all 0.3s ease;
}

.model-card-white:hover p {
    color: #333;
}

.model-card-white p {
    transition: color 0.3s ease;
}

/* Emergency Container Items Hover */
.emergency-list li {
    transition: all 0.3s ease;
}

.emergency-list li:hover {
    transform: translateX(8px);
    color: var(--primary-orange);
}

/* Step Items (How It Works Section) */
.step {
    position: relative;
}

.step:hover .icon-box {
    background: var(--primary-orange);
    transform: scale(1.15) rotate(-10deg);
}

.step .icon-box {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step:hover h6 {
    color: var(--primary-orange);
}

.step h6 {
    transition: color 0.3s ease;
}

.step:hover .step-number {
    color: rgba(219, 90, 54, 0.15);
}

.step .step-number {
    transition: color 0.3s ease;
}

/* Stepper Items (Service Page) */
.step-item {
    cursor: pointer;
}

.step-item:hover .step-icon {
    background: var(--primary-orange);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(219, 90, 54, 0.4);
}

.step-item .step-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-item:hover .step-label {
    color: var(--primary-orange);
}

.step-item:hover .step-name {
    color: white;
}

/* Footer Links Hover Enhancement */
.footer-links a {
    position: relative;
}



.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

.footer-links a i {
    transition: transform 0.3s ease;
}

/* ============================================
   NAVBAR
   ============================================ */

/* Fixed Header Styles */
header.container-fluid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background: transparent;
}

header.container-fluid.sticky {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

header.container-fluid.sticky .nav-capsule {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile menu toggle display is handled by base styles and media query below */



/* Add padding to body to compensate for fixed header */


.nav-capsule {
    background: var(--white);
    border-radius: 60px;
    padding: 10px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.logo-img {
    width: 150px;
}

.nav-center {
    gap: 35px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-orange) !important;
}

.nav-link.active::after {
    width: 100%;
}

.active-link {
    color: var(--primary-orange) !important;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 4px;
}

.active-link::after {
    display: none;
}

.btn-get-started {
    color: var(--white);
    border-radius: 40px;
    padding: 10px 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.main-wrapper {
    color: var(--white);
    position: relative;

}

.hero-main-bg {
    background-image: url(assest/images/hero-bg.webp);
    background-size: cover;
    background-position: center;
}

.hero-section {
    padding: 120px 0;
    color: var(--white);
}

.sub-heading {
    color: #9fb7b3;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.arrow {
    color: var(--primary-orange);
    font-size: 18px;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.05;
}

.accent {
    color: var(--primary-orange);
}

.hero-desc {
    color: #a5c0bb;
    margin-top: 25px;
    max-width: 520px;
    line-height: 1.7;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-main {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
}

.btn-outline-light {
    border: 1px solid var(--white);
    padding: 14px 28px;
    border-radius: 40px;
    color: var(--white);
    background: transparent;
}

/* STATS */
.stats {
    margin-top: 60px;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 700;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 2px #a5b878;
    margin: 0;
    line-height: 1;
}

.stat-text {
    color: #9fb7b3;
    font-size: 15px;
}

/* ============================================
   VIDEO PLAY BUTTON
   ============================================ */

.play-button-wrapper {
    position: absolute;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.outer-border {
    width: 100%;
    height: 100%;
    border: 10px solid var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.inner-circle {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background-color: var(--primary-dark);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-text {
    position: absolute;
    width: 90%;
    height: 90%;
    animation: spin 12s linear infinite;
    fill: var(--white);
    font-weight: 700;
    font-size: 8.5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.play-triangle {
    width: 40px;
    height: 40px;
    z-index: 2;
    margin-left: 5px;
}

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

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

/* SUCCESS CARD */
.success-card {
    position: absolute;
    bottom: -25px;
    right: 40px;
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 18px 30px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.check {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-dark);
}

.success-title {
    font-size: 14px;
    color: #b9d1cd;
}

.success-value {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

/* ============================================
   SECTION SPACING CLASS
   ============================================ */

.section-space {
    padding: 80px 0;
}

@media (max-width: 991px) {
    .section-space {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .section-space {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    .section-space {
        padding: 40px 0;
    }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-works {
    background-color: #E3E3E3;
}

.sub-icon-head {
    width: 20px;
    height: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid #125753;
    position: relative;
}

.step:last-child {
    border-bottom: none;
}

.icon-box {
    width: 38px;
    height: 38px;
    background: #1f6f67;
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.step h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.step p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    max-width: 420px;
}

.step-number {
    position: absolute;
    right: 0;
    top: 20px;
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(45, 45, 45, 0.1);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    position: relative;
    background-image: url(assest/images/sec-03-bg.webp);
    background-size: cover;
}

.services-container {
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border: 2px solid var(--primary-orange);
    border-radius: 24px 24px 60px 24px;
    height: 100%;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.service-header .icon-box {
    width: 56px;
    height: 56px;
    background: var(--primary-dark);
    border-radius: 12px;
}

.service-header .icon-box i {
    color: var(--white);
    font-size: 22px;
}

.service-text {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6b6a;
    margin-top: 10px;
}

.btn-clinical {
    border: 2px solid var(--primary-orange);
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 14px;
    background: var(--white);
    margin-top: 24px;
}

.btn-clinical:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-clinical i {
    margin-left: 6px;
    font-size: 12px;
}

/* ============================================
   ER COST SECTION
   ============================================ */

.er-cost-section {
    position: relative;
    background-color: var(--light-bg);
    overflow: hidden;
}

.er-card {
    background: var(--primary-dark);
    color: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.er-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.er-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0 10px;
}

.er-card p {
    font-size: 15px;
    color: #cde2df;
    line-height: 1.4;
    margin-bottom: 25px;
}

.er-icon {
    width: 42px;
    height: 42px;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.source {
    font-size: 11px;
    opacity: 0.7;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    display: block;
}

/* BACKGROUND LINES */
.er-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.line-group {
    position: absolute;
    width: 700px;
    /* Original width restore */
    height: 500px;
    /* Original height restore */
}

.left-lines {
    left: -150px;
    bottom: 54px;
    /* Exact same as your original */
}

.right-lines {
    right: -150px;
    bottom: -90px;
    /* Exact same as your original */
}

.line-group svg {
    width: 100%;
    height: 100%;
}

.line-group path {
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-opacity: 0.9;
    /* Full visibility */
}

/* Natural Professional Breathing Pace */
.left-lines path {
    stroke: url(#lineGradientLeft);
    animation: professionalPulse 8s ease-in-out infinite;
}

.right-lines path {
    stroke: url(#lineGradientRight);
    animation: professionalPulse 8s ease-in-out infinite reverse;
}

@keyframes professionalPulse {

    0%,
    100% {
        stroke-opacity: 0.4;
        stroke-width: 2.2;
    }

    50% {
        stroke-opacity: 0.95;
        stroke-width: 3.2;
        /* Subtle thickness flow */
    }
}

/* ============================================
   OSHA REPORTING SECTION
   ============================================ */

.osha-reporting-section {
    background-image: url(assest/images/osha-sec-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.osha-content {
    position: relative;
    z-index: 2;
}

.osha-features li {
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f1f1f1;
}

.osha-features li i {
    color: var(--white);
    font-size: 20px;
}

.osha-card-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.osha-form-card {
    background: var(--primary-dark);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.osha-icon-box {
    background: var(--primary-orange);
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.card-header-osha h5 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
}

.card-header-osha small {
    color: #a0a0a0;
}

.form-field {
    background: #f8f9fa;
    padding: 12px 18px;
    border-radius: 10px;
    color: #333;
}

.form-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.form-field .value {
    font-size: 14px;
    color: var(--primary-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.auto-log-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-orange);
}

.auto-log-footer small {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   RESOURCES SECTION
   ============================================ */

.resources-section {
    background-color: var(--white);
}

.resource-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.resource-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.badge-tag {
    background: var(--primary-dark);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 20px;
}

.card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-link {
    margin-top: auto;
    color: #4A90E2;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}

.card-link:hover {
    color: var(--primary-orange);
}

/* ============================================ 
   ROI CALCULATOR SECTION
   ============================================ */

.roi-calculator-section {
    background-color: var(--light-bg);
    background-image: url(assest/images/roi-pattern.webp);
    background-size: cover;

}

/* Chart Styles */
.chart-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.chart-title i {
    color: var(--primary-orange);
}

.chart-container {
    position: relative;
    width: 100%;
}

/* Metric Card Color Variants */
.metric-card.savings-card {
    border-top-color: #22c55e;
}

.metric-card.savings-card:hover .metric-value {
    color: #22c55e;
}

.metric-card.hours-card {
    border-top-color: #3b82f6;
}

.metric-card.hours-card:hover .metric-value {
    color: #3b82f6;
}

.metric-card.injuries-card {
    border-top-color: #f59e0b;
}

.metric-card.injuries-card:hover .metric-value {
    color: #f59e0b;
}

.metric-card.diversions-card {
    border-top-color: #8b5cf6;
}

.metric-card.diversions-card:hover .metric-value {
    color: #8b5cf6;
}

/* Chart Card Styling */
.roi-calculator-section .card:has(.chart-container) {
    background: #fff;
    border: 1px solid rgba(3, 46, 46, 0.1);
    transition: all 0.3s ease;
}

.roi-calculator-section .card:has(.chart-container):hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* Chart Legend Customization */
.chart-legend-custom {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #666;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Print Styles for Charts */
@media print {
    .chart-container {
        page-break-inside: avoid;
    }
    
    .roi-calculator-section .card:has(.chart-container) {
        break-inside: avoid;
    }
}

/* Responsive Chart Adjustments */
@media (max-width: 991px) {
    .chart-container {
        height: 200px !important;
    }
    
    .chart-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .roi-calculator-section .row.g-3.mb-4 .col-lg-6 {
        margin-bottom: 15px;
    }
    
    .chart-container {
        height: 180px !important;
    }
    
    .chart-title {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .roi-calculator-section .card:has(.chart-container) {
        padding: 15px !important;
    }
}

.calculator-wrapper {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--primary-dark);
}

.form-label-custom {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.badge-value {
    background: var(--primary-dark);
    color: var(--white);
    padding: 2px 12px;
    border-radius: 4px;
    font-size: 12px;
}

.custom-select,
.custom-input {
    background-color: #eee;
    border: none;
    padding: 12px;
    font-size: 14px;
}

.custom-range::-webkit-slider-runnable-track {
    background: var(--primary-dark);
    height: 6px;
    border-radius: 3px;
}

.custom-range::-webkit-slider-thumb {
    background: var(--primary-orange);
    margin-top: -5px;
}

.range-labels {
    font-size: 11px;
    color: #aaa;
    margin-top: 5px;
}

.input-with-icon {
    position: relative;
    background: #eee;
    border-radius: 6px;
}

.currency {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
}

.custom-input {
    padding-left: 35px;
}

.spinners {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    color: var(--primary-dark);
    font-size: 10px;
}

.btn-primary-custom {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background-color: #bf4a2a;
}

.impact-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
}

.result-card {
    background: #ebebeb;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.res-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 20px;
}

.res-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.res-value {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.res-value span {
    font-size: 14px;
    font-weight: 400;
    color: #888;
}

.highlighted-res {
    color: var(--primary-orange);
}

.primary-color-text {
    color: var(--primary-dark);
}

/* ============================================
   VPS VISIBILITY SECTION
   ============================================ */

.vps-visibility-section {
    background-image: url(assest/images/vps-background.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vps-flow-container {
    position: relative;
    margin-top: 100px;
}

.vps-step {
    position: relative;
    z-index: 10;
}

.vps-icon-wrapper {
    width: 55px;
    height: 55px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 22px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vps-step:hover .vps-icon-wrapper {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(219, 90, 54, 0.3);
}

.vps-step-title {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.vps-step-title span {
    color: var(--white);
    font-size: 22px;
}

.vps-step-desc {
    font-size: 14.5px;
    opacity: 0.75;
    max-width: 290px;
    margin: 0 auto;
    line-height: 1.5;
}

/* FLOW ARROWS */
.vps-connector-arrow {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.vps-connector-arrow svg {
    width: 100%;
    height: auto;
}

.vps-connector-arrow path {
    animation: vps-arrow-flow 4s linear infinite;
}

@keyframes vps-arrow-flow {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.vps-arrow-top-right {
    width: 160px;
    top: -20px;
    right: -80px;
}

.vps-arrow-side {
    width: 60px;
    right: -30px;
    top: 40px;
}

.vps-arrow-bottom-return {
    width: 380px;
    bottom: 80px;
    left: -190px;
}

/* ============================================
   WHO WE SERVE SECTION
   ============================================ */

.who-we-serve {
    background-color: var(--white);
}

.serve-card {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.serve-card:hover {
    transform: translateY(-5px);
}

.serve-card .img-col {
    padding: 12px;
}

.serve-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.serve-card .content-col {
    padding: 30px 40px;
}

.serve-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.check-list li img {
    width: 18px;
    height: 18px;
}

/* ============================================
   FOUNDER SECTION
   ============================================ */

.founder-section {
    position: relative;
    min-height: 600px;
    color: var(--white);
    background-image: url(assest/images/founder-section-bg.webp);
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
}

.onboarding-text {
    font-weight: 700;
    margin: 25px 0 10px 0;
}

.btn-founder {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-founder:hover {
    background-color: #bf4a2a;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-founder i {
    font-size: 1.2rem;
}

.doctor-call-card {
    position: absolute;
    right: 40%;
    top: 50%;
    transform: translateY(-80%);
    width: 240px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.doctor-call-card img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer-section {
    background-color: #050b0a;
}

.newsletter-wrapper {
    background: #082624;
    border: 2px solid var(--primary-orange);
    border-radius: 40px;
    padding: 60px;
    margin-top: -80px;
}

.newsletter-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--white);
}

.newsletter-title span {
    color: var(--primary-orange);
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    max-width: 450px;
}

.newsletter-form .form-control {
    border-radius: 30px;
    padding: 12px 25px;
    border: none;
    font-size: 0.9rem;
}

.btn-subscribe {
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 30px;
    padding: 10px 35px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-subscribe:hover {
    background-color: #bf4a2a;
}

footer {
    padding-top: 80px;
    padding-bottom: 30px;
    background-image: url(assest/images/footer-pattern.webp);
    background-repeat: repeat;
}

.footer-logo-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 20px;
}

.footer-heading {
    font-family: 'Sora', sans-serif;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links a i {
    color: var(--primary-orange);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 60px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ============================================
   MOBILE NAVIGATION STYLES
   ============================================ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    position: relative;
    flex: none !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.hamburger-line:nth-child(1) {
    transform: translateY(-6px);
}

.hamburger-line:nth-child(3) {
    transform: translateY(6px);
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(0);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 10002;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-nav-menu.active {
    right: 0;
}

/* Mobile Nav Header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: var(--primary-dark);
}

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

.mobile-nav-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: var(--primary-orange);
    transform: rotate(90deg);
}

/* Mobile Nav Links */
.mobile-nav-links {
    list-style: none;
    padding: 24px 0;
    margin: 0;
    overflow-y: auto;
        flex: 1 !important;
    flex-direction: column;
    background-color: white;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(3, 46, 46, 0.08);
}

.mobile-nav-link {
    display: block;
    padding: 16px 24px;
    color: var(--primary-dark);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-orange);
    background: rgba(219, 90, 54, 0.05);
    padding-left: 32px;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    width: 4px;
}

/* Mobile Nav Footer */
.mobile-nav-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: #f8f9fa;
}

.mobile-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
}

/* Desktop Button Visibility */
.desktop-btn {
    display: inline-flex;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Large Devices (Desktops) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }

    .main-title,
    .section-title,
    .er-title,
    .osha-title,
    .vps-main-heading,
    .founder-title {
        font-size: 2.2rem;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-section {
        padding: 80px 0;
    }

    .main-title,
    .section-title,
    .er-title,
    .osha-title,
    .vps-main-heading,
    .founder-title {
        font-size: 2rem;
    }

    .nav-capsule {
        padding: 10px 20px;
    }

    .nav-center {
        display: none;
    }

    /* Show Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex !important;
    }

    /* Hide Desktop Button on Mobile */
    .desktop-btn {
        display: none;
    }

    .btn-get-started {
        padding: 8px 16px;
        font-size: 14px;
    }

    .osha-features li {
        justify-content: center;
    }

    .vps-main-heading {
        font-size: 34px;
    }

    .vps-step-desc {
        max-width: 100%;
    }

    .vps-connector-arrow {
        display: none;
    }

    .founder-section {
        background: #082624;
        text-align: center;
    }

    .note-tagline {
        justify-content: center;
    }

    .founder-desc {
        margin: 0 auto;
    }

    .doctor-call-card {
        display: none;
    }

    .btn-founder {
        width: 100%;
        justify-content: center;
    }

    .newsletter-wrapper {
        padding: 40px 30px;
        text-align: center;
    }

    .newsletter-text {
        margin: 0 auto 20px;
    }

    .newsletter-form {
        justify-content: center;
    }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .stats {
        margin-top: 40px;
    }

    .stat-number {
        font-size: 28px;
    }

    .main-title,
    .section-title,
    .er-title,
    .osha-title,
    .vps-main-heading,
    .founder-title {
        font-size: 1.75rem;
    }

    .desc,
    .section-subtitle,
    .er-desc,
    .osha-desc {
        font-size: 0.95rem;
    }

    .step h6 {
        font-size: 1.25rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .er-card {
        padding: 25px 20px;
    }

    .er-card h3 {
        font-size: 28px;
    }

    .resource-card {
        padding: 20px;
    }

    .serve-card .content-col {
        padding: 20px;
    }

    .serve-card h3 {
        font-size: 1.1rem;
    }

    .check-list li {
        font-size: 0.85rem;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .form-control {
        margin-bottom: 10px;
    }

    .btn-subscribe {
        width: 100%;
    }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .logo-img {
        width: 120px;
    }

    .nav-capsule {
        padding: 8px 15px;
    }

    .main-title,
    .section-title,
    .er-title,
    .osha-title,
    .vps-main-heading,
    .founder-title {
        font-size: 1.5rem;
    }

    .small-title,
    .section-tagline,
    .resource-badge,
    .vps-badge,
    .note-tagline {
        font-size: 12px;
    }

    .vps-visibility-section {
        padding: 80px 0;
    }

    .vps-flow-container {
        margin-top: 60px;
    }

    .vps-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .vps-step-title {
        font-size: 14px;
    }

    .vps-step-title span {
        font-size: 18px;
    }

    .founder-section {
        padding: 60px 0;
        min-height: auto;
    }

    .founder-title {
        font-size: 1.5rem;
    }

    .btn-founder {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .newsletter-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {

    .main-wrapper,
    .osha-reporting-section,
    .vps-visibility-section,
    .founder-section,
    footer {
        background: var(--white) !important;
        color: #333 !important;
    }

    .nav-capsule,
    .btn-get-started,
    .hero-buttons,
    .play-button-wrapper,
    .vps-connector-arrow {
        display: none !important;
    }
}

/* service-page-start-here */
:root {
    --primary-orange: #E8643D;
    --dark-teal: #103A36;
    --glass-bg: rgba(16, 58, 54, 0.85);
    /* Dark teal with transparency */
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Navbar Tweaks */
.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
}

.active-link {
    color: var(--primary-orange) !important;
    border-bottom: 2px solid var(--primary-orange);
}

.btn-primary-orange {
    background-color: var(--primary-orange);
    color: white;
    font-weight: 600;
    border: none;
}

/* Hero Section Background */
.hero-section {


    position: relative;
}

.service-main-bg {
    background: url('../../assest/images/services-bg.webp') no-repeat center center/cover;
    position: relative;
    min-height: 100vh;
}

/* The Glass Card */
.hero-card {
    background: linear-gradient(135deg, rgba(232, 100, 61, 0.7) 0%, var(--glass-bg) 50%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 60px;
    /* Highly rounded corners per image */
    padding: 80px 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card h1 {
    font-size: 3.5rem;
}

.hero-card p {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Buttons inside Card */
.btn-orange-action {
    background-color: var(--primary-orange);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
}

.btn-outline-light-custom {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    background: transparent;
}

.btn-outline-light-custom:hover {
    background: white;
    color: var(--dark-teal);
}

.marquee-section {
    white-space: nowrap;
    position: relative;
    display: flex;
}

.marquee-content {
    display: flex;
    /* Adjust '30s' to change the speed (higher = slower) */
    animation: scroll-marquee 30s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    padding: 0 40px;
    /* Space between items */
    color: #103A36;
    /* Dark teal color from image */
    font-weight: 700;
    font-size: 1.1rem;
}

.marquee-item img {
    height: 24px;
    margin-right: 15px;
}

/* Pause animation on hover if you want */
.marquee-section:hover .marquee-content {
    animation-play-state: paused;
}

/* Keyframes for infinite scrolling */
@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

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

/* Styling for the Heading (based on your request) */
.er-title {
    font-weight: 700;
    color: #103A36;
    font-size: 2.5rem;
}

.er-title span {
    color: #E8643D;
    /* The orange color */
}

.er-desc {
    color: #555;
    line-height: 1.6;
}

/* Service Card Design */
.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    background-color: #103A36;
    /* Dark teal */
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-name {
    font-weight: 700;
    color: #103A36;
    line-height: 1.2;
    font-size: 1.25rem;
}

.service-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
}

/* Background Numbers (01, 02...) */
.card-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    font-weight: 700;
    color: #E8643D;
    opacity: 0.1;
    /* Very light subtle look */
    font-family: sans-serif;
}

/* Section Background */
.engagement-section {
    background-image: url('../../assest/images/engagment-bg.webp');
    background-size: cover;
    background-position: center;
}

/* Typography Tweaks */
.text-orange {
    color: #E8643D !important;
}

.text-teal {
    color: #103A36;
}

.osha-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Left Column: White Card Icon */
.icon-circle-teal {
    background: #103A36;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.small-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Right Column: Glassmorphism Card */
.glass-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Orange Button */
.btn-orange-lg {
    background-color: #E8643D;
    color: white;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-orange-lg:hover {
    background-color: #d15632;
    color: white;
    transform: translateY(-2px);
}

/* Container styling */
.impact-section {
    background-color: #E9ECEF;
    /* Light grey background from image */
}

/* Card Styling */
.impact-card {
    background: #f8f9fa;
    /* Slightly off-white */
    border: 1px solid #ced4da;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

/* Icons */
.impact-card i {
    font-size: 2.5rem;
    color: #E8643D;
    /* Brand Orange */
    display: block;
}

/* Titles */
.impact-card h4 {
    color: #103A36;
    /* Dark Teal */
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Paragraph text */
.impact-card p {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}


/* Hover effect for interactivity */
.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Background & Typography */
.how-it-works {
    background-color: #082A26;
    /* Dark background from image */
}

.vps-main-heading span {
    color: #E8643D;
}

/* Stepper Logic */
.stepper-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.stepper-line {
    position: absolute;
    top: 25px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.step-item {
    z-index: 1;
    text-align: center;
    width: 150px;
    background-color: transparent;
    border: none;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #103A36;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.step-item.active .step-icon {
    background: #E8643D;
    color: white;
}

.step-label {
    color: #E8643D;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Detail Cards */
.detail-container {
    max-width: 900px;
}

.action-icon-box {
    background: #E8643D;
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-size: 1.5rem;
}

.prevention-card {
    background: #fdfdfd;
}

.border-orange {
    border-color: #E8643D !important;
}

.dot {
    width: 8px;
    height: 8px;
    background: #E8643D;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-main-title {
    font-weight: 700;
    color: #103A36;
    font-size: 2.5rem;
}

.faq-main-title span {
    color: #E8643D;
}

/* Custom Accordion Styling */
.rounded-pill-custom {
    border-radius: 50px !important;
    /* Matches the highly rounded ends in the image */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.custom-faq .accordion-button {
    background-color: white;
    color: #103A36;
    font-weight: 700;
    padding: 25px 35px;
    border-radius: 50px !important;
    font-size: 1.1rem;
}

/* Customizing the "+" and "x" icon button */
.custom-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    background-color: #0A2623;
    /* Dark Teal Circle */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 25px;
    transition: transform 0.3s ease;
    background-position: center;
}

.custom-faq .accordion-button:not(.collapsed) {
    background-color: white;
    box-shadow: none;
    color: #103A36;
}

/* Change icon to "x" or rotate when open */
.custom-faq .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
    background-color: #0A2623;
}

.custom-faq .accordion-body {
    padding: 0 40px 30px 40px;
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================
   SERVICE PAGE HERO RESPONSIVE STYLES
   ============================================ */

/* Large Devices (Desktops) */
@media (max-width: 1200px) {
    .hero-card h1 {
        font-size: 2.8rem;
    }

    .hero-card h2 {
        font-size: 1.5rem;
    }

    .hero-card {
        padding: 60px 50px;
        border-radius: 50px;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 991px) {
    .service-main-bg .hero-section {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .hero-card {
        padding: 50px 40px;
        border-radius: 40px;
    }

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

    .hero-card h2 {
        font-size: 1.3rem;
    }

    .hero-card p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 767px) {
    .service-main-bg .hero-section {
        padding: 80px 0 60px;
    }

    .hero-card {
        padding: 40px 25px;
        border-radius: 30px;
    }

    .hero-card h1 {
        font-size: 1.8rem;
        margin-bottom: 15px !important;
    }

    .hero-card h2 {
        font-size: 1.1rem;
        margin-bottom: 20px !important;
    }

    .hero-card p {
        font-size: 0.95rem;
        margin-bottom: 30px !important;
        padding: 0 !important;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575px) {
    .service-main-bg .hero-section {
        padding: 70px 0 50px;
    }

    .hero-card {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .hero-card h1 {
        font-size: 1.5rem;
        margin-bottom: 10px !important;
    }

    .hero-card h2 {
        font-size: 1rem;
        margin-bottom: 15px !important;
    }

    .hero-card p {
        font-size: 0.9rem;
        margin-bottom: 25px !important;
        line-height: 1.6;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Extra Extra Small Devices */
@media (max-width: 400px) {
    .hero-card {
        padding: 25px 15px;
        border-radius: 20px;
    }

    .hero-card h1 {
        font-size: 1.3rem;
    }

    .hero-card h2 {
        font-size: 0.95rem;
    }

    .hero-card p {
        font-size: 0.85rem;
    }
}

/* ============================================
   HOMEPAGE HERO SECTION RESPONSIVE STYLES
   ============================================ */

/* Large Devices (Desktops) */
@media (max-width: 1200px) {
    .hero-main-bg .hero-section {
        padding: 100px 0;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-desc {
        max-width: 480px;
    }

    .play-button-wrapper {
        width: 120px;
        height: 120px;
    }

    .image-box .doctor-img {
        max-width: 90%;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 991px) {
    .hero-main-bg .hero-section {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-buttons {
        gap: 15px;
    }

    .btn-main,
    .btn-outline-light {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .stats {
        margin-top: 40px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-text {
        font-size: 13px;
    }

    /* Hero Image Section */
    .image-box {
        margin-top: 50px;
        text-align: center;
    }

    .play-button-wrapper {
        width: 100px;
        height: 100px;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .outer-border {
        border-width: 8px;
    }

    .rotating-text {
        font-size: 7px;
    }

    .play-triangle {
        width: 30px;
        height: 30px;
    }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 767px) {
    .hero-main-bg .hero-section {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 14px;
        margin-top: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .stats {
        margin-top: 30px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-text {
        font-size: 12px;
    }

    .sub-icon-head {
        width: 16px;
        height: 16px;
    }

    .small-title {
        font-size: 12px;
    }

    .play-button-wrapper {
        width: 80px;
        height: 80px;
    }

    .outer-border {
        border-width: 6px;
    }

    .rotating-text {
        font-size: 5px;
    }

    .play-triangle {
        width: 24px;
        height: 24px;
    }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575px) {
    .hero-main-bg .hero-section {
        padding: 50px 0 30px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 13px;
    }

    .hero-buttons {
        margin-top: 25px;
    }

    .btn-main,
    .btn-outline-light {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .stats .col-4 {
        padding: 0 8px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-text {
        font-size: 11px;
    }

    .play-button-wrapper {
        width: 70px;
        height: 70px;
    }
}

/* ============================================
   HOW IT WORKS SECTION RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .how-works {
        padding: 60px 0;
    }

    .how-works .main-title {
        font-size: 1.8rem;
    }

    .how-works .desc {
        font-size: 1rem;
    }

    .step {
        padding: 18px 0;
    }

    .step h6 {
        font-size: 1.2rem;
    }

    .step p {
        font-size: 12px;
    }

    .step-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .how-works {
        padding: 50px 0;
    }

    .how-works .main-title {
        font-size: 1.5rem;
    }

    .step {
        flex-wrap: wrap;
        gap: 12px;
    }

    .step h6 {
        font-size: 1.1rem;
    }

    .step p {
        font-size: 11px;
        max-width: 100%;
    }

    .step-number {
        font-size: 2rem;
        top: 10px;
    }

    .icon-box {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* ============================================
   SERVICES SECTION RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }

    .service-card {
        padding: 25px;
    }

    .service-header .icon-box {
        width: 48px;
        height: 48px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 50px 0;
    }

    .service-card {
        padding: 20px;
        border-radius: 20px 20px 40px 20px;
    }

    .service-header {
        gap: 12px;
        margin-bottom: 12px;
    }

    .service-header .icon-box {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-text {
        font-size: 13px;
    }

    .btn-clinical {
        padding: 6px 14px;
        font-size: 12px;
        margin-top: 15px;
    }
}

/* ============================================
   ER COST SECTION RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .er-cost-section {
        padding: 60px 0;
    }

    .er-card {
        padding: 30px 20px;
    }

    .er-card h3 {
        font-size: 30px;
    }

    .er-card p {
        font-size: 14px;
    }

    .er-lines {
        display: none;
    }
}

@media (max-width: 767px) {
    .er-cost-section {
        padding: 50px 0;
    }

    .er-card {
        padding: 25px 18px;
        margin-bottom: 15px;
    }

    .er-card h3 {
        font-size: 26px;
    }

    .er-card p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .er-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .source {
        font-size: 10px;
    }
}

/* ============================================
   OSHA SECTION RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .osha-reporting-section {
        padding: 60px 0;
    }

    .osha-title {
        font-size: 2rem;
    }

    .osha-desc {
        font-size: 0.95rem;
    }

    .osha-features li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .osha-form-card {
        padding: 25px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .osha-reporting-section {
        padding: 50px 0;
    }

    .osha-title {
        font-size: 1.6rem;
    }

    .osha-desc {
        font-size: 0.9rem;
    }

    .osha-features li {
        font-size: 13px;
        gap: 10px;
    }

    .osha-features li i {
        font-size: 16px;
    }

    .osha-form-card {
        padding: 20px;
    }

    .form-field {
        padding: 10px 14px;
    }

    .form-field label {
        font-size: 10px;
    }

    .form-field .value {
        font-size: 12px;
    }

    .card-header-osha h5 {
        font-size: 16px;
    }
}

/* ============================================
   RESOURCES SECTION RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .resources-section {
        padding: 60px 0;
    }

    .resource-card {
        padding: 25px 20px;
    }

    .card-heading {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .resources-section {
        padding: 50px 0;
    }

    .resource-card {
        padding: 20px 18px;
        margin-bottom: 15px;
    }

    .badge-tag {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 15px;
    }

    .card-heading {
        font-size: 1rem;
    }

    .card-text {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .card-link {
        font-size: 12px;
    }
}

/* ============================================
   ROI CALCULATOR SECTION RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .roi-calculator-section {
        padding: 60px 0;
    }

    .calculator-wrapper {
        margin-top: 30px;
    }

    .bg-results {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .roi-calculator-section {
        padding: 50px 0;
    }

    .calculator-header .main-title {
        font-size: 1.5rem;
    }

    .calculator-header .sub-text {
        font-size: 0.9rem;
    }

    .form-label-custom {
        font-size: 13px;
    }

    .badge-value {
        font-size: 11px;
    }

    .result-card {
        padding: 12px 15px;
    }

    .res-value {
        font-size: 20px;
    }

    .res-label {
        font-size: 12px;
    }

    .res-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .btn-primary-custom {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* ============================================
   VPS VISIBILITY SECTION RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .vps-visibility-section {
        padding: 80px 0;
    }

    .vps-flow-container {
        margin-top: 60px;
    }

    .vps-step {
        margin-bottom: 30px;
    }

    .vps-step-title {
        font-size: 14px;
    }

    .vps-step-title span {
        font-size: 18px;
    }

    .vps-step-desc {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .vps-visibility-section {
        padding: 60px 0;
    }

    .vps-main-heading {
        font-size: 1.5rem;
    }

    .vps-sub-paragraph {
        font-size: 0.9rem;
    }

    .vps-flow-container {
        margin-top: 40px;
    }

    .vps-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .vps-step-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .vps-step-title span {
        font-size: 16px;
    }

    .vps-step-desc {
        font-size: 12px;
        max-width: 250px;
    }
}

/* ============================================
   WHO WE SERVE SECTION RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .who-we-serve {
        padding: 60px 0;
    }

    .serve-card .content-col {
        padding: 25px 30px;
    }

    .serve-card h3 {
        font-size: 1.1rem;
    }

    .serve-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .who-we-serve {
        padding: 50px 0;
    }

    .serve-card {
        margin-bottom: 20px;
    }

    .serve-card .img-col {
        padding: 10px;
    }

    .serve-card .content-col {
        padding: 20px;
    }

    .serve-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .serve-card p {
        font-size: 0.8rem;
    }

    .check-list {
        margin-top: 15px;
    }

    .check-list li {
        font-size: 0.8rem;
        margin-bottom: 8px;
        gap: 8px;
    }

    .check-list li img {
        width: 14px;
        height: 14px;
    }
}

/* ============================================
   FOUNDER SECTION RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .founder-section {
        padding: 80px 0;
        min-height: auto;
    }

    .founder-title {
        font-size: 2rem;
    }

    .founder-desc p {
        font-size: 0.95rem;
    }

    .btn-founder {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .founder-section {
        padding: 60px 0;
    }

    .founder-title {
        font-size: 1.6rem;
    }

    .founder-desc p {
        font-size: 0.9rem;
    }

    .onboarding-text {
        font-size: 0.95rem;
    }

    .btn-founder {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .founder-section .d-flex {
        flex-direction: column;
    }
}

/* ============================================
   FOOTER SECTION RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    footer {
        padding-top: 60px;
    }

    .newsletter-wrapper {
        padding: 40px 30px;
        margin-top: -60px;
    }

    .newsletter-title {
        font-size: 1.8rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    footer {
        padding-top: 50px;
    }

    .newsletter-wrapper {
        padding: 30px 20px;
        border-radius: 25px;
        margin-top: -40px;
        text-align: center;
    }

    .newsletter-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .newsletter-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .form-control {
        margin-bottom: 10px;
    }

    .btn-subscribe {
        width: 100%;
    }

    .footer-logo-text {
        font-size: 0.9rem;
        margin-top: 15px;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .footer-links a {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .copyright-bar {
        font-size: 0.8rem;
        margin-top: 40px;
        padding-top: 20px;
    }
}

@media (max-width: 575px) {
    .newsletter-wrapper {
        padding: 25px 15px;
        border-radius: 20px;
    }

    .newsletter-title {
        font-size: 1.3rem;
    }

    .footer-heading {
        font-size: 0.95rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}

/* ROI Calculator */
:root {
    --brand-teal: #052624;
    --brand-orange: #e85d33;
    --text-muted: #6c757d;
    --bg-light: #f8fafb;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ROI Page specific body styles - override only for this page */
.roi-calculator-section {
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Fix horizontal scroll on ROI page */
.roi-main-bg {
    overflow-x: hidden;
}

.roi-layout-wrapper {
    overflow-x: hidden;
}

.roi-main-content {
    overflow-x: hidden;
}

.roi-sidebar {
    overflow-x: hidden;
}

/* --- Header Styling --- */
.hero-banner {
    background-color: var(--brand-teal);
    color: white;
    padding: 40px;
    border-radius: 16px;
    
    position: relative;
    overflow: hidden;
}
.roi-main-bg{
    padding-top: 100px;
}
.badge-estimate {
    background-color: var(--brand-orange);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    position: absolute;
    top: 30px;
    right: 30px;
    text-transform: uppercase;
}

.brand-logo {
    color: var(--brand-orange);
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- Card & Component Styling --- */
.card {
    border: 1px solid #edf2f7;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 24px;
    margin-bottom: 24px;
    background: #fff;
}

.card-title-ui {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-teal);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Form Elements --- */
label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 6px;
}

.hint {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
}

.form-control,
.form-select {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    font-weight: 500;
    font-size: 0.9rem;
}

input[type=range] {
    accent-color: var(--brand-teal);
}

/* --- Result Metrics --- */
.metric-card {
    border-top: 4px solid var(--brand-teal);
    transition: transform 0.2s ease;
}
.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


.metric-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-teal);
    margin: 8px 0;
}

.metric-sub {
    font-size: 0.75rem;
    color: #a0aec0;
}

/* --- Tables & Tabs --- */
.nav-tabs {
    border-bottom: none;
    margin-bottom: 20px;
    gap: 10px;
}

.nav-link {
    border: none !important;
    font-size: 0.85rem;
    font-weight: 600;
    color: #718096;
    padding: 8px 16px;
    border-radius: 8px !important;
}



.table thead th {
    border: none;
    font-size: 0.72rem;
    color: #a0aec0;
    text-transform: uppercase;
}

.table td {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 8px;
    border-bottom: 1px solid #f7fafc;
}

.delta-col {
    color: var(--brand-orange);
}

.chart-bar-container {
    height: 12px;
    background: #edf2f7;
    border-radius: 6px;
    margin-top: 6px;
    position: relative;
}

.chart-bar-fill {
    height: 100%;
    border-radius: 6px;
    background: var(--brand-teal);
    transition: width 0.5s ease;
}

.chart-bar-fill.secondary {
    background: #cbd5e0;
}

/* CTA Styling */
.cta-banner {
    background-color: #052624;
    /* Brand Dark Teal */
    color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-text {
    color: #a3b1b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 650px;
}

/* Buttons */
.btn-schedule {
    background-color: #e85d33;
    /* Brand Orange */
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 12px;
}

.btn-schedule:hover {
    background-color: #cf4e28;
    color: white;
    transform: translateY(-2px);
}

.btn-pdf-outline {
    background-color: transparent;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-pdf-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

/* Disclaimer Text */
.disclaimer-footer {
    font-size: 0.75rem;
    color: #718096;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Print Optimization */
@media print {

    .cta-buttons,
    .no-print {
        display: none !important;
    }

    .cta-banner {
        border: 1px solid #052624;
        background-color: #052624 !important;
        -webkit-print-color-adjust: exact;
    }
}

/* ============================================
   ROI CALCULATOR PAGE - ULTRA PROFESSIONAL STYLES
   ============================================ */

/* Layout Wrapper */
.roi-layout-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: auto;
    gap: 0;
}

/* SIDEBAR STYLING - COMPACT & WEBSITE-LIKE */
.roi-sidebar {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #021f1f 100%);
    color: var(--white);
    padding: 1.5rem 1.25rem;
    height: auto;
    overflow-y: auto;
    position: sticky;
    top: 80px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 0;
}

.roi-sidebar-label {
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.roi-sidebar-label::before {
    content: '';
    width: 15px;
    height: 2px;
    background: var(--primary-orange);
}

/* Slider Block - Compact */
.roi-slider-block {
    margin-bottom: 1.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.roi-slider-block:last-child {
    border-bottom: none;
}

.roi-sl-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin-bottom: 0.15rem;
}

.roi-sl-hint {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.35rem;
}

.roi-sl-val {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

/* CUSTOM RANGE SLIDER - ULTRA PROFESSIONAL */
.roi-slider-block input[type=range] {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    appearance: none;
    margin: 1rem 0;
    outline: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.roi-slider-block input[type=range]:hover {
    background: rgba(255, 255, 255, 0.25);
}

.roi-slider-block input[type=range]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(219, 90, 54, 0.4);
    border: 3px solid var(--white);
}

.roi-slider-block input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(219, 90, 54, 0.6);
}

.roi-slider-block input[type=range]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(219, 90, 54, 0.4);
}

/* PACKAGE ROWS - PROFESSIONAL */
.roi-pkg-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.roi-pkg-row:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.roi-pkg-info {
    flex: 1;
}

.roi-pkg-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2px;
}

.roi-pkg-tag {
    font-size: 0.65rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.roi-pkg-controls {
    display: flex;
    align-items: center;
    width: 150px;
    gap: 10px;
}

.roi-pkg-controls input[type=range] {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    appearance: none;
    border-radius: 2px;
    cursor: pointer;
}

.roi-pkg-controls input[type=range]::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--primary-orange);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 2px solid var(--white);
}

.roi-pkg-controls input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.roi-pkg-rate-val {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    width: 30px;
    text-align: right;
    color: var(--white);
}

/* MAIN CONTENT - PROFESSIONAL */
.roi-main-content {
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, #f8fafb 0%, #f0f4f5 100%);
    min-height: 100vh;
}

.roi-section-head {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.roi-section-head::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: 2px;
}

/* Summary Cards - Ultra Professional with Hover */
.roi-sum-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.roi-sum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.roi-sum-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(219, 90, 54, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.roi-sum-card:hover::after {
    opacity: 1;
}

.roi-sum-card:hover::before {
    transform: scaleX(1);
}

.roi-sum-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 35px rgba(219, 90, 54, 0.12);
    border-color: rgba(219, 90, 54, 0.2);
}

.roi-sum-card.roi-pos::before {
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
}

.roi-sum-card.roi-neg::before {
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
}

.roi-sc-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.roi-sc-val {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: #333;
    line-height: 1.2;
}

.roi-sc-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Mini Cards - Professional with Enhanced Hover */
.roi-mini-card {
   background-color: #032E2E;
    color: var(--white);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.roi-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.roi-mini-card:hover::before {
    left: 100%;
}

.roi-mini-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(3, 46, 46, 0.4);
}

.roi-mini-card.roi-orange {
   background-color: var(--primary-orange);
    color: var(--white);
}

.roi-mini-card.roi-orange:hover {
    box-shadow: 0 12px 30px rgba(219, 90, 54, 0.4);
}

.roi-mini-card span:first-child {
    opacity: 0.85;
    font-size: 0.85rem;
    font-weight: 500;
}

.roi-mini-card span:last-child {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Table Container - Professional */
.roi-table-container {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.roi-table-container .table thead th {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f3 100%);
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 1rem 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    border: none;
}

.roi-table-container .table tbody td {
    padding: 1rem 1.25rem;
    vertical-align: middle;
    border-color: #f0f0f0;
}

.roi-table-container .table tfoot td {
    padding: 1rem 1.25rem;
    border: none;
}

/* Table Row Hover Effects - Website Like */
.roi-table-container .table tbody tr {
    transition: all 0.3s ease;
    cursor: pointer;
}

.roi-table-container .table tbody tr:hover {
    background: linear-gradient(90deg, rgba(219, 90, 54, 0.04) 0%, rgba(219, 90, 54, 0.02) 100%);
    transform: scale(1.005);
}

.roi-table-container .table tbody tr:hover td {
    color: var(--primary-dark);
}

.roi-table-container .table tbody tr:hover td:first-child {
    border-left: 3px solid var(--primary-orange);
    padding-left: calc(1.25rem - 3px);
}

/* Table Cell Animation on Hover */
.roi-table-container .table tbody tr:hover .delta-col {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Table Footer Styling */
.roi-table-container .table tfoot tr {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f3 100%);
}

.roi-table-container .table tfoot td {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

/* Tags - Professional */
.roi-tag {
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roi-tag.roi-t-er {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.roi-tag.roi-t-br {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

/* Chart Card - Professional */
.roi-chart-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Hero Banner - Professional */
.roi-hero-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #021f1f 100%);
    color: white;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.roi-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(219, 90, 54, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.roi-badge-estimate {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    font-size: 0.65rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    position: absolute;
    top: 20px;
    right: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roi-brand-logo {
    color: var(--primary-orange);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.75rem;
}

.roi-hero-banner h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.roi-hero-banner p {
    opacity: 0.8;
    margin: 0;
    max-width: 600px;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Styles for ROI Calculator */
@media (max-width: 1200px) {
    .roi-layout-wrapper {
        grid-template-columns: 280px 1fr;
    }
    
    .roi-sidebar {
        padding: 1.5rem;
    }
    
    .roi-main-content {
        padding: 2rem;
    }
}

@media (max-width: 1100px) {
    .roi-layout-wrapper {
        grid-template-columns: 1fr;
    }

    .roi-sidebar {
        height: auto;
        position: relative;
        padding: 1.5rem;
        top: 0;
        border-radius: 0 0 20px 20px;
    }
    
    .roi-main-content {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .roi-hero-banner {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 767px) {
    .roi-main-bg {
        padding-top: 70px;
    }
    
    .roi-sidebar {
        padding: 1.25rem;
    }
    
    .roi-sidebar-label {
        font-size: 0.6rem;
    }
    
    .roi-slider-block {
        margin-bottom: 1rem;
        padding: 0.5rem 0;
    }
    
    .roi-sl-label {
        font-size: 0.7rem;
    }
    
    .roi-sl-hint {
        font-size: 0.55rem;
    }
    
    .roi-sl-val {
        font-size: 1.25rem;
    }
    
    .roi-main-content {
        padding: 1rem;
    }
    
    .roi-section-head {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .roi-sum-card {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .roi-sc-label {
        font-size: 0.65rem;
    }
    
    .roi-sc-val {
        font-size: 1.25rem;
    }
    
    .roi-sc-sub {
        font-size: 0.6rem;
    }
    
    .roi-mini-card {
        padding: 0.85rem 1rem;
        margin-bottom: 0.5rem;
    }
    
    .roi-mini-card span:last-child {
        font-size: 1rem;
    }
    
    .roi-hero-banner {
        padding: 1.25rem;
        border-radius: 0 0 16px 16px;
    }
    
    .roi-hero-banner h1 {
        font-size: 1.25rem;
    }
    
    .roi-hero-banner p {
        font-size: 0.8rem;
    }
    
    .roi-badge-estimate {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-bottom: 0.75rem;
        font-size: 0.6rem;
    }
    
    .roi-brand-logo {
        font-size: 0.75rem;
    }
    
    .roi-chart-card {
        height: 250px;
        padding: 1rem;
    }
    
    .roi-table-container {
        margin-top: 1rem;
    }
    
    .roi-table-container .table thead th {
        font-size: 0.6rem;
        padding: 0.75rem 0.5rem;
    }
    
    .roi-table-container .table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .roi-table-container .table tfoot td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .roi-pkg-row {
        padding: 0.5rem;
        margin-bottom: 0.75rem;
        flex-direction: column;
    }
    
    .roi-pkg-name {
        font-size: 0.7rem;
    }
    
    .roi-pkg-tag {
        font-size: 0.55rem;
    }
    
    .roi-pkg-controls {
        width: 140px;
    }
    
    .roi-pkg-rate-val {
        font-size: 0.75rem;
    }
    
    .roi-tag {
        font-size: 0.5rem;
        padding: 2px 6px;
    }
}

@media (max-width: 575px) {
    .roi-main-bg {
        padding-top: 60px;
    }
    
    .roi-sidebar {
        padding: 1rem;
    }
    
    .roi-sidebar-label {
        font-size: 0.55rem;
        margin-bottom: 0.75rem;
    }
    
    .roi-slider-block {
        margin-bottom: 0.75rem;
        padding: 0.4rem 0;
    }
    
    .roi-sl-label {
        font-size: 0.65rem;
    }
    
    .roi-sl-hint {
        font-size: 0.5rem;
    }
    
    .roi-sl-val {
        font-size: 1.1rem;
    }
    
    .roi-slider-block input[type=range] {
        height: 5px;
        margin: 0.75rem 0;
    }
    
    .roi-slider-block input[type=range]::-webkit-slider-thumb {
        width: 16px;
        height: 16px;
    }
    
    .roi-main-content {
        padding: 0.75rem;
    }
    
    .roi-section-head {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .roi-section-head::before {
        width: 3px;
        height: 16px;
    }
    
    .row.g-4.mb-4 {
        --bs-gutter-y: 0.5rem;
    }
    
    .roi-sum-card {
        padding: 0.85rem;
        margin-bottom: 0.5rem;
        border-radius: 10px;
    }
    
    .roi-sum-card::before {
        height: 2px;
    }
    
    .roi-sc-label {
        font-size: 0.6rem;
        margin-bottom: 0.25rem;
    }
    
    .roi-sc-val {
        font-size: 1.1rem;
        margin: 0.25rem 0;
    }
    
    .roi-sc-sub {
        font-size: 0.55rem;
    }
    
    .row.g-3.mb-5 {
        --bs-gutter-y: 0.5rem;
        margin-bottom: 1.5rem !important;
    }
    
    .roi-mini-card {
        padding: 0.75rem;
        border-radius: 10px;
    }
    
    .roi-mini-card span:first-child {
        font-size: 0.75rem;
    }
    
    .roi-mini-card span:last-child {
        font-size: 0.9rem;
    }
    
    .roi-hero-banner {
        padding: 1rem;
        border-radius: 0 0 12px 12px;
    }
    
    .roi-hero-banner h1 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .roi-hero-banner p {
        font-size: 0.75rem;
    }
    
    .roi-badge-estimate {
        font-size: 0.55rem;
        padding: 4px 10px;
        margin-bottom: 0.5rem;
    }
    
    .roi-brand-logo {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }
    
    .roi-brand-logo svg {
        width: 18px;
        height: 18px;
    }
    
    .roi-chart-card {
        height: 220px;
        padding: 0.75rem;
        border-radius: 12px;
    }
    
    .roi-table-container {
        margin-top: 0.75rem;
        border-radius: 12px;
    }
    
    .roi-table-container .table thead th {
        font-size: 0.55rem;
        padding: 0.5rem 0.35rem;
    }
    
    .roi-table-container .table tbody td {
        padding: 0.5rem 0.35rem;
        font-size: 0.7rem;
    }
    
    .roi-table-container .table tfoot td {
        padding: 0.5rem 0.35rem;
        font-size: 0.7rem;
    }
    
    .roi-pkg-row {
        padding: 0.4rem;
        margin-bottom: 0.5rem;
        border-radius: 8px;
               flex-direction: column;
               align-items: start;
    }
    
    .roi-pkg-name {
        font-size: 0.6rem;
    }
    
    .roi-pkg-tag {
        font-size: 0.5rem;
    }
    
    .roi-pkg-controls {
        width: 120px;
        gap: 6px;
    }
    
    .roi-pkg-controls input[type=range] {
        height: 3px;
    }
    
    .roi-pkg-controls input[type=range]::-webkit-slider-thumb {
        width: 12px;
        height: 12px;
    }
    
    .roi-pkg-rate-val {
        font-size: 0.65rem;
        width: 24px;
    }
    
    .roi-tag {
        font-size: 0.45rem;
        padding: 1px 4px;
        margin-left: 4px;
    }
    
    /* Footer responsive for ROI page */
    .roi-calculator-section + footer .newsletter-wrapper {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .roi-calculator-section + footer .newsletter-title {
        font-size: 1.1rem;
    }
    
    .roi-calculator-section + footer .footer-heading {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .roi-main-content {
        padding: 0.5rem;
    }
    
    .roi-sum-card {
        padding: 0.75rem;
    }
    
    .roi-sc-val {
        font-size: 1rem;
    }
    
    .roi-mini-card {
        padding: 0.6rem;
    }
    
    .roi-hero-banner {
        padding: 0.85rem;
    }
    
    .roi-hero-banner h1 {
        font-size: 1rem;
    }
    
    .roi-chart-card {
        height: 200px;
    }
    
    .roi-table-container .table thead th,
    .roi-table-container .table tbody td,
    .roi-table-container .table tfoot td {
        padding: 0.4rem 0.25rem;
    }
    
    .roi-pkg-controls {
        width: 100px;
    }
}

/* Responsive Mobile Fixes */
@media (max-width: 991px) {
    .cta-banner {
        text-align: center;
        padding: 30px 20px;
    }

    .cta-text {
        margin: 0 auto 25px auto;
    }

    .btn-schedule {
        margin-right: 0;
        margin-bottom: 12px;
        display: block;
    }

    .btn-pdf-outline {
        display: block;
        width: 100%;
    }
}

/* ============================================
   HOW IT WORKS PAGE - ENTERPRISE DEPLOYMENT FRAMEWORK
   ============================================ */

.hero-card-two {
    background: linear-gradient(135deg, #003b3b 0%, #002b2b 100%);
    border-radius: 60px;
    padding: 60px;
    position: relative;
}

.text-orange {
    color: #DB5A36 !important;
}

.vps-main-heading {
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.vps-sub-paragraph {
    color: #cbd5d5;
    max-width: 520px;
    font-size: 14px;
}

/* Timeline Container */
.deployment-timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Timeline Line - Hidden by default, shown behind tabs */
.timeline-line {
position: absolute;
    top: 47px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

/* Timeline Navigation Pills */
.deployment-timeline-container .nav-pills {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.deployment-timeline-container .nav-pills .nav-item {
    flex: 1;
    text-align: center;
}

.deployment-timeline-container .nav-pills .nav-link {
    background: none;
    border: none;
    opacity: 0.6;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.deployment-timeline-container .nav-pills .nav-link:hover {
    opacity: 0.8;
}

.deployment-timeline-container .nav-pills .nav-link.active {
    opacity: 1;
    background: transparent;
}

/* Timeline Icon Wrapper */
.timeline-img-wrapper {
    width: 54px;
    height: 54px;
    background: #002b2b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.deployment-timeline-container .nav-link.active .timeline-img-wrapper {
    background: #DB5A36;
    border-color: #DB5A36;
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(219, 90, 54, 0.5);
}

/* Timeline Label */
.timeline-label {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.deployment-timeline-container .nav-link.active .timeline-label {
    color: white;
    font-weight: 700;
}

/* Framework Card */
.framework-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Light Soft Background */
.bg-light-soft {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f3 100%);
}

/* Phase Tag */
.phase-tag {
    color: #DB5A36;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Heading Main */
.card-heading-main {
    font-size: 22px;
    font-weight: 700;
    color: #032E2E;
    font-family: 'Sora', sans-serif;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #DB5A36;
    border-radius: 50%;
    margin-right: 16px;
    flex-shrink: 0;
}

.feature-list li:hover {
    color: #032E2E;
    padding-left: 5px;
}

/* Tab Content Styling */
.tab-content {
    position: relative;
    z-index: 1;
}

.tab-pane {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Border End for Left Column */
.border-end {
    border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* Text Muted Override */
.framework-card .text-muted {
    color: #6c757d !important;
}

/* ============================================
   HOW IT WORKS PAGE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 991px) {
    .hero-card-two {
        padding: 40px 30px;
        border-radius: 40px;
    }

    .vps-main-heading {
        font-size: 28px;
    }

    .timeline-line {
        top: 45px;
        left: 8%;
        right: 8%;
    }

    .timeline-img-wrapper {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .timeline-label {
        font-size: 11px;
    }

    .framework-card .row g-0 {
        flex-direction: column;
    }

    .framework-card .col-md-5,
    .framework-card .col-md-7 {
        padding: 30px 25px !important;
    }

    .framework-card .border-end {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    }
}

@media (max-width: 767px) {
    .hero-card-two {
        padding: 30px 20px;
        border-radius: 30px;
    }

    .vps-main-heading {
        font-size: 24px;
    }

    .vps-sub-paragraph {
        font-size: 13px;
    }

    .deployment-timeline-container {
        padding: 15px 0;
    }

    .timeline-line {
        display: none;
    }

    .deployment-timeline-container .nav-pills {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .deployment-timeline-container .nav-pills .nav-item {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .timeline-img-wrapper {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .timeline-label {
        font-size: 10px;
        margin-top: 8px;
    }

    .phase-tag {
        font-size: 11px;
    }

    .card-heading-main {
        font-size: 18px;
    }

    .framework-card .col-md-5,
    .framework-card .col-md-7 {
        padding: 25px 20px !important;
    }

    .feature-list li {
        font-size: 13px;
        padding: 10px 0;
    }
}

@media (max-width: 575px) {
    .hero-card-two {
        padding: 25px 15px;
        border-radius: 25px;
    }

    .vps-main-heading {
        font-size: 20px;
    }

    .deployment-timeline-container .nav-pills .nav-item {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .timeline-img-wrapper {
        width: 40px;
        height: 40px;
        font-size: 13px;
        border-width: 2px;
    }

    .framework-card {
        margin-top: 20px;
        border-radius: 15px;
    }

    .framework-card .col-md-5,
    .framework-card .col-md-7 {
        padding: 20px 15px !important;
    }
}
/* ============================================
   HOW IT WORKS PAGE - CARE STEPS SECTION
   ============================================ */

#care-steps-section {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

#care-steps-section .small-title {
    color: #D95D39;
    font-size: 14px;
    letter-spacing: 1px;
}

#care-steps-section .main-title {
    font-size: 42px;
    font-weight: 700;
    color: #002B2B;
}

#care-steps-section .main-title span {
    color: #D95D39;
}

#care-steps-section .desc {
    color: #666;
    font-size: 18px;
}

#care-steps-section .step-label {
    font-weight: 700;
    font-size: 18px;
    color: #002B2B;
}

#care-steps-section .step-heading {
    font-size: 28px;
    font-weight: 700;
    color: #D95D39;
}

#care-steps-section .step-heading span {
    color: #002B2B;
}

#care-steps-section .step-subtext {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Card Styles with Ultra Professional Hover */
#care-steps-section .info-card {
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#care-steps-section .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D95D39, #ff7b54);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

#care-steps-section .info-card:hover::before {
    transform: scaleX(1);
}

#care-steps-section .light-card {
    background: #FFFFFF;
    border: 1.5px solid #D95D39;
    border-top-left-radius: 20px;
}

#care-steps-section .light-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(217, 93, 57, 0.15);
    border-color: #ff7b54;
}

#care-steps-section .dark-card {
    background: #032525;
    color: #ffffff;
}

#care-steps-section .dark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(217, 93, 57, 0.25);
    background: #043535;
}

#care-steps-section .info-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

#care-steps-section .info-card:hover h4 {
    transform: translateX(5px);
}

#care-steps-section .light-card h4 {
    color: #032525;
}

#care-steps-section .dark-card h4 {
    color: #D95D39;
}

/* Privacy Box */
#care-steps-section .privacy-box {
    background: #F9F9F9;
    border: 1.5px solid #D95D39;
    border-radius: 15px;
    padding: 25px;
    max-width: 100%;
    transition: all 0.3s ease;
}

#care-steps-section .privacy-box:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(217, 93, 57, 0.1);
    transform: translateX(5px);
}

#care-steps-section .privacy-box h5 {
    font-weight: 700;
    color: #032525;
}

#care-steps-section .privacy-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
#care-step-two {
    background-color: #C7C7C7;
}

#care-step-two .step-label { font-weight: 700; color: #032525; }
#care-step-two .step-heading { font-weight: 700; color: #D95D39; }
#care-step-two .step-heading span { color: #032525; }
#care-step-two .step-subtext { color: #555; max-width: 850px; margin: 0 auto; line-height: 1.6; }

/* White Cards */
#care-step-two .assessment-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

#care-step-two .assessment-card:hover {
    transform: translateY(-5px);
}

/* Icon Box Styling */
#care-step-two .icon-box {
    background: #f0f4f4;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#care-step-two .icon-box i {
    font-size: 24px;
    color: #032525; /* Dark teal */
}

#care-step-two .assessment-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #032525;
    margin-bottom: 15px;
}

/* Dark Emergency Container */
#care-step-two .emergency-container {
    background: #032525;
    border-radius: 25px;
    padding: 50px;
    color: #fff;
}

#care-step-two .orange-text { color: #D95D39 !important; }

#care-step-two .list-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
}

#care-step-two .emergency-list {
    list-style: none;
    padding: 0;
    font-size: 14px;
    line-height: 1.8;
}

#care-step-two .emergency-list li::before {
    content: "•";
    color: #D95D39;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

/* Alert Box */
#care-step-two .alert-white-box {
    background: #fff;
    border-radius: 15px;
    padding: 20px 25px;
    color: #333;
}

#care-step-two .alert-icon-bg {
    background: #032525;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#care-step-two .alert-icon-bg i {
    font-size: 20px;
}

@media (min-width: 768px) {
    .border-end-md { border-right: 1px solid rgba(255,255,255,0.1); }
}#care-step-three {
    background-color: #ffffff;
}

#care-step-three .step-label { font-weight: 700; color: #032525; text-align: center; }
#care-step-three .step-heading { font-weight: 700; color: #032525; text-align: center; }
#care-step-three .step-heading span { color: #D95D39; }
#care-step-three .step-subtext { color: #555; max-width: 800px; margin: 0 auto; text-align: center; font-size: 14px; line-height: 1.6; }

/* Timeline Logic */
#care-step-three .timeline-container {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
}

/* The Vertical Line */
#care-step-three .timeline-container::before {
    content: '';
    position: absolute;
    left: 35px; /* Centers with the 70px icon */
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #032525;
    z-index: 1;
}

#care-step-three .timeline-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* Icon Box Styles */
#care-step-three .timeline-icon {
    width: 70px;
    height: 70px;
    background-color: #032525;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(217, 93, 57, 0.2); /* Subtle orange glow like the image */
}

/* Content Box Styles */
#care-step-three .timeline-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    flex-grow: 1;
    border: 1px solid #f0f0f0;
}

#care-step-three .time-label {
    color: #D95D39;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

#care-step-three .timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #032525;
    margin-bottom: 5px;
}

#care-step-three .timeline-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Bottom Dark Footer Box */
#care-step-three .step-footer-box {
    background: #032525;
    color: #fff;
    padding: 25px 40px;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
}

#care-step-three .footer-icon-circle {
    width: 45px;
    height: 45px;
    border: 1.5px solid #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Mobile Tweak */
@media (max-width: 576px) {
    #care-step-three .timeline-container::before { left: 25px; }
    #care-step-three .timeline-icon { width: 50px; height: 50px; font-size: 18px; }
    #care-step-three .timeline-item { gap: 15px; }
}#care-step-four {
   background-image: url('../../assest/images/htw.bg.webp');
   background-repeat: no-repeat;
   background-size: cover;
background-position: center;
    border-radius: 40px;
    padding: 80px 0;
}
.htw-sec{
    background-color: #E3E3E3;
}
#care-step-four .step-label { font-weight: 700; color: #fff; opacity: 0.8; }
#care-step-four .step-heading { font-weight: 700; color: #fff; font-size: 32px; }
#care-step-four .step-heading span { color: #fff; border-bottom: 3px solid #D95D39; }
#care-step-four .step-subtext { color: rgba(255,255,255,0.8); max-width: 700px; margin: 0 auto; font-size: 15px; }

/* Paperwork Card Styles */
#care-step-four .paperwork-card {
    position: relative;
    padding-top: 30px; /* Space for the floating icon */
}

#care-step-four .floating-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    color: #032525;
    font-size: 24px;
}

#care-step-four .card-inner {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    position: relative;
    min-height: 200px;
}

#care-step-four .card-label {
    padding: 40px 20px 20px;
    font-weight: 700;
    color: #032525;
    font-size: 18px;
    background: #fff;
    z-index: 2;
}

#care-step-four .card-content-overlay {
    padding: 30px 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Background under the content */
}

#care-step-four .card-content-overlay p {
    color: #fff;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Dummy Gradient Backgrounds */
#care-step-four .bg-gradient-1 {
   
    background: linear-gradient(rgba(3, 37, 37, 0.8), rgba(3, 37, 37, 0.8)), url('../../assest/images/bg-cc.webp') center/cover no-repeat;
}

#care-step-four .bg-gradient-2 {
 background: linear-gradient(rgba(3, 37, 37, 0.8), rgba(3, 37, 37, 0.8)), url('../../assest/images/bg-ccc.webp') center/cover no-repeat;
}

#care-step-four .bg-gradient-3 {
 background: linear-gradient(rgba(3, 37, 37, 0.8), rgba(3, 37, 37, 0.8)), url('../../assest/images/bg-cccc.webp') center/cover no-repeat;
}

#care-step-four .bg-gradient-4 {
 background: linear-gradient(rgba(3, 37, 37, 0.8), rgba(3, 37, 37, 0.8)), url('../../assest/images/bg-ccccc.webp') center/cover no-repeat;
}

/* Alert Box */
#care-step-four .alert-white-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    border-left: 6px solid #D95D39;
}

#care-step-four .alert-icon-bg {
    background: #032525;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}#care-step-five {
    background-color: #ffffff;
}

#care-step-five .step-label { 
    font-weight: 700; 
    color: #032525; 
}

#care-step-five .step-heading { 
    font-weight: 700; 
    color: #032525; 
}

#care-step-five .step-heading span { 
    color: #D95D39; 
}

#care-step-five .step-subtext { 
    color: #555; 
    max-width: 800px; 
    margin: 0 auto; 
    line-height: 1.6; 
}

/* Card Base Styles */
#care-step-five .followup-card {
    padding: 40px 30px;
    border-radius: 25px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#care-step-five .light-card {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

#care-step-five .highlight-card {
    background: #fff;
    border: 1.5px solid #D95D39;
    /* Specific curved corner look from design */
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

/* Icon Box */
#care-step-five .fa-icon-box {
    background: #f0f4f4;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#care-step-five .fa-icon-box i {
    font-size: 24px;
    color: #032525;
}

#care-step-five h4 {
    font-size: 22px;
    font-weight: 700;
    color: #032525;
    margin-bottom: 15px;
}

#care-step-five .highlight-card h4 {
    color: #D95D39;
}

#care-step-five p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

#care-step-five .followup-card:hover {
    transform: translateY(-5px);
}
/* IT and Security */
/* Custom Additions for Privacy & Security Page */
.security-main-bg {
  background-image: url('../../assest/images/it-bg.webp');
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
}

/* Adding the subtle grid pattern seen in your screenshot */
.security-main-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.security-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Heading & Text Styling */
.security-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
}

.text-orange-accent {
    color: var(--primary-orange);
}

.security-description {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 600px;
}

/* Pixel Perfect Feature Boxes */
.security-feature-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--btn-transition);
    height: 100%;
}

.security-feature-box:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.security-feature-box i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.security-feature-box span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Tablet Mockup Glow */
.tablet-container {
    position: relative;
}

.tablet-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: var(--primary-orange);
    filter: blur(120px);
    opacity: 0.15;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Typography & Headers */
.display-number {
    font-size: 5rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px #e0e0e0; /* Outline effect */
    line-height: 1;
    margin-bottom: 10px;
}

.section-main-title {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 2.5rem;
}

.text-orange {
    color: var(--primary-orange);
}

.section-sub-text {
    color: var(--primary-dark);
    max-width: 700px;
    opacity: 0.8;
}

/* Info Cards Styling */
.info-glass-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); /* Soft shadow like in image */
    transition: transform 0.3s ease;
}

.info-glass-card:hover {
    transform: translateY(-10px);
}

.icon-box-dark {
    background-color: var(--primary-dark);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.info-glass-card .card-title {
    color: var(--primary-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.info-glass-card .card-text {
    color: #444;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* The Waves Background */
.waves-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 1;
    background-image: url('path-to-your-waves-svg.svg'); /* You can use an SVG of these lines */
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.6;
    transform: translateY(-50%);
}
.privacy-wrapper {
    display: flex;
    gap: 15px;
    height: 500px;
    margin-top: 50px;
}

.privacy-card {
    position: relative;
    flex: 1;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

/* Expanded state width */
.privacy-card.active {
    flex: 3;
}

.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.privacy-card.active .card-bg-img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3, 46, 46, 0.2), rgba(3, 46, 46, 0.9));
    z-index: 2;
    transition: background 0.4s ease;
}

.privacy-card.active .card-overlay {
    background: linear-gradient(to bottom, rgba(3, 46, 46, 0.3), rgba(219, 90, 54, 0.85));
}

/* Vertical text for collapsed cards */
.vertical-title {
    position: absolute;
    top: 61%;
    left: 30%;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: center;
    color: #fff;
    white-space: nowrap;
    font-size: 1.8rem;
    font-weight: 700;
    transition: opacity 0.3s ease;
    width: max-content;
    z-index: 3;
    pointer-events: none;
}

.privacy-card.active .vertical-title {
    opacity: 0;
    visibility: hidden;
}

/* Content that appears when expanded */
.card-content {
    position: relative;
    padding: 40px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s, visibility 0.4s ease;
    z-index: 4;
    pointer-events: none;
}

.privacy-card.active .card-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.card-content h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .privacy-wrapper {
        flex-direction: column;
        height: auto;
    }

    .privacy-card {
        height: 150px;
        flex: none;
        transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .privacy-card.active {
        height: 350px;
        flex: none;
    }

    .vertical-title {
        transform: none;
        left: 30px;
        bottom: 20px;
        top: auto;
    }

    .privacy-card.active .vertical-title {
        opacity: 0;
        visibility: hidden;
    }
}
/* Compliance Card Styles */
.compliance-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    transition: transform 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-5px);
}

.card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-uppercase: uppercase;
    letter-spacing: 1px;
}
.hosting-card {
    background: #f1f1f1; /* Light grey base from image */
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.hosting-card .icon-circle {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.hosting-card h4 {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.hosting-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

/* Hover & Featured State (Center Card) */
.hosting-card:hover, 
.featured-card {
    background: #e9e9e9;
    transform: translateY(-5px);
    border-bottom: 4px solid var(--primary-orange) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.featured-card .icon-circle {
    border: 1px solid var(--primary-orange-light);
}

/* Specific styling for the display number outline */
.display-number {
    font-size: 4rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #ccc;
    opacity: 0.6;
}
/* Vendor Management Styles */
.security-pkg-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pkg-icon {
    background: var(--primary-dark);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.security-pkg-card h4 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.security-pkg-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

.vendor-footer-text p {
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ============================================
   IT AND SECURITY PAGE - CARD HOVER EFFECTS
   ============================================ */

/* Security Feature Box Hover */
.security-feature-box {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.security-feature-box:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(219, 90, 54, 0.2);
}

.security-feature-box:hover i {
    transform: scale(1.2) rotate(-10deg);
    color: var(--primary-orange);
}

.security-feature-box i {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.security-feature-box:hover span {
    color: var(--white);
}

.security-feature-box span {
    transition: color 0.3s ease;
}

/* Info Glass Card Hover - Enterprise Deployment Framework */
.info-glass-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.info-glass-card:hover::before {
    transform: scaleX(1);
}

.info-glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 50px rgba(219, 90, 54, 0.15),
        0 0 0 1px rgba(219, 90, 54, 0.2);
}

.info-glass-card:hover .icon-box-dark {
    background: var(--primary-orange);
    transform: scale(1.1) rotate(-5deg);
}

.info-glass-card .icon-box-dark {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-glass-card:hover .card-title {
    color: var(--primary-orange);
}

.info-glass-card .card-title {
    transition: color 0.3s ease;
}

/* Compliance Card Hover */
.compliance-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.compliance-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.compliance-card:hover::before {
    transform: scaleY(1);
}

.compliance-card:hover {
    transform: translateX(8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(219, 90, 54, 0.2);
}

.compliance-card:hover .card-label {
    color: var(--primary-dark);
}

.compliance-card:hover h4 {
    color: var(--primary-orange);
}

.compliance-card h4 {
    transition: color 0.3s ease;
}

/* Hosting Card Hover - No ::after pseudo element since border-bottom already exists */
.hosting-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hosting-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15);
    border-bottom-color: var(--primary-orange) !important;
}

.hosting-card:hover .icon-circle {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 10px 25px rgba(219, 90, 54, 0.3);
}

.hosting-card .icon-circle {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hosting-card:hover h4 {
    color: var(--primary-orange);
}

.hosting-card h4 {
    transition: color 0.3s ease;
}

/* Featured Card - Already has border-bottom, just enhance on hover */
.hosting-card.featured-card:hover {
    box-shadow: 
        0 25px 50px rgba(219, 90, 54, 0.25);
}

/* Security Package Card Hover */
.security-pkg-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.security-pkg-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.security-pkg-card:hover .pkg-icon {
    background: var(--primary-orange);
    transform: scale(1.1) rotate(-5deg);
}

.security-pkg-card .pkg-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.security-pkg-card:hover h4 {
    color: var(--primary-orange);
}

.security-pkg-card h4 {
    transition: color 0.3s ease;
}

/* Privacy Card Enhanced Hover */
.privacy-card {
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.privacy-card:hover:not(.active) {
    flex: 1.5;
}

.privacy-card:hover .card-bg-img {
    transform: scale(1.1);
}

.privacy-card .card-bg-img {
    transition: transform 0.6s ease;
}

.privacy-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(3,46,46,0.3), rgba(219, 90, 54, 0.8));
}

.privacy-card .card-overlay {
    transition: background 0.4s ease;
}

/* Accordion Item Hover Enhancement */
.custom-faq .accordion-item {
    transition: all 0.3s ease;
}

.custom-faq .accordion-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.custom-faq .accordion-button:hover {
    background-color: rgba(219, 90, 54, 0.05);
}
.hero-section-osha {
    position: relative;
    min-height: 800px;
    /* Replace with your actual background image path */
    background: url('../../assest/images/osha-bg.webp') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.osha-heading{
   min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.text-orange {
    color: var(--primary-orange);
}

.orange-bracket {
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: bold;
}

.subtitle-text {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}



.description-text {
    max-width: 700px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-light-muted);
}

/* Custom Buttons */
.custom-btn-outline {
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: var(--primary-orange-hover);
    color: white;
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.25rem;
    }
}

/* Color updates to match the dark slate/teal text */
:root {
    --text-dark-blue: #032E2E;
    --card-border: #e0e6e6;
    --icon-bg: #032E2E;
}

.section-title {
    color: var(--text-dark-blue);
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
}

.info-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Middle card elevation */
.featured-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.icon-box {
    background-color: var(--icon-bg);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.card-heading {
    color: var(--text-dark-blue);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card-text {
    color: #4a5568; /* Soft grey-teal */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Adjustments for mobile to ensure the cards don't touch */
@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }
}
/* Color and Typography Consistency */
.text-dark-blue {
    color: #032E2E;
}

.small-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Feature boxes with thin orange border */
.feature-box {
    background: #fff;
    border: 1px solid var(--primary-orange);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

/* Bottom Alert Card */
.info-alert-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-orange); /* Matching the visual accent */
}

.alert-icon-wrapper {
    background-color: #032E2E;
    color: #fff;
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Matching the HR divider at the top of the image */
.how-it-works-header {
    border-top: 1px solid #dee2e6;
}
/* Step 2 Cards */
.step-card {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.featured-step-card {
    border: 1.5px solid var(--primary-orange);
}

/* Step 3 Container */
.custom-dark-container {
    background-color: #032E2E;
    background-image: url('data:image/svg+xml;utf8,<svg ... />'); /* You can add a geometric SVG pattern here */
    border-radius: 24px;
    overflow: hidden;
    padding: 40px 30px;
}

.mini-record-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
}

.icon-square-teal {
    background-color: #032E2E;
    color: #fff;
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.smaller-text {
    font-size: 0.8rem;
    line-height: 1.4;
}
.portal-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

.portal-header {
    background-color: #032E2E;
}

.log-entry {
    background-color: #eee; /* Matches the slightly darker list row */
    border-radius: 8px;
}

.badge-status {
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
}

/* Specific Badge Colors from Image */
.filed { background-color: #f8d7da; color: #DB5A36; }
.due { background-color: #f8d7da; color: #DB5A36; }
.modified { background-color: #f8d7da; color: #DB5A36; }
.non-rec { background-color: #f8d7da; color: #DB5A36; }

.icon-circle-bg {
    background-color: #f8d7da;
    color: #DB5A36;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
/* Prefix 'osha-step5' ensures no conflicts with other sections */
.osha-step5-wrapper {
    background-color: #ffffff;
}

.osha-step5-label {
    font-weight: 700;
    color: #032E2E;
    font-size: 14px;
    text-transform: uppercase;
}

.osha-step5-title {
    color: #032E2E;
    font-weight: 700;
    font-size: 2.5rem;
}

.osha-step5-accent {
    color: #DB5A36;
}

.osha-step5-lead {
    color: #6c757d;
    max-width: 750px;
    font-size: 0.95rem;
}

/* Specific Card Styling */
.osha-step5-card {
    background-color: #f2f4f5 !important; /* Forces light grey background */
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none !important;
}

.osha-step5-card-h {
    color: #032E2E;
    font-weight: 700;
    font-size: 1.15rem;
}

.osha-step5-card-p {
    color: #4a5568;
    font-size: 0.88rem;
}

/* The Peach Label */
.osha-step5-footer-tag {
    background-color: #f5ddd6 !important;
    color: #DB5A36 !important;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    margin: 0 20px 20px 20px;
    border-radius: 8px;
}

/* Dark Footer Alert */
.osha-step5-alert {
    background-color: #032E2E !important;
    border-radius: 16px;
}

.osha-step5-icon-wrap {
    background-color: #ffffff;
    color: #032E2E;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.osha-step5-alert-text {
    color: #ffffff !important;
    font-size: 0.95rem;
}

/* ============================================
   OSHA PAGE - RESPONSIVE STYLES
   ============================================ */

/* Hero Section Responsive */
@media (max-width: 991px) {
    .hero-section-osha {
        min-height: 600px;
    }
    
    .osha-heading {
        min-height: 500px;
        padding: 40px 15px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .description-text {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .subtitle-text {
        font-size: 0.85rem;
    }
    
    .orange-bracket {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .hero-section-osha {
        min-height: 500px;
    }
    
    .osha-heading {
        min-height: 400px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .description-text {
        font-size: 0.95rem;
    }
    
    .osha-heading .btn {
        padding: 12px 20px !important;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .hero-section-osha {
        min-height: 450px;
    }
    
    .osha-heading {
        min-height: 350px;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .description-text {
        font-size: 0.9rem;
    }
    
    .subtitle-text {
        font-size: 0.75rem;
    }
}

/* Info Cards Section Responsive */
@media (max-width: 991px) {
    .info-cards-section .section-title {
        font-size: 2rem;
    }
    
    .info-cards-section .info-card {
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .info-cards-section .section-title {
        font-size: 1.6rem;
    }
    
    .info-cards-section .info-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .info-cards-section .icon-box {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .info-cards-section .card-heading {
        font-size: 1.1rem;
    }
    
    .info-cards-section .card-text {
        font-size: 0.9rem;
    }
}

/* How It Works Header Responsive */
@media (max-width: 991px) {
    .how-it-works-header h2 {
        font-size: 1.8rem;
    }
    
    .how-it-works-header .lead {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .how-it-works-header {
        padding: 30px 0 !important;
    }
    
    .how-it-works-header h2 {
        font-size: 1.4rem;
    }
    
    .how-it-works-header h2 br {
        display: none;
    }
    
    .how-it-works-header .lead {
        font-size: 0.9rem;
    }
    
    .how-it-works-header .lead br {
        display: none;
    }
}

/* Step One Section - Consistent Typography */
.step-one-section h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.step-one-section .small-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Step One Section Responsive */
@media (max-width: 991px) {
    .step-one-section h3 {
        font-size: 1.4rem;
    }
    
    .step-one-section .small-text {
        font-size: 0.9rem;
    }
    
    .feature-box {
        padding: 1rem 1.25rem;
    }
    
    .feature-box h5 {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .step-one-section {
        padding: 30px 0 !important;
    }
    
    .step-one-section h3 {
        font-size: 1.25rem;
    }
    
    .step-one-section h3 br {
        display: none;
    }
    
    .step-one-section .small-text {
        font-size: 0.8rem;
    }
    
    .feature-box {
        padding: 0.85rem 1rem;
        margin-bottom: 10px !important;
    }
    
    .feature-box h5 {
        font-size: 0.95rem;
    }
    
    .info-alert-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .info-alert-card .alert-icon-wrapper {
        margin: 0 auto;
    }
}

/* Step Two Section - Consistent Typography */


.step-two-section .small-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-two-section .card-heading {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.step-two-section .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Step Two Section Responsive */
@media (max-width: 991px) {
    .step-two-section .section-title {
        font-size: 1.5rem;
    }
    
    .step-card {
        padding: 2rem 1.25rem;
    }
}

@media (max-width: 767px) {
    .step-two-section {
        padding: 30px 0 !important;
    }
    
    .step-two-section .section-title {
        font-size: 1.4rem;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
        margin-bottom: 15px;
    }
    
    .step-card .card-heading {
        font-size: 1.1rem;
    }
    
    .step-card .card-text {
        font-size: 0.85rem;
    }
}

/* Step Three Section Responsive */
@media (max-width: 991px) {
    .custom-dark-container h2 {
        font-size: 1.6rem;
    }
    
    .mini-record-card {
        padding: 1rem;
    }
    
    .mini-record-card h6 {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .step-three-section {
        padding: 30px 0 !important;
    }
    
    .custom-dark-container {
        padding: 25px 15px !important;
        border-radius: 0;
    }
    
    .custom-dark-container h2 {
        font-size: 1.3rem;
    }
    
    .custom-dark-container h2 br {
        display: none;
    }
    
    .mini-record-card {
        padding: 0.85rem;
        margin-bottom: 10px;
    }
    
    .mini-record-card h6 {
        font-size: 0.85rem;
    }
    
    .mini-record-card .smaller-text {
        font-size: 0.75rem;
    }
    
    .icon-square-teal {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.75rem;
    }
}

/* Step Four Section Responsive */
@media (max-width: 991px) {
    .step-four-section .section-title {
        font-size: 1.6rem;
    }
    
    .portal-container {
        max-width: 100%;
    }
    
    .log-entry {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .log-entry .badge-status {
        align-self: flex-end;
    }
}

@media (max-width: 767px) {
    .step-four-section {
        padding: 30px 0 !important;
    }
    
    .step-four-section .section-title {
        font-size: 1.3rem;
    }
    
    .step-four-section .section-title br {
        display: none;
    }
    
    .portal-container {
        margin: 0 -15px;
        border-radius: 0;
    }
    
    .portal-body {
        padding: 15px !important;
    }
    
    .log-entry {
        padding: 12px !important;
        margin-bottom: 8px !important;
    }
    
    .log-entry .smaller-text {
        font-size: 0.7rem;
    }
    
    .icon-square-teal {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    
    .icon-circle-bg {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.75rem;
    }
    
    .step-four-section h6 {
        font-size: 0.9rem;
    }
    
    .step-four-section .smaller-text {
        font-size: 0.75rem;
    }
}

/* Step Five Section Responsive */
@media (max-width: 991px) {
    .osha-step5-title {
        font-size: 2rem;
    }
    
    .osha-step5-card-body {
        padding: 1.5rem !important;
    }
}

@media (max-width: 767px) {
    .osha-step5-wrapper {
        padding: 30px 0 !important;
    }
    
    .osha-step5-title {
        font-size: 1.5rem;
    }
    
    .osha-step5-title br {
        display: none;
    }
    
    .osha-step5-lead {
        font-size: 0.85rem;
    }
    
    .osha-step5-card {
        margin-bottom: 15px;
    }
    
    .osha-step5-card-body {
        padding: 1.25rem !important;
    }
    
    .osha-step5-card-h {
        font-size: 1rem;
    }
    
    .osha-step5-card-p {
        font-size: 0.8rem;
    }
    
    .osha-step5-footer-tag {
        margin: 0 15px 15px 15px;
        font-size: 0.75rem;
    }
    
    .osha-step5-alert {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .osha-step5-icon-wrap {
        margin: 0 auto;
    }
    
    .osha-step5-alert-text {
        font-size: 0.85rem;
    }
}

/* FAQ Section Responsive for OSHA Page */
@media (max-width: 991px) {
    .faq-section .faq-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .faq-section .faq-main-title {
        font-size: 1.5rem;
    }
    
    .faq-section .small-title {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    
    .custom-faq .accordion-button {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .custom-faq .accordion-body {
        padding: 0 20px 20px 20px;
        font-size: 0.9rem;
    }
}

/* OSHA Page Card Hover Effects */
.info-cards-section .info-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-cards-section .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(219, 90, 54, 0.15);
    border-color: var(--primary-orange);
}

.info-cards-section .info-card:hover .icon-box {
    background: var(--primary-orange);
    transform: scale(1.1) rotate(-5deg);
}

.info-cards-section .info-card .icon-box {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-cards-section .info-card:hover .card-heading {
    color: var(--primary-orange);
}

.info-cards-section .info-card .card-heading {
    transition: color 0.3s ease;
}

/* Step Card Hover Effects */
.step-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.step-card:hover .card-heading {
    color: var(--primary-orange);
}

.step-card .card-heading {
    transition: color 0.3s ease;
}

/* Mini Record Card Hover */
.mini-record-card {
    transition: all 0.3s ease;
}

.mini-record-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mini-record-card:hover .icon-square-teal {
    background: var(--primary-orange);
}

.mini-record-card .icon-square-teal {
    transition: background 0.3s ease;
}

/* OSHA Step 5 Card Hover */
.osha-step5-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.osha-step5-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.osha-step5-card:hover .osha-step5-card-h {
    color: var(--primary-orange);
}

.osha-step5-card .osha-step5-card-h {
    transition: color 0.3s ease;
}

.osha-step5-card:hover .osha-step5-footer-tag {
    background-color: var(--primary-orange) !important;
    color: #fff !important;
}

.osha-step5-card .osha-step5-footer-tag {
    transition: all 0.3s ease;
}

/* Feature Box Hover */
.feature-box {
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary-orange);
    background: #fff;
    box-shadow: 0 10px 25px rgba(219, 90, 54, 0.1);
}

.feature-box:hover h5 {
    color: var(--primary-orange);
}

.feature-box h5 {
    transition: color 0.3s ease;
}

/* ============================================
   HERO SLIDER - ULTRA PROFESSIONAL
   ============================================ */

.hero-slider-wrapper {
    position: relative;
    opacity: 1 !important;
    min-height: 400px;
}

.hero-swiper {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.hero-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    opacity: 1 !important;
    transform: none !important;
}

/* Ensure all slides are visible during load */
.hero-swiper .swiper-wrapper {
    opacity: 1 !important;
}

/* Fix for images not loading */
.hero-swiper img {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Professional Dot Pagination - Right Side Vertical */
.hero-slider-pagination {
    position: absolute;
    right: 20px !important;
    top: 50% !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    margin: 0 !important;
}

.hero-slider-pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    width: 12px;
    height: 36px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    box-shadow: 0 4px 15px rgba(219, 90, 54, 0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(219, 90, 54, 0.5);
    }
    50% {
        box-shadow: 0 4px 20px rgba(219, 90, 54, 0.7);
    }
}

/* Slider Navigation Arrows (optional - hidden by default) */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    display: none;
}

/* Responsive adjustments for slider - Right Side Vertical */
@media (max-width: 991px) {
    .hero-slider-pagination {
        right: 15px !important;
        gap: 10px;
    }
    
    .hero-slider-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .hero-slider-pagination .swiper-pagination-bullet-active {
        width: 10px;
        height: 30px;
    }
}

@media (max-width: 767px) {
    .hero-slider-pagination {
        right: 10px !important;
        gap: 8px;
    }
    
    .hero-slider-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    .hero-slider-pagination .swiper-pagination-bullet-active {
        width: 8px;
        height: 24px;
    }
}
