/* =====================================================================
   CNERGEE CUSTOM CSS — Design improvements, CSS variables, utilities
   ===================================================================== */

/* =====================================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ===================================================================== */
:root {
    /* Brand colours */
    --c-primary:        #099a9a;
    --c-primary-dark:   #07807f;
    --c-primary-light:  #e6f7f7;
    --c-secondary:      #21455a;
    --c-secondary-dark: #163342;
    --c-navy:           #063232;
    --c-text:           #6b7a7a;
    --c-text-dark:      #333333;
    --c-white:          #ffffff;
    --c-light-bg:       #ecf1f3;
    --c-border:         #e0e0e0;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, var(--c-primary) 0%, var(--c-secondary) 100%);
    --gradient-header:  linear-gradient(0deg, #3d6983 1%, #099a9a 92%);

    /* Typography */
    --font-main:   "Poppins", sans-serif;
    --font-size:   14px;
    --line-height: 1.7;

    /* Spacing */
    --space-xs:  8px;
    --space-sm:  16px;
    --space-md:  32px;
    --space-lg:  64px;
    --space-xl:  96px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Shadows */
    --shadow-sm:  0 2px  8px rgba(9, 154, 154, 0.10);
    --shadow-md:  0 6px 24px rgba(9, 154, 154, 0.15);
    --shadow-lg:  0 12px 40px rgba(9, 154, 154, 0.20);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}


/* =====================================================================
   GLOBAL IMPROVEMENTS
   ===================================================================== */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* Better box model */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Remove duplicate ul margin/padding reset — single rule */
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Focus styles — accessibility */
:focus-visible {
    outline: 2px solid var(--c-primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Image quality */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Selection colour */
::selection {
    background: rgba(9, 154, 154, 0.2);
    color: var(--c-text-dark);
}


/* =====================================================================
   TYPOGRAPHY IMPROVEMENTS
   ===================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

p {
    font-family: var(--font-main);
    color: var(--c-text);
    line-height: var(--line-height);
}

/* Section headings with accent underline */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-top: 10px;
}

.section-title.centered::after {
    margin-left: auto;
    margin-right: auto;
}


/* =====================================================================
   BUTTON IMPROVEMENTS
   ===================================================================== */

.btn,
.hero_btn,
button[type="submit"] {
    font-family: var(--font-main);
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}

/* Primary CTA button */
.hero_btn,
.btn-primary-cta {
    background: var(--gradient-primary);
    color: var(--c-white);
    border: none;
    padding: 12px 28px;
    box-shadow: var(--shadow-sm);
}

.hero_btn:hover,
.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--c-white);
    filter: brightness(1.08);
}

.hero_btn:active,
.btn-primary-cta:active {
    transform: translateY(0);
}

/* Outline button */
.btn-outline-primary-cta {
    background: transparent;
    color: var(--c-primary);
    border: 2px solid var(--c-primary);
    padding: 10px 26px;
}

.btn-outline-primary-cta:hover {
    background: var(--c-primary);
    color: var(--c-white);
    transform: translateY(-2px);
}


/* =====================================================================
   CARD IMPROVEMENTS
   ===================================================================== */

.card,
.service-card,
.product-card,
.blog-card {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--c-border);
    transition: var(--transition);
    overflow: hidden;
    background: var(--c-white);
}

.card:hover,
.service-card:hover,
.product-card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-primary-light);
}

/* Card icon circle */
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--c-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    transition: var(--transition);
}

.card-icon i {
    color: var(--c-primary);
    font-size: 24px;
}

.card:hover .card-icon,
.service-card:hover .card-icon {
    background: var(--c-primary);
}

.card:hover .card-icon i,
.service-card:hover .card-icon i {
    color: var(--c-white);
}


/* =====================================================================
   FORM IMPROVEMENTS
   ===================================================================== */

.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    font-family: var(--font-main);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    transition: var(--transition-fast);
    color: var(--c-text-dark);
    background: #fafafa;
    width: 100%;
}

.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(9, 154, 154, 0.12);
    background: #fff;
    outline: none;
}

/* Form labels — block layout for regular text/select/textarea inputs */
.form-label,
.form-box label,
.cms-label {
    font-weight: 500;
    color: var(--c-navy);
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
}

/* Generic label baseline — inline so checkboxes/radios are NOT broken */
label {
    font-weight: 500;
    color: var(--c-navy);
    font-size: 13px;
    margin-bottom: 5px;
}

/* Checkbox & radio labels — stay inline with the control */
input[type="checkbox"] + label,
input[type="radio"]    + label,
.checkbox label,
.radio    label,
.form-check-label {
    display: inline;
    font-weight: 400;
    font-size: 0.875rem;   /* 14px — fits without wrapping */
    margin-bottom: 0;
    vertical-align: middle;
    cursor: pointer;
    color: var(--c-text-dark);
}

/* Error / success states */
.form-control.is-invalid {
    border-color: #e53e3e;
}

.form-control.is-valid {
    border-color: #38a169;
}

.form-error-msg {
    color: #e53e3e;
    font-size: 12px;
    margin-top: 4px;
}

/* Submit button loading state */
button[type="submit"].loading {
    opacity: 0.7;
    pointer-events: none;
}


/* =====================================================================
   NAVIGATION IMPROVEMENTS
   ===================================================================== */

/* Desktop nav links */
#desktopHeader .header-menu ul > li > a {
    font-weight: 500;
    letter-spacing: 0.01em;
    position: relative;
    transition: color 0.2s ease;
}

#desktopHeader .header-menu > ul > li > a::after {
    content: "";
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-white);
    border-radius: 1px;
    transition: width 0.25s ease;
}

#desktopHeader .header-menu > ul > li > a:hover::after,
#desktopHeader .header-menu > ul > li.active > a::after {
    width: 100%;
}

/* Ensure sub-menu links never get the underline pseudo-element */
#desktopHeader .header-menu .sub_menu li a::after {
    display: none !important;
}

/* Mega menu card hover */
#mega-menu .menu-item a:hover img {
    opacity: 0.85;
    transform: scale(1.02);
    transition: var(--transition);
}

/* Mobile menu scrollable */
.menu-section-mobile {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--c-primary) transparent;
}

.menu-section-mobile::-webkit-scrollbar {
    width: 4px;
}

.menu-section-mobile::-webkit-scrollbar-thumb {
    background: var(--c-primary);
    border-radius: 2px;
}


/* =====================================================================
   BACK-TO-TOP BUTTON IMPROVEMENT
   ===================================================================== */

#backToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--gradient-primary);
    color: var(--c-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 9999;
}

#backToTopBtn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}


/* =====================================================================
   NEWS FLASH BAR
   ===================================================================== */

#news-flash {
    background: var(--gradient-primary);
    color: var(--c-white);
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

#news-flash p {
    color: var(--c-white);
    margin: 0;
}

#news-flash a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

#news-flash a:hover {
    color: #cffcfc;
}


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

.section-gap {
    padding: var(--space-xl) 0;
}

.section-gap-sm {
    padding: var(--space-lg) 0;
}


/* =====================================================================
   BADGES & TAGS
   ===================================================================== */

.badge-new {
    background: var(--c-primary);
    color: var(--c-white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 30px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 6px;
}

.tag {
    display: inline-block;
    background: var(--c-primary-light);
    color: var(--c-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* =====================================================================
   TESTIMONIAL CARDS
   ===================================================================== */

.testimonial-card {
    background: var(--c-white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--c-primary);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-card .quote {
    color: var(--c-primary);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 10px;
}

.testimonial-card .author-name {
    font-weight: 700;
    color: var(--c-navy);
    font-size: 15px;
}

.testimonial-card .author-role {
    font-size: 12px;
    color: var(--c-text);
}


/* =====================================================================
   BLOG CARD IMPROVEMENTS
   ===================================================================== */

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover img {
    transform: scale(1.04);
}

.blog-card .card-body {
    padding: 20px;
}

.blog-card .blog-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.blog-card .blog-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .blog-excerpt {
    font-size: 13px;
    color: var(--c-text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .read-more-link {
    color: var(--c-primary);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    transition: gap 0.2s ease;
}

.blog-card .read-more-link:hover {
    gap: 10px;
    color: var(--c-primary-dark);
}


/* =====================================================================
   FOOTER IMPROVEMENTS
   ===================================================================== */

.footer_area {
    background: var(--c-secondary-dark);
}

.footer_area a {
    transition: color 0.2s ease;
}

.footer_area a:hover {
    color: var(--c-primary);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 24px 0;
}


/* =====================================================================
   HERO SLIDER IMPROVEMENTS
   ===================================================================== */

#home-slider .carousel-item {
    min-height: 560px;
}

/* Slider CTA button */
.slider-content .hero_btn {
    font-size: 15px;
    padding: 13px 32px;
}

/* Carousel indicators */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    transition: var(--transition);
}

.carousel-indicators .active {
    background: var(--c-white);
    width: 28px;
    border-radius: 5px;
}


/* =====================================================================
   PAGE BANNER INNER PAGES
   ===================================================================== */

.inner_banner {
    position: relative;
    overflow: hidden;
}

.inner_banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9,154,154,0.75) 0%, rgba(33,69,90,0.85) 100%);
    z-index: 1;
}

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


/* =====================================================================
   SWIPER NAVIGATION BUTTON IMPROVEMENTS
   ===================================================================== */

.swiper-button-next,
.swiper-button-prev {
    width: 42px;
    height: 42px;
    background: var(--c-white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px;
    color: var(--c-primary);
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--c-primary);
    box-shadow: var(--shadow-md);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: var(--c-white);
}

.swiper-pagination-bullet {
    background: var(--c-primary);
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}


/* =====================================================================
   TABLE STYLING
   ===================================================================== */

.table-responsive {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.table {
    margin-bottom: 0;
}

.table thead th {
    background: var(--gradient-primary);
    color: var(--c-white);
    font-weight: 600;
    border: none;
    padding: 14px 16px;
    font-size: 13px;
    letter-spacing: 0.03em;
}

.table tbody tr {
    transition: background 0.15s ease;
}

.table tbody tr:hover {
    background: var(--c-primary-light);
}

.table tbody td {
    padding: 12px 16px;
    border-color: var(--c-border);
    vertical-align: middle;
    font-size: 14px;
}


/* =====================================================================
   PAGE LOADER
   ===================================================================== */

body:not(.loaded) {
    overflow: hidden;
}

/* Fade in when loaded */
body.loaded {
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}


/* =====================================================================
   CUSTOM SCROLLBAR (Webkit)
   ===================================================================== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--c-primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--c-primary-dark);
}


/* =====================================================================
   UTILITY CLASSES
   ===================================================================== */

.text-primary-brand { color: var(--c-primary) !important; }
.text-navy          { color: var(--c-navy) !important; }
.bg-primary-brand   { background: var(--c-primary) !important; }
.bg-primary-light   { background: var(--c-primary-light) !important; }
.bg-gradient-brand  { background: var(--gradient-primary) !important; }

.shadow-brand-sm    { box-shadow: var(--shadow-sm) !important; }
.shadow-brand-md    { box-shadow: var(--shadow-md) !important; }

.rounded-brand      { border-radius: var(--radius-md) !important; }
.rounded-brand-lg   { border-radius: var(--radius-lg) !important; }

/* Hover lift */
.hover-lift {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Divider with brand colour */
.divider-brand {
    border: none;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 24px 0;
    width: 60px;
}

.divider-brand.full-width {
    width: 100%;
    height: 1px;
    background: var(--c-border);
}

/* Icon box */
.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--c-primary-light);
    color: var(--c-primary);
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition);
}

.icon-box:hover,
.icon-box.active {
    background: var(--c-primary);
    color: var(--c-white);
}

/* Stat counter boxes */
.stat-box {
    text-align: center;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--c-white);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.stat-box .stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 13px;
    color: var(--c-text);
    margin-top: 4px;
    font-weight: 500;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}


/* =====================================================================
   CHECKBOX / RADIO LAYOUT FIX
   Prevents label wrapping when base font-size increased to 16px.
   ===================================================================== */

/* Each checkbox cell — flex row so input and label never stack */
.checkbox,
.radio {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    min-width: 0;
}

.checkbox input[type="checkbox"],
.radio  input[type="radio"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--c-primary);
}

.checkbox label,
.radio  label {
    white-space: nowrap;   /* prevent mid-word wrap */
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

/* =====================================================================
   PRINT STYLES
   ===================================================================== */

@media print {
    .mobile-header-new,
    .overlay,
    .mobile-menu-new,
    #backToTopBtn,
    #news-flash,
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #555;
    }
}


/* =====================================================================
   RESPONSIVE TWEAKS
   ===================================================================== */

@media (max-width: 768px) {
    h1 { font-size: 26px; }
    h2 { font-size: 22px; }
    h3 { font-size: 18px; }

    .section-gap   { padding: var(--space-lg) 0; }
    .section-gap-sm { padding: var(--space-md) 0; }

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

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

@media (max-width: 480px) {
    h1 { font-size: 22px; }
    h2 { font-size: 18px; }

    .blog-card img {
        height: 180px;
    }
}

/* =====================================================================
   WORLD STANDARD FIXES — Typography, Heights, Touch Targets, Images
   All overrides are additive — original CSS is untouched.
   ===================================================================== */

/* ── 1. Root font base (WCAG 2.1 SC 1.4.4 — 16px = 1rem baseline) ── */
html {
    font-size: 16px;
}
body {
    font-size: 1rem;       /* 16px */
    line-height: 1.75;
}

/* ── 2. Fluid typography — clamp(min, preferred, max) ─────────────── */
h1, .h1 {
    font-size: clamp(1.625rem, 4vw + 0.5rem, 2.625rem); /* 26px → 42px */
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h2, .h2 {
    font-size: clamp(1.375rem, 3vw + 0.25rem, 2rem);    /* 22px → 32px */
    line-height: 1.25;
}
h3, .h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);          /* 18px → 24px */
    line-height: 1.3;
}
h4, .h4 {
    font-size: clamp(1rem, 1.8vw, 1.25rem);             /* 16px → 20px */
    line-height: 1.35;
}
h5, .h5 {
    font-size: clamp(0.9375rem, 1.4vw, 1.125rem);       /* 15px → 18px */
    line-height: 1.4;
}
h6, .h6 {
    font-size: 1rem;                                     /* 16px always */
    line-height: 1.4;
}

p {
    font-size: 1rem;       /* 16px */
    line-height: 1.75;
    margin-bottom: 1rem;
}

small, .small, .text-sm {
    font-size: 0.875rem;   /* 14px */
}

/* Minimum readable size for meta/labels — never below 13px (0.8125rem) */
.meta-blog p,
.solution,
.blog-content .meta-blog p,
.wp-date,
.wp-card__date {
    font-size: 0.8125rem;  /* 13px */
}

/* ── 3. Breadcrumb/banner height — reduce excessive padding ──────── */
.breadcumb-area {
    padding: clamp(70px, 11vh, 130px) 0 clamp(50px, 9vh, 110px);
}

/* ── 4. Touch targets — WCAG 2.5.5 minimum 44×44px ─────────────── */
.hero_btn a,
.consalt_btn a,
.consalt_btn.style_two a,
.consalt_btn.style_three a,
.consalt_btn.style_four a,
.btn-cms,
.btn-cms-primary {
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* Swiper nav buttons */
.swiper-button-prev,
.swiper-button-next {
    width:  44px !important;
    height: 44px !important;
    min-width:  44px;
    min-height: 44px;
}

/* Nav links — top-level only, not dropdown items */
.navbar-nav .nav-link,
.header-menu > ul > li > a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

/* ── 5. Images — prevent layout shift (CLS) ─────────────────────── */
img {
    height: auto;          /* preserve aspect ratio when width is set */
    max-width: 100%;       /* never overflow container */
}

/* Blog/card thumbnails — fixed aspect ratio prevents layout shift
   even when width/height attributes are absent */
.single-blog-thumb,
.blog-card .thumb,
.single-blog-thumb img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    display: block;
}

.single-blog-box .single-blog-thumb {
    overflow: hidden;
    background: #f0f4f6;   /* placeholder colour while image loads */
}

/* Whitepaper sidebar/card images */
.wp-sidebar img,
.wp-list img,
.each-tab img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* ── 6. Responsive typography — fluid at smaller screens ─────────── */
@media (max-width: 991px) {
    body   { font-size: 1rem; }
    p      { font-size: 1rem; }
}

@media (max-width: 768px) {
    h1 { font-size: clamp(1.375rem, 5vw, 1.75rem) !important; }
    h2 { font-size: clamp(1.25rem,  4vw, 1.5rem)  !important; }
    h3 { font-size: clamp(1.1rem,   3vw, 1.25rem) !important; }
    p  { font-size: 1rem; line-height: 1.7; }

    /* Reduce breadcrumb even more on mobile */
    .breadcumb-area {
        padding: clamp(50px, 9vh, 80px) 0 clamp(40px, 7vh, 70px);
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.375rem !important; }
    h2 { font-size: 1.25rem  !important; }
    h3 { font-size: 1.125rem !important; }

    /* Full-width touch targets on mobile */
    .hero_btn a,
    .consalt_btn a {
        width: 100%;
    }
}

/* ── Accessibility: Skip-to-content ──────────────────────────────────────────── */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 99999;
    background: #099a9a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: top 0.15s ease;
    outline: 3px solid #063232;
}
.skip-to-content:focus {
    top: 0;
    color: #fff;
}
