*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ============================================
   BOOTSTRAP DISPLAY UTILITY CLASSES
   Essential responsive display utilities
   ============================================ */

/* Display utilities - Base (mobile first) */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-flex {
    display: flex !important;
}

/* Small screens (576px and up) */
@media (min-width: 36em) {
    .d-sm-none {
        display: none !important;
    }
    
    .d-sm-block {
        display: block !important;
    }
    
    .d-sm-inline {
        display: inline !important;
    }
    
    .d-sm-inline-block {
        display: inline-block !important;
    }
    
    .d-sm-flex {
        display: flex !important;
    }
}

/* Medium screens (768px and up) */
@media (min-width: 48em) {
    .d-md-none {
        display: none !important;
    }
    
    .d-md-block {
        display: block !important;
    }
    
    .d-md-inline {
        display: inline !important;
    }
    
    .d-md-inline-block {
        display: inline-block !important;
    }
    
    .d-md-flex {
        display: flex !important;
    }
}

/* Large screens (992px and up) - MUST come last to override */
@media (min-width: 62em) {
    .d-lg-none {
        display: none !important;
    }
    
    .d-lg-block {
        display: block !important;
    }
    
    .d-lg-inline {
        display: inline !important;
    }
    
    .d-lg-inline-block {
        display: inline-block !important;
    }
    
    .d-lg-flex {
        display: flex !important;
    }
}

/* ============================================
   GLOBAL SCALING
   Reduce overall site scale by 30% for better fit on smaller screens
   ============================================ */




/* ============================================
   ACCESSIBILITY STYLES
   Skip link and screen reader utilities
   ============================================ */

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -6.25em;
    left: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.75em 1.25em;
    text-decoration: none;
    font-weight: 600;
    z-index: 100000;
    border-radius: 0 0 0.25em 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 0.1875em solid var(--color-secondary);
    outline-offset: 0.125em;
}

/* Screen reader only text */
.screen-reader-text:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 0.0625em;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 0.0625em;
}

/* ============================================
   GLOBAL BUTTON FOCUS & HOVER STYLES
   Consistent focus and hover states using theme colors
   ============================================ */

/* Default button focus - orange outline */
button:focus,
.btn:focus,
[type="button"]:focus,
[type="submit"]:focus,
[type="reset"]:focus,
a.button:focus {
    outline: 0.1875em solid var(--color-secondary);
    outline-offset: 0.125em;
}

/* Remove default browser outline but keep accessible focus */
button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible),
a.button:focus:not(:focus-visible) {
    outline: none;
}

/* Visible focus for keyboard users */
button:focus-visible,
.btn:focus-visible,
a.button:focus-visible {
    outline: 0.1875em solid var(--color-secondary);
    outline-offset: 0.125em;
}

/* Global button hover - white text color */
button:hover,
.btn:hover,
[type="button"]:hover,
[type="submit"]:hover,
[type="reset"]:hover,
a.button:hover,
.btn-all a:hover,
.blog-btn a:hover,
.service-btn a:hover,
.review-btn a:hover,
.hero-item a:hover,
.policy-item a:hover,
.tuch-submit button:hover,
.file-submit button:hover {
    color: var(--color-white) !important;
}

/* ============================================ */

/* Video Background Support */
.about-area {
    position: relative;
    overflow: hidden;
}

.about-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.about-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Ensure content is above background */
.about-area .container,
.about-area .about-main,
.about-area .about-mobil,
.about-area .about-cnt {
    position: relative;
    z-index: 1;
}

/* Mobile optimization for video backgrounds */
@media (max-width: 48em) {
    .about-background-video {
        display: none; /* Hide video on mobile for performance */
    }
    
    .about-background-image {
        display: block; /* Show image fallback on mobile */
    }
}

/* Adminis Area Video Background Support */
.adminis-area {
    position: relative;
    overflow: hidden;
}

.adminis-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Hide background image when video is present on desktop */
.adminis-area video + .adminis-background-image {
    display: none;
}

.adminis-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Optional overlay for better text readability */
.adminis-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.3); Dark overlay - adjust opacity as needed */
    z-index: 1;
    pointer-events: none;
}

/* Ensure content is above background and overlay */
.adminis-area .container,
.adminis-area .adminis-main,
.adminis-area .adminis-img-wrap {
    position: relative;
    z-index: 2;
}

/* Mobile optimization for adminis video backgrounds */
@media (max-width: 47.9375em) {
    .adminis-background-video {
        display: none !important; /* Hide video on mobile for performance */
    }
    
    /* Show image fallback on mobile even when video exists */
    .adminis-area video + .adminis-background-image {
        display: block !important;
    }
    
    .adminis-background-image {
        display: block !important; /* Show image fallback on mobile */
    }
    
    /* Lighter overlay on mobile */
    .adminis-area::before {
        /* background: rgba(0, 0, 0, 0.2); */
    }
}

/* Tablet - Keep video background visible */
@media (min-width: 48em) and (max-width: 63.9375em) {
    .adminis-background-video {
        display: block !important;
        object-fit: cover;
    }
    
    /* Hide image when video is present */
    .adminis-area:has(video) .adminis-background-image {
        display: none !important;
    }
}

/* Solution Hero Video Background Styles */
.solution-hero-area {
    position: relative;
    overflow: hidden;
    min-height: 28.125em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Hide image when video is present on desktop */
.solution-hero-area video + .solution-hero-background-image {
    display: none;
}

.solution-hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Optional overlay for better text readability on solution hero - DISABLED by default */
.solution-hero-area.with-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay - adjust opacity as needed */
    z-index: 1;
    pointer-events: none;
}

/* Ensure content is above background and overlay */
.solution-hero-area .solution-hero-main,
.solution-hero-area .solu-text {
    position: relative;
    z-index: 2;
}

/* Make text more readable over video */
.solution-hero-area .solu-text h2 {
    color: var(--color-white);
    text-shadow: 0 0.125em 0.25em rgba(0, 0, 0, 0.3);
}

/* Mobile optimization for solution hero video backgrounds */
@media (max-width: 47.9375em) {
    .solution-hero-background-video {
        display: none !important; /* Hide video on mobile for performance */
    }
    
    /* Show image fallback on mobile even when video exists */
    .solution-hero-area video + .solution-hero-background-image {
        display: block !important;
    }
    
    .solution-hero-background-image {
        display: block !important;
    }
    
    /* Lighter overlay on mobile - only if overlay enabled */
    .solution-hero-area.with-overlay::before {
        background: rgba(0, 0, 0, 0.2);
    }
}

/* Tablet - Keep video background visible for solution hero */
@media (min-width: 48em) and (max-width: 63.9375em) {
    .solution-hero-background-video {
        display: block !important;
        object-fit: cover;
    }
    
    /* Hide image when video is present */
    .solution-hero-area:has(video) .solution-hero-background-image {
        display: none !important;
    }
}

body {
    font-family: var(--font-family-base);
    font-size: 1.6rem; /* 16px - Standardized body text size */
    line-height: var(--line-height-body);
    color: var(--color-text-primary);
    background: var(--color-surface);
    display: flex;
    flex-direction: column;
    /* No padding-top initially - header is not fixed at top */
}

/* Global paragraph consistency */
p {
    font-size: 1.6rem !important; /* 16px - Force consistent size globally */
    line-height: 1.6;
}

/* Ensure paragraphs inside spans also have consistent sizing */
span p,
.short-desc p,
.full-desc p,
.description-text p,
.short-desc,
.full-desc,
.description-text {
    font-size: 1.6rem !important; /* 16px */
    line-height: 1.6;
}

/* Specific override for nested paragraphs */
span p,
.short-desc > p,
.full-desc > p,
.description-text > p {
    margin: 0 0 1em 0;
}

/* Mobile font size adjustments - STANDARDIZED */
@media (max-width: 47.9375em) {
    p {
        font-size: 1rem !important; /* 16px - now that 1rem = 16px on mobile */
        line-height: 1.6;
    }
    
    /* Buttons should be readable - minimum 14px */
    .btn,
    .btn-all a,
    .blog-btn a,
    .service-btn a,
    .review-btn a,
    .header-btn a,
    button,
    button[type="submit"],
    input[type="submit"] {
        font-size: 1.4rem !important; /* 14px minimum for buttons */
    }
    
    /* Links and small text - minimum 14px */
    .blog-item ul li,
    .breadcrumb-item,
    .news-meta-info,
    .team-member-department,
    .team-member-location {
        font-size: 1.4rem !important; /* 14px */
    }
}

/* ============================================
   IMAGE QUALITY & RENDERING OPTIMIZATION
   Prevent blurry images and icons
   ============================================ */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    max-width: 100%;
    height: auto;
}

/* High-quality rendering for icons and small images */
.service-item img,
.benefit-icon img,
.rating-item img,
.policy-circle img,
[class*="-icon"] img,
[class*="icon-"] img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Service icons - proper sizing for clarity */
.service-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Benefit icons - proper sizing */
.benefit-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Rating icons - proper sizing */
.rating-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* Global button text standardization - ALL CAPS */
.btn,
.btn-all a,
.blog-btn a,
.service-btn a,
.review-btn a,
.header-btn a,
.hero-item a,
.policy-button,
.policy-button a,
.blog-button a,
.news-btn a,
.blog-btm-btn a,
.working-with-chainthat-btn a,
.tab-btn,
.tab-buttons a,
.tab-buttons3 a,
button,
button[type="submit"],
button[type="button"],
input[type="submit"],
.tuch-submit button,
.file-submit button,
.cookie-consent-accept,
.cookie-consent-decline,
a.button,
[class*="-btn"] a,
[class*="-button"] a {
    text-transform: uppercase !important;
}

a,
a:hover {
  text-decoration: none;
}

/* Main content wrapper to push footer to bottom */
.site-content {
    flex: 1;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin: 0;
}

p {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  line-height: var(--line-height-heading);
}

h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-heading-tight);
}

h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-heading);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: var(--font-weight-medium);
}


/*==Basic-setup==*/

/*===this-is-code-start===*/
/* ============================================
   CONSOLIDATED CONTAINER SYSTEM
   All container width, padding, and margin declarations
   Responsive max-widths for optimal viewing
   ============================================ */

/* Base Container Styles - 5% padding on all screens */
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
  max-width: 100%;
  box-sizing: border-box;
}

.container-fluid {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
}

/* Header Container - matches main container */
.header-area .container {
  width: 100%;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
  max-width: 100%;
  box-sizing: border-box;
}

/* All area containers inherit base container styles */
section .container,
div[class*="-area"] .container {
  width: 100%;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
  max-width: 100%;
  box-sizing: border-box;
}

/* ============================================
   COMPREHENSIVE STYLE GUIDE & DESIGN TOKENS
   Base: 1rem = 10px (html font-size: 62.5%)
   Font sizes: Use rem
   Spacing (padding/margin/gaps): Use em
   Sizes (width/height): Use em (except container max-widths)
   ============================================ */

/* Set base font size for rem calculations */
html {
  font-size: 62.5%; /* Base: 1rem = 10px */
}

/* Mobile and Tablet: 1rem = 16px */
@media screen and (max-width: 991px) {
  html {
    font-size: 100%; /* Base: 1rem = 16px */
  }
  
  /* Fix all 1.6rem font sizes to 1rem (16px) on mobile/tablet */
  p,
  body,
  .full-desc,
  .description-text,
  .service-item p,
  .working-with-chainthat-card p,
  .blog-item p,
  .our-mobil-cnt p,
  .adminis-title p,
  .adminis-video-title p,
  .adminis-video-left p,
  .year-box10 p,
  .rating-title p,
  .rating-item p,
  .timeline-title p,
  .rb-item p,
  .working-with-chainthat-title p,
  .working-with-chainthat-cnt p,
  .rb-item h4,
  .homepage-partners-header h2,
  .review-item h4,
  .ipsum-title-main span,
  .job-main ul li:nth-of-type(2) a,
  .adminis-video-title span {
    font-size: 1rem !important; /* 16px - now that 1rem = 16px */
  }
}

:root {
  /* ========================================
     TYPOGRAPHY
     ======================================== */
  
  /* Font Families */
  --font-family-base: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-family-heading: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-family-mono: 'Courier New', Courier, monospace;

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Font Sizes (rem for font-size) */
  --font-size-xs: 1.2rem;          /* 12px */
  --font-size-sm: 1.4rem;          /* 14px */
  --font-size-base: 1.6rem;        /* 16px */
  --font-size-md: 1.8rem;          /* 18px */
  --font-size-lg: 2rem;            /* 20px */
  --font-size-xl: 2.4rem;          /* 24px */
  --font-size-2xl: 2.7rem;         /* 27px */
  --font-size-3xl: 3rem;           /* 30px */
  --font-size-4xl: 4rem;           /* 40px */
  --font-size-5xl: 5rem;           /* 50px */
  --font-size-6xl: 6.5rem;         /* 65px */
  --font-size-7xl: 8rem;           /* 80px */
  
  /* Body & Heading Font Sizes */
  --font-size-body: 1.6rem;        /* 16px */
  --font-size-body-sm: 1.4rem;     /* 14px */
  --font-size-h1: 8rem;            /* 80px */
  --font-size-h2: 6.5rem;          /* 65px */
  --font-size-h3: 5rem;            /* 50px */
  --font-size-h4: 4rem;            /* 40px */
  --font-size-h5: 2.7rem;          /* 27px */
  --font-size-h6: 1.8rem;          /* 18px */

  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-snug: 1.3;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;
  --line-height-body: 1.6;
  --line-height-heading-tight: 1.2;
  --line-height-heading: 1.3;

  /* Letter Spacing (em) */
  --letter-spacing-tight: -0.05em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;

  /* ========================================
     COLOR PALETTE
     ======================================== */
  
  /* Brand Colors */
  --color-primary: #00524C;
  --color-primary-light: #007068;
  --color-primary-dark: #003b36;
  --color-secondary: #EB7923;
  --color-secondary-light: #ff8c3a;
  --color-secondary-dark: #d86b1e;
  --color-accent: #FCB336;
  --color-accent-light: #ffc557;
  --color-accent-dark: #e5a020;
  
  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F6F6F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  --color-gray-600: #4F4F4F;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;
  
  /* Semantic Colors */
  --color-surface: #FFFFFF;
  --color-surface-alt: #F6F6F6;
  --color-surface-dark: #00524C;
  --color-text-primary: #000000;
  --color-text-secondary: #4F4F4F;
  --color-text-light: #FFFFFF;
  --color-text-muted: #6B7280;
  
  /* State Colors */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;
  
  /* Overlay & Shadow Colors */
  --color-overlay: rgba(0, 0, 0, 0.5);
  --color-overlay-light: rgba(0, 0, 0, 0.3);
  --color-overlay-dark: rgba(0, 0, 0, 0.7);

  /* ========================================
     SPACING SCALE (em for spacing)
     Use for padding, margin, gap
     ======================================== */
  --space-0: 0;
  --space-1: 0.1em;     /* ~1.6px at 16px base */
  --space-2: 0.2em;     /* ~3.2px */
  --space-3: 0.3em;     /* ~4.8px */
  --space-4: 0.4em;     /* ~6.4px */
  --space-5: 0.5em;     /* ~8px */
  --space-6: 0.6em;     /* ~9.6px */
  --space-8: 0.8em;     /* ~12.8px */
  --space-10: 1em;      /* ~16px */
  --space-12: 1.2em;    /* ~19.2px */
  --space-15: 1.5em;    /* ~24px */
  --space-16: 1.6em;    /* ~25.6px */
  --space-20: 2em;      /* ~32px */
  --space-24: 2.4em;    /* ~38.4px */
  --space-30: 3em;      /* ~48px */
  --space-32: 3.2em;    /* ~51.2px */
  --space-40: 4em;      /* ~64px */
  --space-48: 4.8em;    /* ~76.8px */
  --space-56: 5.6em;    /* ~89.6px */
  --space-64: 6.4em;    /* ~102.4px */
  --space-80: 8em;      /* ~128px */
  --space-96: 9.6em;    /* ~153.6px */
  
  /* Named Spacing Tokens (legacy support) */
  --space-xxs: 0.4em;
  --space-xs: 0.8em;
  --space-sm: 1.2em;
  --space-md: 1.6em;
  --space-lg: 2.4em;
  --space-xl: 3.2em;
  --space-xxl: 4.8em;

  /* ========================================
     SIZING (em for width/height)
     ======================================== */
  --size-1: 0.25em;
  --size-2: 0.5em;
  --size-3: 0.75em;
  --size-4: 1em;
  --size-5: 1.25em;
  --size-6: 1.5em;
  --size-8: 2em;
  --size-10: 2.5em;
  --size-12: 3em;
  --size-16: 4em;
  --size-20: 5em;
  --size-24: 6em;
  --size-32: 8em;
  --size-40: 10em;
  --size-48: 12em;
  --size-56: 14em;
  --size-64: 16em;
  --size-72: 18em;
  --size-80: 20em;
  --size-96: 24em;

  /* ========================================
     BORDERS (em)
     ======================================== */
  --border-width-0: 0;
  --border-width-1: 0.0625em;   /* ~1px */
  --border-width-2: 0.125em;    /* ~2px */
  --border-width-3: 0.1875em;   /* ~3px */
  --border-width-4: 0.25em;     /* ~4px */
  --border-width-5: 0.3125em;   /* ~5px */
  
  /* Border Radius (em) */
  --radius-none: 0;
  --radius-xs: 0.2em;
  --radius-sm: 0.4em;
  --radius-md: 0.8em;
  --radius-lg: 1.2em;
  --radius-xl: 1.6em;
  --radius-2xl: 2em;
  --radius-3xl: 2.4em;
  --radius-full: 9999em;

  /* ========================================
     SHADOWS (em for blur/spread)
     ======================================== */
  --shadow-sm: 0 0.0625em 0.125em 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 0.25em 0.375em -0.0625em rgba(0, 0, 0, 0.1), 0 0.125em 0.25em -0.125em rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 0.625em 0.9375em -0.1875em rgba(0, 0, 0, 0.1), 0 0.25em 0.375em -0.25em rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 1.25em 1.5625em -0.3125em rgba(0, 0, 0, 0.1), 0 0.625em 0.9375em -0.625em rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 1.5625em 3.125em -0.75em rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 0.125em 0.25em 0 rgba(0, 0, 0, 0.06);
  --shadow-none: 0 0 0 0 rgba(0, 0, 0, 0);

  /* ========================================
     TRANSITIONS & ANIMATIONS
     ======================================== */
  --transition-fast: 0.15s ease-in-out;
  --transition-base: 0.2s ease-in-out;
  --transition-slow: 0.3s ease-in-out;
  --transition-slower: 0.5s ease-in-out;
  
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* ========================================
     Z-INDEX SCALE
     ======================================== */
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-modal-backdrop: 1040;
  --z-index-modal: 1050;
  --z-index-popover: 1060;
  --z-index-tooltip: 1070;

  /* ========================================
     COMPONENT-SPECIFIC TOKENS
     ======================================== */
  
  /* Container */
  --container-padding-x: 5%;
  --container-max-width-sm: 640px;
  --container-max-width-md: 768px;
  --container-max-width-lg: 1024px;
  --container-max-width-xl: 1280px;
  --container-max-width-2xl: 1536px;
  --container-max-width-fhd: 1728px;
  
  /* Header */
  --header-height: 5em;
  --header-height-mobile: 4em;
  
  /* Hero */
  --hero-padding-y: 9.375em;  /* 150px at 16px base */
  --hero-padding-y-bottom: 7.5em;  /* 120px */
  
  /* Partners Carousel */
  --partners-cell-size: 14rem;
  
  /* Buttons */
  --button-padding-x: 2em;
  --button-padding-y: 0.75em;
  --button-border-radius: 0.3125em;
  --button-font-size: 1.6rem;
  
  /* Cards */
  --card-padding: 2em;
  --card-border-radius: 1em;
  --card-shadow: var(--shadow-md);
  
  /* Forms */
  --input-height: 3em;
  --input-padding-x: 1em;
  --input-padding-y: 0.75em;
  --input-border-width: 0.0625em;
  --input-border-radius: 0.5em;
  --input-font-size: 1.6rem;
}

/* Medium Desktop (1200px to 1600px) - Slightly reduced sizes */
@media (min-width: 75em) and (max-width: 100em) {
  :root {
    --font-size-h1: 7.5rem;   /* 75px */
    --font-size-h2: 6rem;     /* 60px */
    --font-size-h3: 4.8rem;   /* 48px */
    --font-size-h4: 3.8rem;   /* 38px */
    --font-size-h5: 2.6rem;   /* 26px */
    --font-size-h6: 1.7rem;   /* 17px */
    --partners-cell-size: 13rem; /* 130px */
  }
}

/* Tablet Landscape to Small Desktop (1024px to 1199px) */
@media (min-width: 64em) and (max-width: 74.9375em) {
  :root {
    --font-size-h1: 7rem;     /* 70px */
    --font-size-h2: 5.5rem;   /* 55px */
    --font-size-h3: 4.2rem;   /* 42px */
    --font-size-h4: 3.6rem;   /* 36px */
    --font-size-h5: 2.5rem;   /* 25px */
    --font-size-h6: 1.6rem;   /* 16px */
    --partners-cell-size: 12rem; /* 120px */
  }
}

/* Tablet Portrait (below 1024px) */
@media (max-width: 63.9375em) {
  :root {
    --font-size-h1: 6rem;     /* 60px */
    --font-size-h2: 5rem;     /* 50px */
    --font-size-h3: 4rem;     /* 40px */
    --font-size-h4: 3.5rem;   /* 35px */
    --font-size-h5: 2.5rem;   /* 25px */
    --font-size-h6: 1.6rem;   /* 16px */
    --partners-cell-size: 11rem; /* 110px */
  }
}

@media (max-width: 47.9375em) {
  :root {
    --font-size-body: 1.4rem;     /* 14px */
    --font-size-h1: 3.6rem;       /* 36px */
    --font-size-h2: 3rem;         /* 30px */
    --font-size-h3: 2.4rem;       /* 24px */
    --font-size-h4: 2rem;         /* 20px */
    --font-size-h5: 1.6rem;       /* 16px */
    --font-size-h6: 1.4rem;       /* 14px */
    --partners-cell-size: 10rem;  /* 100px */
  }
}

@media (max-width: 30em) {
  :root {
    --partners-cell-size: 8rem;   /* 80px */
  }
}

/* ============================================
   RESPONSIVE MAX-WIDTH BREAKPOINTS
   Content max-width scales with screen size
   ============================================ */

/* Extra Small Mobile (max-width: 29.9375em) */
@media (max-width: 29.9375em) {
  .container,
  .container-fluid,
  .header-area .container,
  section .container,
  div[class*="-area"] .container {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 100%;
  }
}

/* Small Mobile (480px to 767px) */
@media (min-width: 30em) and (max-width: 47.9375em) {
  .container,
  .container-fluid,
  .header-area .container,
  section .container,
  div[class*="-area"] .container {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 100%;
  }
}

/* Tablet Portrait (768px to 991px) */
@media (min-width: 48em) and (max-width: 61.9375em) {
  .container,
  .container-fluid,
  .header-area .container,
  section .container,
  div[class*="-area"] .container {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 56em; /* 768px + 10% padding = ~896px usable */
  }
}

/* Tablet Landscape (992px to 1199px) */
@media (min-width: 62em) and (max-width: 74.9375em) {
  .container,
  .container-fluid,
  .header-area .container,
  section .container,
  div[class*="-area"] .container {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 72em; /* 992px + 10% padding = ~1152px usable */
  }
}

/* Small Desktop (1200px to 1439px) */
@media (min-width: 75em) and (max-width: 89.9375em) {
  .container,
  .container-fluid,
  .header-area .container,
  section .container,
  div[class*="-area"] .container {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 83.375em; /* 1200px content area */
  }
}

/* Medium Desktop (1440px to 1599px) */
@media (min-width: 90em) and (max-width: 99.9375em) {
  .container,
  .container-fluid,
  .header-area .container,
  section .container,
  div[class*="-area"] .container {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 96em; /* 1440px content area */
  }
}

/* Large Desktop (1600px to 1919px) */
@media (min-width: 100em) and (max-width: 119.9375em) {
  .container,
  .container-fluid,
  .header-area .container,
  section .container,
  div[class*="-area"] .container {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 100em; /* Optimized for 1600px screens */
  }
}

/* Full HD Desktop (1920px to 2559px) - EXACT 1728px as requested */
@media (min-width: 120em) and (max-width: 159.9375em) {
  .container,
  .container-fluid,
  .header-area .container,
  section .container,
  div[class*="-area"] .container {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 108em; /* EXACT requirement for 1920px */
  }
}

/* 2K Desktop (2560px to 3199px) */
@media (min-width: 160em) and (max-width: 199.9375em) {
  .container,
  .container-fluid,
  .header-area .container,
  section .container,
  div[class*="-area"] .container {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 144em; /* 2560px - 10% = ~2304px content */
  }
}

/* 4K+ Ultra Wide (3200px and above) */
@media (min-width: 200em) {
  .container,
  .container-fluid,
  .header-area .container,
  section .container,
  div[class*="-area"] .container {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 180em; /* 3200px - 10% = ~2880px content */
  }
}

/* ========================================
   Bootstrap Grid Enhancement
   Center align columns in incomplete rows
   ======================================== */

/* Base row styles */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
}

/* Manual center alignment - use class="row justify-content-center" */
.row.justify-content-center {
  justify-content: center;
}

/* Automatic center alignment for 3-column layouts (col-lg-4) */
/* Centers last row when it has 1 or 2 items */
.row:has(.col-lg-4:last-child:nth-child(3n+1)),
.row:has(.col-lg-4:last-child:nth-child(3n+2)) {
  justify-content: center;
}

/* Automatic center alignment for 4-column layouts (col-lg-3) */
/* Centers last row when it has 1, 2, or 3 items */
.row:has(.col-lg-3:last-child:nth-child(4n+1)),
.row:has(.col-lg-3:last-child:nth-child(4n+2)),
.row:has(.col-lg-3:last-child:nth-child(4n+3)) {
  justify-content: center;
}

/* Automatic center alignment for 2-column layouts (col-lg-6) */
/* Centers last row when it has 1 item */
.row:has(.col-lg-6:last-child:nth-child(odd)) {
  justify-content: center;
}
/* ======================================== */

/* Mobile section padding optimization */
@media (max-width: 47.9375em) {
  .hero-area,
  .partners-area,
  .policy-area,
  .year-area,
  .service-area,
  .working-with-chainthat-area,
  .review-area,
  .blog-area,
  .footer-area {
    padding: 2.5em 0;
  }
  
  /* Mobile section titles optimization */
  .hero-item h2 {
    font-size: 1.875rem; /* 30px - reduced from 40px */
    line-height: 1.2;
    margin-bottom: 1.25em;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    letter-spacing: 0; /* Reset negative letter-spacing for mobile */
  }
  
  .section-title h2,
  .policy-title h2,
  .service-title h2,
  .review-title h2,
  .blog-title h2 {
    font-size: 1.625rem; /* 26px - reduced from 35px */
    line-height: 1.3;
    margin-bottom: 1.25em;
  }
  
  /* Mobile card optimization */
  .policy-item,
  .service-item,
  .working-with-chainthat-card,
  .review-card,
  .blog-item {
    padding: 1.25em;
    margin-bottom: 1.25em;
  }
  
  .policy-item h4,
  .service-item h4,
  .working-with-chainthat-card h3 {
    font-size: 2.6rem; /* 18px */
  }
  
  .policy-item p,
  .service-item p,
  .working-with-chainthat-card p {
    font-size: 1rem !important; /* 16px - now that 1rem = 16px on mobile */
    line-height: 1.5;
  }
  
  /* Mobile button optimization */
  .btn-all,
  .blog-btn,
  .service-btn,
  .review-btn {
    margin-top: 1.25em;
  }
  
  .btn-all a,
  .blog-btn a,
  .service-btn a,
  .review-btn a {
    padding: 0.9375em 1.875em;
    font-size: 0.875rem; /* 14px */
  }
}
/* Small Mobile optimization (480px and below) */
@media (max-width: 30em) {
  .header-area {
    padding: 1rem 0;
  }
  
  .header-area.sticky {
    padding: 0.75rem 0;
  }
  
  /* Even more compact sections */
  .hero-area,
  .partners-area,
  .policy-area,
  .year-area,
  .service-area,
  .working-with-chainthat-area,
  .review-area,
  .blog-area,
  .footer-area {
    padding: 1.875em 0;
  }
  
  /* Smaller titles */
  .hero-item h2 {
    font-size: 1.5rem; /* 24px - reduced for small mobile */
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    letter-spacing: 0; /* Reset negative letter-spacing for small mobile */
  }
  
  .section-title h2,
  .policy-title h2,
  .service-title h2,
  .review-title h2,
  .blog-title h2 {
    font-size: 1.25rem; /* 20px - reduced for small mobile */
  }
  
  /* Compact cards */
  .policy-item,
  .service-item,
  .working-with-chainthat-card,
  .review-card,
  .blog-item {
    padding: 0.9375em;
    margin-bottom: 0.9375em;
  }
  
  /* MAINTAIN READABLE FONT SIZES - NO TINY TEXT */
  .btn-all a,
  .blog-btn a,
  .service-btn a,
  .review-btn a {
    padding: 0.9375em 1.875em;
    font-size: 1.4rem !important; /* 14px - readable minimum */
  }
  
  /* Keep text readable */
  p {
    font-size: 1.6rem !important; /* 16px - maintain readability */
  }
}

/* ============================================
   POLICY CAROUSEL RESPONSIVE SYSTEM
   Updated for 64em breakpoint
   ============================================ */

/* Policy Carousel - Desktop (1024px+) */
#owl-csel-policy-desktop .policy-item {
    margin: 0 0.9375em;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 25em;
}

#owl-csel-policy-desktop .policy-item .policy-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#owl-csel-policy-desktop .policy-item .policy-button {
    margin-top: auto;
}

#owl-csel-policy-desktop .owl-stage {
    display: flex;
    align-items: stretch;
}

#owl-csel-policy-desktop .owl-item {
    display: flex;
    height: 100%;
    align-items: stretch;
}

/* Policy Carousel - Tablet (768px - 1023px) */
#owl-csel-policy-tablet .policy-item {
    margin: 0 0.9375em;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 23.75em;
}

#owl-csel-policy-tablet .policy-item .policy-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#owl-csel-policy-tablet .policy-item .policy-button {
    margin-top: auto;
}

#owl-csel-policy-tablet .owl-stage {
    display: flex;
    align-items: stretch;
}

#owl-csel-policy-tablet .owl-item {
    display: flex;
    height: 100%;
    align-items: stretch;
}

/* Policy Carousel - Mobile (below 768px) */
#owl-csel-policy-mobile .policy-item {
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 21.875em;
}
#owl-csel-policy-mobile .policy-item .policy-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
#owl-csel-policy-mobile .policy-item .policy-button {
    margin-top: auto;
}

#owl-csel-policy-mobile .owl-stage {
    display: flex;
    align-items: stretch;
}

#owl-csel-policy-mobile .owl-item {
    display: flex;
    height: 100%;
    align-items: stretch;
    justify-content: center;
}

/* Policy Carousel Responsive Breakpoints */
/* Desktop Large (1200px+) */
@media (min-width: 75em) {
    #owl-csel-policy-desktop .policy-item {
        min-height: 26.25em;
    }
    
    #owl-csel-policy-desktop .policy-item h4 {
        font-size: 1.75rem; /* 28px */
    }
}

/* Desktop (1024px - 1199px) */
@media (min-width: 64em) and (max-width: 74.9375em) {
    #owl-csel-policy-desktop .policy-item {
        min-height: 25em;
    }
    
    #owl-csel-policy-desktop .policy-item h4 {
        font-size: 1.625rem; /* 26px */
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 48em) and (max-width: 63.9375em) {
    #owl-csel-policy-tablet .policy-item {
        min-height: 23.75em;
    }
    
    #owl-csel-policy-tablet .policy-item h4 {
        font-size: 1.5rem; /* 24px */
    }
}

/* Mobile (max-width: 47.9375em) */
@media (max-width: 47.9375em) {
    #owl-csel-policy-mobile .policy-item {
        min-height: 21.875em;
        margin: 0 0.625em;
    }
    
    #owl-csel-policy-mobile .policy-item h4 {
        font-size: 1.375rem; /* 22px */
    }
}

/* Small Mobile (max-width: 30em) */
@media (max-width: 30em) {
    #owl-csel-policy-mobile .policy-item {
        min-height: 20em;
    }
    
    #owl-csel-policy-mobile .policy-item h4 {
        font-size: 1.25rem; /* 20px */
    }
    
    /* Smaller nav buttons on very small screens */
    #owl-csel-policy-mobile .owl-nav button {
        padding: 0.5em 0.625em !important;
        font-size: 0.875rem !important; /* 14px */
    }
}

/* Ensure full-width sections also respect max-width */
section,
div[class*="-area"] {
  max-width: 100%;
  overflow-x: hidden;
}

/* Center sections that have background images/colors - use 5% padding */
section > *:not(.container):not(video):not(.adminis-background-video):not(.adminis-background-image):not(.about-background-video):not(.about-background-image):not(.solution-hero-background-video):not(.solution-hero-background-image),
div[class*="-area"] > *:not(.container):not(video):not([class*="-background-"]) {
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
}

/* Responsive max-widths for full-width section content */
@media (min-width: 120em) and (max-width: 159.9375em) {
  section > *:not(.container):not(video):not(.adminis-background-video):not(.adminis-background-image):not(.about-background-video):not(.about-background-image):not(.solution-hero-background-video):not(.solution-hero-background-image),
  div[class*="-area"] > *:not(.container):not(video):not([class*="-background-"]) {
    max-width: 108em;
  }
}

@media (min-width: 160em) and (max-width: 199.9375em) {
  section > *:not(.container):not(video):not(.adminis-background-video):not(.adminis-background-image):not(.about-background-video):not(.about-background-image):not(.solution-hero-background-video):not(.solution-hero-background-image),
  div[class*="-area"] > *:not(.container):not(video):not([class*="-background-"]) {
    max-width: 144em;
  }
}

@media (min-width: 200em) {
  section > *:not(.container):not(video):not(.adminis-background-video):not(.adminis-background-image):not(.about-background-video):not(.about-background-image):not(.solution-hero-background-video):not(.solution-hero-background-image),
  div[class*="-area"] > *:not(.container):not(video):not([class*="-background-"]) {
    max-width: 180em;
  }
}

/*==container-setup==*/
.header-area {
  padding: 1.5rem 0; /* Increased padding for larger navbar */
  position: relative; /* Initially relative, becomes fixed via JS */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000; /* High z-index to stay on top */
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(0.25em);
  transition: all 0.3s ease;
}

.header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem 0; /* Slightly smaller when sticky */
  animation: slideDown 0.3s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0); /* Hardware acceleration to prevent blur */
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Placeholder to prevent content jump when header becomes fixed */
.header-placeholder {
  display: none;
  height: 0;
}

.header-placeholder.active {
  display: block;
  height: var(--header-height, 100px);
}

.header-main {
  display: grid;
  grid-template-columns: 20% 67% auto;
  align-items: center;
}

.header-btn {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-btn a {
  font-weight: 500;
  font-size: 1rem; /* Increased for better visibility */
  letter-spacing: 0.03125em;
  text-transform: uppercase;
  border-radius: 2.5em;
  background: var(--color-secondary);
  padding: 1em 2em; /* Increased horizontal padding */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: 0.2s all ease;
  outline: none;
  border: 0.125em solid transparent;
  white-space: nowrap;
  line-height: 1.2;
  min-height: 2.75em;
}

.header-btn a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white) !important; /* Match global button hover */
}

.header-btn a:focus {
  outline: 0.1875em solid var(--color-secondary);
  outline-offset: 0.125em;
  border-color: var(--color-secondary);
}

.logo-item img {
  max-width: 10em;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.main-nav ul {
  display: flex;
  align-items: center;
  column-gap: 1.4em;
  justify-content: center;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  font-weight: 500;
  font-size: 1.5rem; /* Increased from 1.2rem to 18px for better readability */
  color: var(--color-primary);
  letter-spacing: 0.025em;
  padding-bottom: 0.625em;
}

.main-nav ul li a span.dropdown-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 0.4em;
  transition: transform 0.3s ease;
}

.main-nav ul li a span.dropdown-arrow svg {
  width: 0.625em;
  height: 0.4em;
  color: currentColor;
}

.main-nav ul li:hover a span.dropdown-arrow {
  transform: translateY(2px);
}

.submenu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 2em;
  left: 0;
  min-width: 18.4375em;
  max-width: 37.5em; /* Allow wider dropdown for long menu items */
  width: max-content; /* Adjust width to content */
  background: var(--color-white);
  box-shadow: 0em 0em 0.3125em rgba(0, 0, 0, 0.3);
  opacity: 0; 
  visibility: hidden; 
  transition: all 0.3s ease;
  padding: 0.9375em;
  z-index: 10;
  align-items: initial !important;
  justify-content: flex-start !important;
  border-radius: 0.75em;
}

.main-nav ul li:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.submenu li {
  display: block;
  margin-bottom: 0.625em;
  white-space: nowrap; /* Keep menu items in one line */
}

.submenu li a {
  display: block;
  text-align: left;
  padding-bottom: 0 !important;
}

.mobil-brand img {
  max-width: 2.375em;
}

.menu-toggle {
  display: none;
}

.menu-btn {
  cursor: pointer;
  text-align: right;
  border: none;
  background: transparent;
  padding: 0.3125em;
  border-radius: 0.25em;
  transition: 0.2s all ease;
}

.menu-btn:hover {
  background: rgba(235, 121, 35, 0.1);
}

.menu-btn:focus {
  outline: 0.1875em solid var(--color-secondary);
  outline-offset: 0.125em;
}

.menu-btn i {
  font-size: 2rem;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.menu-btn:hover i {
  color: var(--color-secondary);
}

.sidebar-menu {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 25em;
  width: 100%;
  height: 100vh;
  background: var(--color-primary);
  overflow-y: auto;
  overflow-x: hidden; /* Prevent horizontal overflow */
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 10000;
  display: none;
  box-sizing: border-box;
}

.sidebar-menu.active {
  transform: translateX(0);
}

.sidebar-menu .menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25em 1.25em;
  box-sizing: border-box;
  width: 90%;
}

.mobil-brand {
  flex: 1;
  max-width: calc(100% - 4.375em);
  overflow: hidden;
}

.mobil-brand img {
  max-width: 100%;
  height: auto;
  display: block;
}

.close-icon {
  position: relative;
  width: 1.5625em;
  height: 1.5625em;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0.3125em;
  border-radius: 0.25em;
  transition: 0.2s all ease;
}

.close-icon:hover {
  background: rgba(255, 255, 255, 0.1);
}

.close-icon:focus {
  outline: 0.1875em solid var(--color-secondary);
  outline-offset: 0.125em;
}

.close-icon img {
  max-width: 3.375em;
}

.menu-wrap {
  padding: 3.75em 1.25em 0 1.875em;
  box-sizing: border-box;
  width: 100%;
  overflow-y: auto;
  max-height: calc(100vh - 5em);
}

/* Mobile Menu Container */
.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Parent menu items (Top Level) */
.mobile-menu > .menu-item {
  margin-bottom: 0.3125em;
  border-bottom: 0.0625em solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.625em;
}

.mobile-menu > .menu-item:last-child {
  border-bottom: none;
}

/* Parent menu links */
.mobile-menu > .menu-item > a {
  font-weight: 600;
  font-size: 1.5rem; /* 24px */
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-white);
  cursor: pointer;
  padding: 0.75em 0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu > .menu-item > a:hover {
  color: var(--color-secondary);
  padding-left: 0.3125em;
}

/* Touch devices - active/tap state for mobile menu */
@media (hover: none) and (pointer: coarse) {
  .mobile-menu > .menu-item > a:active,
  .mobile-menu > .menu-item > a.touch-active {
    color: var(--color-secondary) !important;
    background: rgba(235, 121, 35, 0.1);
    padding-left: 0.5em;
    transition: all 0.2s ease;
  }
}

/* Arrow icon for parent items with children (SVG) */
.mobile-menu > .menu-item.menu-item-has-children > a span.mobile-dropdown-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 0.625em;
  transition: transform 0.3s ease;
}

.mobile-menu > .menu-item.menu-item-has-children > a.submenu-open span.mobile-dropdown-arrow {
  transform: rotate(180deg);
}



/* Submenu (Child Items) */
.sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 0;
  margin: 0;
  list-style: none;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
}

.sub-menu.open {
  max-height: 62.5em !important;
  padding: 0.625em 0;
  margin-top: 0.625em;
  margin-bottom: 0.625em;
}

/* Child menu items */
.sub-menu > .menu-item {
  margin: 0;
  padding: 0;
}

.sub-menu > .menu-item > a {
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  display: block;
  color: var(--color-white);
  padding: 0.625em 1.25em;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.sub-menu > .menu-item > a:hover {
  color: var(--color-secondary);
  background: rgba(235, 121, 35, 0.1);
  padding-left: 1.5625em;
  opacity: 1;
}

/* Touch devices - submenu active/tap state */
@media (hover: none) and (pointer: coarse) {
  .sub-menu > .menu-item > a:active,
  .sub-menu > .menu-item > a.touch-active {
    color: var(--color-secondary) !important;
    background: rgba(235, 121, 35, 0.15);
    padding-left: 1.875em;
    opacity: 1;
    transition: all 0.2s ease;
  }
}

/* Parent items without children */
.mobile-menu > .menu-item:not(.menu-item-has-children) > a {
  padding: 0.9375em 0;
}

/* Active submenu state */
.sub-menu.active {
  margin-top: 0.625em;
}

/* Legacy submenu styling - keep for backwards compatibility */
.sub-item {
  font-size: 1rem;
  font-weight: 300;
  display: block;
  color: var(--color-white);
  padding: 0.5em 1.25em;
  text-decoration: none;
  opacity: 0.85;
}

.sub-item:hover {
  opacity: 1;
  color: var(--color-secondary);
  padding-left: 1.5625em;
  transition: all 0.3s ease;
}

.sub-btn span img {
  margin-left: 0.5em;
}

.sub-btn {
  margin-bottom: 0;
}

/* Overlay styles */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   RESPONSIVE NAVIGATION SYSTEM (Best Practice)
   Following modern responsive design principles
   ============================================ */

/* Large Desktop and Desktop (1025px+) - Default styles already defined above */

/* Desktop Medium (1200px - 1399px) - Slightly tighter spacing */
@media (min-width: 75em) and (max-width: 87.4375em) {
  .header-main {
    grid-template-columns: 22% 63% auto;
    column-gap: 1.25em;
  }
  
  .main-nav ul {
    column-gap: 1.375em;
  }
  
  .main-nav ul li a {
    font-size: 1rem; /* 16px */
  }
  
  .logo-item img {
    max-width: 13.75em;
  }
  
  .header-btn a {
    font-size: 0.75rem; /* 12px */
    padding: 0.8125em 1.5em;
    letter-spacing: 0.025em;
  }
}

/* Desktop Small (1025px - 1199px) - Show navigation with smaller spacing */
@media (min-width: 64.0625em) and (max-width: 74.9375em) {
  .header-main {
    grid-template-columns: 24% 62% auto;
    column-gap: 0.9375em;
  }
  
  .main-nav ul {
    column-gap: 1em;
  }
  
  .main-nav ul li a {
    font-size: 0.875rem; /* 14px */
  }
  
  .logo-item img {
    max-width: 12.5em;
  }
  
  .header-btn a {
    font-size: 0.6875rem; /* 11px */
    padding: 0.75em 1.25em;
    letter-spacing: 0.021875em;
  }
}
/* Tablet Landscape and below (1024px and below) - Hide desktop nav, show mobile menu */
@media (max-width: 64em) {
  /* Container declarations moved to consolidated container system at top */
  
  .header-area {
    padding: 1.25rem 0;
  }
  
  .header-area.sticky {
    padding: 0.875rem 0;
  }
  
  .header-main {
    grid-template-columns: 1fr auto;
    column-gap: 0.9375em;
    align-items: center;
  }
  
  /* Submenu responsive adjustments for tablet/mobile */
  .submenu {
    max-width: 90vw; /* Limit width to viewport */
    width: auto;
  }
  
  .submenu li {
    white-space: normal; /* Allow wrapping on smaller screens */
  }
  
  .main-nav {
    display: none !important;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .sidebar-menu {
    display: block;
  }
  
  .header-btn {
    display: block;
    margin-right: 0;
  }
  
  .header-btn a {
    font-size: 0.75rem; /* 12px */
    padding: 0.625em 1.125em;
    white-space: nowrap;
  }
  
  /* Layout header button and menu toggle side by side */
  .header-main > div:last-child {
    display: flex;
    align-items: center;
    gap: 0.9375em;
    justify-content: flex-end;
  }
  
  .logo-item img {
    max-width: 11.25em;
  }
  
  .header-area {
    padding: 1.25em 0;
  }
  
  /* Adjust submenu positioning for tablet */
  .submenu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18.75em;
    max-width: 90vw;
    z-index: 10001;
  }
}

/* Tablet Large (992px and below) */
@media (max-width: 62em) {
  .header-main {
    grid-template-columns: 40% 60%;
    column-gap: 0.9375em;
  }
  
  .logo-item img {
    max-width: 11.25em;
  }
  
  .header-area {
    padding: 1.25em 0;
  }
}
/* Tablet (768px and below) */
@media (max-width: 48em) {
  .header-main {
    grid-template-columns: 1fr auto;
    column-gap: 0.625em;
  }
  
  .logo-item img {
    max-width: 9.375em;
  }
  
  .header-area {
    padding: 0.9375em 0;
  }
  
  .sidebar-menu {
    max-width: 20em;
  }
  
  .menu-btn img {
    max-width: 2.8125em;
  }
  
  /* Mobile menu adjustments */
  .sidebar-menu .menu-item {
    margin-bottom: 0.5em;
  }
  
  .mobile-menu > .menu-item > a {
    font-size: 1.375rem; /* 22px */
  }
  
  .sub-menu > .menu-item > a {
    font-size: 1rem; /* 16px */
  }
}

/* Mobile Large (576px and below) */
@media (max-width: 36em) {
  .header-main {
    grid-template-columns: 1fr auto;
    padding: 0 0.625em;
  }
  
  .logo-item img {
    max-width: 7.5em;
  }
  
  .header-area {
    padding: 0.75em 0;
  }
  
  .sidebar-menu {
    max-width: 17.5em;
  }
  
  .menu-btn img {
    max-width: 2.5em;
  }
  
  /* Mobile menu text adjustments */
  .mobile-menu > .menu-item > a {
    font-size: 1.25rem; /* 20px */
  }
  
  .sub-menu > .menu-item > a {
    font-size: 0.9375rem; /* 15px */
  }
}

/* Mobile Small (480px and below) */
@media (max-width: 30em) {
  .header-main {
    grid-template-columns: 1fr auto;
    padding: 0 0.3125em;
  }
  
  .logo-item img {
    max-width: 6.25em;
  }
  
  .header-area {
    padding: 0.625em 0;
  }
  
  .sidebar-menu {
    max-width: 16.25em;
  }
  
  .menu-btn img {
    max-width: 2.1875em;
  }
  
  /* Compact mobile menu */
  .sidebar-menu .menu-header {
    padding: 0.9375em;
  }
  
  .sidebar-menu .menu-item {
    margin-bottom: 0.5em;
  }
  
  .mobile-menu > .menu-item > a {
    font-size: 1.125rem; /* 18px */
  }
  
  .sub-menu > .menu-item > a {
    font-size: 0.875rem; /* 14px */
    padding: 0.5em 0.9375em;
  }
}

/* ============================================
   NAVIGATION ACCESSIBILITY & UX IMPROVEMENTS
   ============================================ */
/* Focus states for keyboard navigation */
.main-nav ul li a:focus,
.sidebar-menu .menu-item a:focus {
  outline: 0.125em solid var(--color-secondary);
  outline-offset: 0.125em;
  border-radius: 0.25em;
}
/* Smooth transitions for all interactive elements */
.header-btn a,
.menu-btn,
.sidebar-menu .menu-item a {
  transition: all 0.3s ease;
}

/* Improved hover states */
.main-nav ul li:hover > a {
  color: var(--color-secondary);
}

/*===hero-section===*/
.hero-area {
  padding: 9.375em 0 7.5em 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 64em) {
.hero-main {
  max-width: 50%;
}
}

.hero-item {
  margin-top: 3em;
  padding: 0.625em;
}

.swoos-item {
  position: absolute;
  width: 80%;
  height: 100%;
  top: 0;
  right: 0;
}

.swoos-item img {
  width: 55%;
  display: block;
  margin-left: auto
}

.hero-item h2 {
  font-weight: 700;
  font-size: 5.25rem; /* 65px */
  line-height: 1.08;
  color: var(--color-primary);
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-item p {
  color: var(--color-black);
  margin-top: 1em;
  line-height: 1.4;
  max-width: 85%;
}

.hero-item a {
  font-weight: 600;
  font-size: 1rem; /* 16px */
  background: var(--color-secondary);
  display: inline-block;
  border-radius: 2.5em;
  color: var(--color-white);
  padding: 0.75em 2.25em;
  letter-spacing: 0.024375em;
  transition: 0.2s all ease;
  margin-top: 2.4375em;
}

.hero-item a:hover {
  background: var(--color-primary);
}

.main-content1 {
    position: relative;
}

.main-content1 .owl-dots {
    width: 100%;
    text-align: left;
    position: absolute;
    top: 0;
}

.main-content1 .owl-theme .owl-dots .owl-dot span {
  width: 1.2em;
    height: 0.15em;
    margin: 0.3em;
  background: #B3CBC9;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 5.625em;
  border: 0;
}

.main-content1 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #E97823;
}

.main-content1 .owl-dots button {
    border: none !important;
    outline: none !important;
}

.main-content1 .owl-nav button {
    border: none !important;
    outline: none !important;
}

.main-content1 .owl-theme .custom-nav {
    position: initial;
    top: 20%;
    left: 0;
    right: 0;
    display: none;
}
.main-content1 .owl-theme .custom-nav .owl-prev, .main-content1 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content1 .owl-theme .custom-nav .owl-prev i, .main-content1 .owl-theme .custom-nav .owl-next i {
    font-size: 1.25rem; /* 20px */
    color: var(--color-white);
    background: #5B2B81;
    width: 1.875em;
    height: 1.875em;
    border-radius: 50%;
    line-height: 1.875em;
    text-align: center;
}

.main-content1 .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.main-content1 .owl-theme .custom-nav .owl-next {
    right: 0;
}

.main-content1 .slider-item {
    background: teal;
}

.main-content1 .item {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.main-content1 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.hero-mobil img {
  width: 100%;
  border-radius: 0 0 0 2.5em;
  position: relative;
  margin-top: -6em;
  z-index: 1;
}

/*==partners-section==*/
.partners-area {
  background: var(--color-white);
  padding-bottom: 3.125em;
  overflow: hidden;
}

/* New Homepage Partners Carousel Styles */
.homepage-partners-container {
  max-width: 75em;
}

.homepage-partners-header h2 {
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 0.5em;
}

.homepage-partners-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 2em 0;
}

.homepage-partners-carousel {
  display: flex;
  gap: 4em;
  animation: scroll-partners 16.67s linear infinite;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

.homepage-partners-carousel:hover {
  animation-play-state: paused;
}

.homepage-partner-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 12.5em;
}

.homepage-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5em;
}

.homepage-partner-logo img {
  max-width: 8em;
  height: 65px;
  max-height: 65px;
  width: auto;
  object-fit: contain;
  object-position: center;
  opacity: 0.2;
  transition: transform 0.3s ease, opacity 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.homepage-partner-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-partner-logo:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.homepage-partner-logo a:hover img {
  transform: scale(1.05);
  opacity: 1;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-33.333%));
  }
}

/* Responsive Adjustments for Homepage Partners Carousel */
@media (max-width: 75em) {
  .homepage-partners-carousel {
    gap: 3em;
  }
  
  .homepage-partner-item {
    min-width: 10em;
  }
  
  .homepage-partner-logo img {
    max-width: 7em;
    height: 60px;
    max-height: 60px;
  }
}

@media (max-width: 48em) {
  .homepage-partners-header h2 {
    font-size: 1.4rem;
    margin-bottom: 2.5em;
  }
  
  .homepage-partners-carousel {
    gap: 2em;
    animation-duration: 11.12s;
  }
  
  .homepage-partner-item {
    min-width: 8em;
  }
  
  .homepage-partner-logo img {
    max-width: 6em;
    height: 50px;
    max-height: 50px;
  }
}

@media (max-width: 30em) {
  .homepage-partners-carousel {
    gap: 1.5em;
    animation-duration: 8.33s;
  }
  
  .homepage-partner-item {
    min-width: 6em;
  }
  
  .homepage-partner-logo img {
    max-width: 5em;
    height: 45px;
    max-height: 45px;
  }
}

#owl-csel2 .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5em;
}

#owl-csel2 .partners-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625em;
  height: 5em;
}

#owl-csel2 .partners-item {
  width: var(--partners-cell-size);
  height: var(--partners-cell-size);
  flex: 0 0 var(--partners-cell-size);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#owl-csel2 .partners-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#owl-csel2 .partners-item img {
  display: block;
  width: unset !important;
  height: 100%;
  max-height: 65px;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: luminosity;
  opacity: 0.65;
  transition: opacity 0.2s ease, transform 0.2s ease;
  float: none !important;
}

#owl-csel2 .partners-item img:hover {
  mix-blend-mode: normal;
  opacity: 1;
  transform: scale(1.02);
}

#owl-csel2 .partners-item1 img,
#owl-csel2 .partners-item2 img,
#owl-csel2 .partners-item3 img,
#owl-csel2 .partners-item4 img,
#owl-csel2 .partners-item5 img {
  max-width: 100% !important;
}

.partners-slide {
  background: var(--color-white);
}

/* OWL-CAROUSEL-02 */
.main-content2 {
    position: relative;
}

.main-content2 .owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 1%;
    display: none;
}

.main-content2 .owl-theme .owl-dots .owl-dot span {
  width: 1.25em;
  height: 1.25em;
  margin: 0.625em 0.4375em;
  background: transparent;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 1.875em;
  border: 0.125em solid  #5B2B81!important;
}

.main-content2 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #5B2B81;
}

.main-content2 .owl-dots button {
    border: none !important;
    outline: none !important;
}

.main-content2 .owl-nav button {
    border: none !important;
    outline: none !important;
}

.main-content2 .owl-theme .custom-nav {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    display: none;
}
.main-content2 .owl-theme .custom-nav .owl-prev, .main-content2 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content2 .owl-theme .custom-nav .owl-prev i, .main-content2 .owl-theme .custom-nav .owl-next i {
    font-size: 1.25rem; /* 20px */
    color: var(--color-white);
    background: #EB7923;
    width: 1.875em;
    height: 1.875em;
    border-radius: 50%;
    line-height: 1.875em;
    text-align: center;
}

.main-content2 .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.main-content2 .owl-theme .custom-nav .owl-next {
    right: 0;
}

.swoos-mobil img {
  width: 100%;
}

/*==policy-section==*/
.policy-area {
  background: var(--color-white);
  padding: 6.25em 0 1.875em 0;
}

.policy-title {
  max-width: 55.3125em;
  margin: auto;
}

.policy-title span {
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--color-secondary);
}

.policy-title h2 {
  font-weight: 700;
  font-size: 3.55rem;
  color: var(--color-primary);
  line-height: 1.14;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.policy-title p {
  color: var(--color-black);
  margin: auto;
  margin-top: 1.25em;
  font-size: 1.3rem;
}

.policy-main {
  max-width: 90em;
  margin: auto;
  margin-top: 3.3125em;
}

.policy-item {
  padding: 3rem;
  text-align: center;
  border-radius: 3.75em;
  border: 0.0625em solid var(--color-secondary);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(192, 192, 192, 0.10) 67.5%);
  box-shadow: 0.625em 0.625em 1.25em 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.policy-item:hover {
  transform: translateY(-0.625em);
  box-shadow: 0.9375em 0.9375em 1.875em 0 rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(235, 121, 35, 0.05) 0%, rgba(192, 192, 192, 0.10) 67.5%);
}

.policy-item .policy-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.policy-item .policy-button {
  margin-top: auto;
}

.policy-item h4 {
  font-weight: 300;
  font-size: 2.6rem; /* 26px */
  color: var(--color-primary);
}

.policy-item p {
  color: var(--color-black);
  line-height: 1.625em;
  margin-top: 1.125em;
}

.policy-item a {
  font-weight: 500;
  font-size: 1.1rem; /* 13px */
  color: var(--color-white);
  display: inline-block;
  padding: 1.0625em 2.25em;
  border-radius: 2.5em;
  background: var(--color-secondary);
  letter-spacing: 0.024375em;
  margin-top: 1.125em;
  transition: 0.2s all ease;
}

.policy-item a:hover {
  background: var(--color-primary);
}

/* Custom row gap for narrower columns */
.policy-row-custom-gap {
  gap: 2rem; /* 20px gap between columns */
}

/* Bootstrap responsive adjustments for policy items */
@media (max-width: 61.99875em) {
  .policy-item {
    padding: 2.8125em 1.875em;
  }
}

@media (max-width: 47.99875em) {
  .policy-item {
    padding: 2.5em 1.5625em;
  }
  
  .policy-item h4 {
    font-size: 1.5625rem; /* 25px */
  }
}

.policy-circle {
  width: 4.6875em;
  height: 4.6875em;
  border-radius: 50%;
  margin: auto;
  position: relative;
  margin-top: 1.125em;
}

.policy-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.policy-circle img {
  width: 100%;
}

.policy-text h5 {
  font-weight: 700;
  font-size: 1.6875rem; /* 27px */
  color: var(--color-primary);
  line-height: 2.33;
}

/*==year-section==*/
.year-area {
  background: var(--color-white);
  padding-bottom: 12.5em;
}

.year-main > img:not(.owl-lazy) {
  width: 100%;
  object-fit: contain;
}

.yearbox-wrap {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  max-width: 45em;
  margin: auto;
  column-gap: 1.875em;
  row-gap: 1.875em;
  margin-top: 1em;
  align-items: stretch; 
}

.year-box {
   border: 0.0625em solid transparent;
   background: 
        linear-gradient(var(--color-white), var(--color-white)) padding-box, 
        linear-gradient(111deg, var(--color-primary) 5.42%, var(--color-accent) 46.31%, var(--color-secondary) 88.04%) border-box; 
   border-radius: 2.75em;
   text-align: center;
   display: flex;
   flex-direction: column;
   justify-content: flex-start; /* Align content to top */
   align-items: center;
   padding: 2.0625em 0.9375em;
   height: 100%; /* Ensure full height of grid cell */
}

.year-box h2 {
  font-weight: 800;
  font-size: 4rem;
  background: linear-gradient(252deg, #B85810 1.01%, #E78032 23.38%, var(--color-secondary) 68.11%, #B14E04 100.42%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: slashed-zero; /* Distinguish 0 from O */
}

.year-box p {
  line-height: 1.1;
  font-size: 1.2rem;
  font-weight: 400;

}

.year-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-align: center;
}

/*==service-section==*/
.service-area {
  border-radius: 5.625em;
  background: var(--color-gray-100);
  padding: 3.25em 0;
}

.service-title {
  max-width: 53.625em;
  margin: auto;
  text-align: center;
}

.service-title h2 {
  font-weight: 700;
  font-size: 4.5rem; /* 70px */
  color: var(--color-primary);
  margin-bottom:0.5em;
}

.service-main {
  display: none;
  grid-template-columns: repeat(4,1fr);
  margin-top: 4.875em;
  column-gap: 1.25em;
}

.service-item {
  border-radius: 1.875em;
  background: var(--color-white);
  box-shadow: 0.1875em 0.375em 0.875em 0 rgba(0, 0, 0, 0.05);
  padding: 3.25em 2.1875em;
}

/* Service item images handled by global img rules above */

.service-item h4 {
  font-weight: 700;
  font-size: 1.6875rem; /* 27px */
  color: var(--color-secondary);
  margin-top: 1.5625em;
}

.service-item p {
  margin-top: 1.5625em;
  line-height: 1.625em;
}

.service-btn {
   margin-top: 3.75em;
}

.btn-all a {
  font-weight: 700;
  font-size: 1rem; /* 16px */
  color: var(--color-white);
  border-radius: 2.5em;
  background: var(--color-secondary);
  display: inline-block;
  padding: 0.9375em 1.875em;
  letter-spacing: 0.024375em;
  transition: 0.2s all ease;
}

.btn-all a:hover {
  background: var(--color-primary);
}
/* OWL-CAROUSEL-02 */
.main-content3 {
    position: relative;
}

.main-content3 .owl-dots {
    width: 100%;
    text-align: center;
    position: initial;
    bottom: 1%;
    margin-top: 2.5em;
}

.main-content3 .owl-theme .owl-dots .owl-dot span {
  width: 1.875em;
  height: 0.25em;
  margin: 0.625em 0.4375em;
  background: #B3CBC9;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 5.625em;
  border: 0;
}

.main-content3 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-secondary);
}

.main-content3 .owl-dots button {
    border: none !important;
    outline: none !important;
}

.main-content3 .owl-nav button {
    border: none !important;
    outline: none !important;
}

.main-content3 .owl-theme .custom-nav {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    display: block; /* Show navigation buttons */
}
.main-content3 .owl-theme .custom-nav .owl-prev, .main-content3 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content3 .owl-theme .custom-nav .owl-prev i, .main-content3 .owl-theme .custom-nav .owl-next i {
    font-size: 1.25rem; /* 20px */
    color: var(--color-white);
    background: #EB7923;
    width: 1.875em;
    height: 1.875em;
    border-radius: 50%;
    line-height: 1.875em;
    text-align: center;
}

.main-content3 .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.main-content3 .owl-theme .custom-nav .owl-next {
    right: 0;
}

/*==working-with-chainthat-section==*/
.working-with-chainthat-area {
  background: var(--color-white);
}

.working-with-chainthat-title {
  max-width: 53.625em;
  margin: auto;
}
.working-with-chainthat-title h2 {
  font-weight: 700;
  font-size: 4.0625rem; /* 65px */
  line-height: 1.2;
  color: var(--color-primary);
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  margin-bottom: 1em;
}

.working-with-chainthat-title p {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #555;
  max-width: 900px;
  margin: 0 auto 2em auto;
}

.swoos2-item {
  background: var(--color-white);
}

.swoos3-item {
  background: var(--color-white);
}

.working-with-chainthat-area {
  background: var(--color-white);
  padding: 5em 0; /* Standardized to 80px */
}

/* Last section on page - keep consistent */
.working-with-chainthat-area:last-of-type {
  padding: 5em 0; /* Consistent padding */
}

.working-with-chainthat-main {
  margin-top: 4em;
}

/* Improved row spacing and alignment */
.working-with-chainthat-main .row {
  margin-bottom: 5em;
  min-height: 400px; /* Ensure consistent height for better alignment */
}

.working-with-chainthat-main .row:last-child {
  margin-bottom: 0;
}

/* Desktop alignment improvements */
@media (min-width: 62em) {
  .working-with-chainthat-main .row.align-items-center {
    display: flex;
    align-items: center;
  }
  
  .working-with-chainthat-main .row > [class*="col-"] {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
  
  /* Fix right side text alignment - ensure it aligns with image edge below */
  .order-lg-2 .working-with-chainthat-cnt {
    padding-left: 0;  /* Remove extra padding to align with image edge */
    padding-right: 0;
  }
  
  /* Left side text alignment */
  .order-lg-1 .working-with-chainthat-cnt {
    padding-right: 0;
    padding-left: 0;
  }
}

.working-with-chainthat-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.working-with-chainthat-img img {
  width: 100%;
  height: auto;
  border-radius: 0.9375em;
  object-fit: cover;
  display: block;
  box-shadow: 0 0.25em 1.5em rgba(0, 0, 0, 0.1);
}

/* Mobile: Single column layout */
@media (max-width: 61.99875em) {
  .working-with-chainthat-main {
    display: block;
    margin-top: 3.125em;
  }
}

.working-with-chainthat-cnt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0; /* Remove default padding to allow better alignment control */
}

/* Adjust padding based on column order */
@media (min-width: 62em) {
  .order-lg-1 .working-with-chainthat-cnt {
    padding-right: 0; /* Align text with container edge on left */
    padding-left: 0;
  }
  
  .order-lg-2 .working-with-chainthat-cnt {
    padding-left: 0;  /* Align text with container edge on right */
    padding-right: 0;
  }
}

.working-with-chainthat-cnt h4 {
  font-weight: 600;
  font-size: 2.5rem; /* Increased for better visual hierarchy */
  line-height: 1.3;
  color: var(--color-secondary);
  margin-bottom: 1em;
} 

.working-with-chainthat-item h4 {
  font-weight: 500;
    font-size: 1.7rem;
  color: var(--color-secondary);
}

.working-with-chainthat-cnt p {
  font-size: 1.6rem; /* 16px - consistent body text */
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5em;
}

.working-with-chainthat-item p {
  margin-top: 1.25em;
}

.swoos2-item img {
  width: 100%;
}

.swoos3-item img {
  width: 100%;
}

.working-with-chainthat-item img {
  width: 100%;
  border-radius: 1.875em;
}

.working-with-chainthat-btn {
  margin-top: 1.875em;
}

/* Mobile Card Layout */
.working-with-chainthat-card {
  margin-bottom: 1.875em;
}

.working-with-chainthat-card .card {
  border: none;
  border-radius: 1.25em;
  box-shadow: 0 0.25em 0.9375em rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.working-with-chainthat-card .card-img-top {
  height: 12.5em;
  object-fit: cover;
  border-radius: 0;
}

.working-with-chainthat-card .card-body {
  padding: 1.875em;
}

.working-with-chainthat-card .card-title {
  font-weight: 300;
  font-size: 1.75rem; /* 28px */
  color: var(--color-secondary);
  margin-bottom: 1.25em;
}
.working-with-chainthat-card .card-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.25em;
}

.working-with-chainthat-card .btn-all {
  margin-top: auto;
}
/* Responsive adjustments */
@media (max-width: 48em) {
  .working-with-chainthat-card .card-body {
    padding: 1.5625em;
  }
  
  .working-with-chainthat-card .card-title {
    font-size: 1.5rem; /* 24px */
  }
  
  .working-with-chainthat-card .card-img-top {
    height: 11.25em;
  }
}

@media (max-width: 30em) {
  .working-with-chainthat-card .card-body {
    padding: 1.25em;
  }
  
  .working-with-chainthat-card .card-title {
    font-size: 1.375rem; /* 22px */
  }
  
  .working-with-chainthat-card .card-img-top {
    height: 10em;
  }
}

/*==review-area==*/
.review-main {
  background: var(--color-primary);
  border-radius: 1.25em;
  text-align: center;
  padding: 5em 0.9375em; /* Reduced from 120px */
}

.review-img img {
  width: 2.5em !important; /* Reduced from 50px */
  display: block;
  margin: auto;
}

.star-img1 img {
  width: 4.6875em !important; /* Reduced from 95px */
  display: block;
  margin: auto;
  margin-top: 1.875em; /* Reduced from 40px */
}

.review-logo img {
  max-width: 11.25em !important; /* Reduced from 224px */
  display: block;
  margin: auto;
  margin-top: 1.875em; /* Reduced from 40px */
  margin-bottom: 2.1875em; /* Reduced from 50px */
}

.review-item p {
  font-weight: 500;
  font-size: 1.875rem; /* 30px - Reduced from 40px */
  color: var(--color-white);
  line-height: normal;
  margin-top: 1.875em; /* Reduced from 40px */
}

.review-item h4 {
  font-weight: 500;
  font-size: 1.6rem; /* 16px - Name/Title */
  color: var(--color-white);
  margin-top: 0.625em;
}

.review-item h5 {
  font-weight: 400;
  font-size: 1.4rem; /* 14px - Designation */
  color: var(--color-white);
  margin-top: 0.5em;
}

/* OWL-CAROUSEL-04 */
.main-content4 {
    position: relative;
    max-width: 53.4375em;
    margin: auto;
}

.main-content4 .owl-dots {
    width: 100%;
    text-align: center;
    position: initial;
    bottom: 1%;
    margin-top: 1.875em; /* Reduced from 40px */
}

.main-content4 .owl-theme .owl-dots .owl-dot span {
  width: 1.875em;
  height: 0.25em;
  margin: 0.625em 0.4375em;
  background: #B3CBC9;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 5.625em;
  border: 0;
}

.main-content4 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #E97823;
}

.main-content4 .owl-dots button {
    border: none !important;
    outline: none !important;
}

.main-content4 .owl-nav button {
    border: none !important;
    outline: none !important;
}

.main-content4 .owl-theme .custom-nav {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    display: none;
}

.main-content4 .owl-theme .custom-nav .owl-prev, .main-content4 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content4 .owl-theme .custom-nav .owl-prev i, .main-content4 .owl-theme .custom-nav .owl-next i {
    font-size: 1.25rem; /* 20px */
    color: var(--color-white);
    background: #EB7923;
    width: 1.875em;
    height: 1.875em;
    border-radius: 50%;
    line-height: 1.875em;
    text-align: center;
}

.main-content4 .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.main-content4 .owl-theme .custom-nav .owl-next {
    right: 0;
}

.review-btn a {
  margin-top: 1.5625em; /* Reduced from 35px */
}

.review-btn a:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/*==blog-section==*/

.blog-area {
  background: var(--color-white);
  padding: 6.25em 0;
}

.blog-area .row {
  margin-left: 0;
  margin-right: 0;
}

.blog-area .col-lg-4,
.blog-area .col-md-6,
.blog-area .col-12 {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
}

@media (max-width: 61.9375em) {
  .blog-area {
    padding: 5em 0;
  }
  
  .blog-area .col-lg-4,
  .blog-area .col-md-6,
  .blog-area .col-12 {
    padding-left: 0.625em;
    padding-right: 0.625em;
  }
}

@media (max-width: 47.9375em) {
  .blog-area {
    padding: 3.75em 0;
  }
  
  .blog-area .col-lg-4,
  .blog-area .col-md-6,
  .blog-area .col-12 {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}

@media (max-width: 30em) {
  .blog-area {
    padding: 2.5em 0;
  }
  
  .blog-area .col-lg-4,
  .blog-area .col-md-6,
  .blog-area .col-12 {
    padding-left: 0.3125em;
    padding-right: 0.3125em;
  }
}

.blog-title h2 {
  font-weight: 700;
  font-size: 4.375rem; /* 70px */
  color: var(--color-primary);
  letter-spacing: -0.13125em;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
}

@media (max-width: 61.9375em) {
  .blog-title h2 {
    font-size: 3.125rem; /* 50px */
  }
}

@media (max-width: 47.9375em) {
  .blog-title h2 {
    font-size: 2rem; /* 32px */
    letter-spacing: 0;
  }
}

@media (max-width: 30em) {
  .blog-title h2 {
    font-size: 1.5rem; /* 24px */
  }
}

.blog-main-wrap {
  border-radius: 2.5em;
  background: #FAFAFA;
  box-shadow: 0.625em 1.5em 2.75em 0 rgba(0, 0, 0, 0.07) inset;
  padding: 4.375em 0;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 61.9375em) {
  .blog-main-wrap {
    padding: 3.75em 0;
    border-radius: 1.875em;
  }
}

@media (max-width: 47.9375em) {
  .blog-main-wrap {
    padding: 2.5em 0;
    border-radius: 1.5625em;
  }
}

@media (max-width: 30em) {
  .blog-main-wrap {
    padding: 1.875em 0;
    border-radius: 1.25em;
  }
}

.blog-main {
  max-width: 85%;
  margin: 0 auto;
  margin-top: 2.5em;
  overflow: visible;
  padding: 0 0.9375em;
}

/* Grid layout only for About page blog section with .blog-area20 */
.blog-area20 .blog-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875em;
  margin: 0 auto;
  max-width: 85%;
  overflow: hidden;
}

@media (max-width: 61.9375em) {
  .blog-main {
    margin-top: 2.1875em;
    padding: 0 0.625em;
  }
  
  .blog-area20 .blog-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5625em;
    margin: 0 auto;
    max-width: 90%;
  }
}

@media (max-width: 47.9375em) {
  .blog-main {
    margin-top: 1.875em;
    padding: 0 0.3125em;
  }
  
  .blog-area20 .blog-main {
    grid-template-columns: 1fr !important;
    gap: 1.25em;
    margin: 0 auto;
    max-width: 95%;
  }
}

@media (max-width: 30em) {
  .blog-main {
    margin-top: 1.5625em;
    padding: 0;
  }
  
  .blog-area20 .blog-main {
    gap: 0.9375em;
    margin: 0 auto;
    max-width: 95%;
  }
}

.blog-item {
  border-radius: 2.5em;
  padding: 1em;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.blog-item .blog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-item .blog-button {
  margin-top: auto;
  padding-top: 0.9375em;
}

@media (max-width: 61.9375em) {
  .blog-item {
    border-radius: 2.1875em;
    padding: 1.125em;
  }
}

@media (max-width: 47.9375em) {
  .blog-item {
    border-radius: 1.875em;
    padding: 1.125em;
    margin-bottom: 1.25em;
  }
}

@media (max-width: 30em) {
  .blog-item {
    border-radius: 1.25em;
    padding: 0.9375em;
    margin-bottom: 0.9375em;
  }
}

.blog-item img {
  width: 100%;
  border-radius: 1.25em;
}

.blog-item ul {
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  margin-top: 0.9375em;
}

.blog-item ul li {
  font-weight: 400;
  font-size: 1rem; /* 16px */
  color: var(--color-secondary);
}

.blog-item h3 {
  font-weight: 700;
  font-size: 1.5rem; /* 24px */
  line-height: 1.42;
  margin-top: 0.625em;
  margin-bottom: 0.625em;
  /* 2-line text truncation with ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.5rem * 1.42 * 2); /* font-size * line-height * 2 lines */
  /* Fallback for browsers without line-clamp support */
  text-overflow: ellipsis;
}

@media (max-width: 47.9375em) {
  .blog-item h3 {
    font-size: 1.25rem; /* 20px */
    max-height: calc(1.25rem * 1.42 * 2);
  }
}

@media (max-width: 30em) {
  .blog-item h3 {
    font-size: 1.125rem; /* 18px */
    max-height: calc(1.125rem * 1.42 * 2);
  }
}

.blog-item h3 a {
  color: var(--color-primary);
  transition: 0.2s all ease;
}

.blog-item p {
  flex: 1;
  margin-bottom: 0.625em;
}

@media (max-width: 47.9375em) {
  .blog-item p {
    font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
  }
}

@media (max-width: 30em) {
  .blog-item p {
    font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
  }
}

.blog-item ul li {
  font-weight: 400;
  font-size: 1rem; /* 16px */
  color: var(--color-secondary);
}

@media (max-width: 47.9375em) {
  .blog-item ul li {
    font-size: 0.875rem; /* 14px */
  }
}

@media (max-width: 30em) {
  .blog-item ul li {
    font-size: 0.8125rem; /* 13px */
  }
}

.blog-btn a {
  font-weight: 700;
  font-size: 0.9375rem; /* 15px */
  letter-spacing: 0.028125em;
  color: var(--color-primary);
  text-transform: uppercase;
  text-decoration: underline;
  margin-top: 0.625em;
  display: inline-block;
  transition: 0.2s all ease;
}

.blog-btn a:hover {
  color: #E97823;
}

@media (max-width: 47.9375em) {
  .blog-btn a {
    font-size: 0.875rem; /* 14px */
  }
}

@media (max-width: 30em) {
  .blog-btn a {
    font-size: 0.8125rem; /* 13px */
  }
}

.blog-btm {
  margin-top: 6.25em;
} 

.blog-btm h3 {
  font-weight: 700;
  font-size: 4.375rem; /* 70px */
  color: var(--color-primary);
  letter-spacing: -0.13125em;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  text-align: center;
}

.blog-btm ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.875em;
  margin-top: 4.6875em;
}

.blog-btm-btn a {
  font-weight: 700;
}

.blog-btm ul li:nth-of-type(2) a {
  font-weight: 700;
  font-size: 0.8125rem; /* 13px */
  text-transform: uppercase;
  color: var(--color-primary);
}

.blog-btm ul li:nth-of-type(2) a span {
  margin-left: 0.625em;
}

/*==footer-section==*/
.footer-area {
  background: var(--color-primary);
  padding: 3.75em 0 2.5em 0;
  transition: 0.5s all ease;
}

.footer-area:hover {
  border-top-left-radius: 6.25em;
  border-top-right-radius: 6.25em;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  border-bottom: 0.125em solid #4C8682;
  padding-bottom: 1.6875em;
}

.footer-top-left img {
  max-width: 16.625em;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.footer-top-right ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 2.5em;
}

.footer-top-right ul li:last-child {
  display: flex;
  align-items: center;
  column-gap: 1.25em;
}

.footer-top-right ul li a {
  font-weight: 400;
  font-size: 1.4rem; /* 14px */
  color: var(--color-white);
  transition: 0.2s all ease;
}

.footer-top-right ul li a:hover {
  color: var(--color-secondary);
}

.footer-top-right ul li a img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 24px;
  height: 24px;
}

.footer-top-right ul li a img:hover {
  opacity: 0.8;
}

.footer-middle {
  text-align: right;
  margin-top: 2.125em;
}
.footer-middle img {
  max-width: 15.625em;
}

.footer-btm {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: end;
  margin-top: 3.125em;
}

.footer-btm-left ul {
  display: flex;
  align-items: center;
  column-gap: 1.875em;
}

.footer-btm-left ul li img {
  max-width: 4.5625em;
}

.footer-btm-left h4 {
  font-weight: 500;
  font-size: 1rem; /* 16px */
  color: var(--color-white);
  margin-top: 1.875em;
}

.footer-btm-right p,
.footer-btm-right .footer-copyright {
  color: rgba(255, 255, 255, 0.40);
  font-size: var(--font-size-xs); /* 12px */
  text-align: right;
  display: block;
}

/* Footer Agility Logo Styles */
.footer-agility-logo {
  max-height: 3.125em;
  margin-bottom: 0.9375em;
  display: block;
  margin-left: auto;
  margin-right: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Mobile styles for Footer Agility Logo and footer-btm-right */
@media (max-width: 61.9375em) {
  .footer-agility-logo {
    margin: 1.5625em auto;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-btm-right {
    text-align: center;
  }
  
  .footer-btm-right p,
  .footer-btm-right .footer-copyright {
    text-align: center;
  }
}

/*==about-page-start==*/
.about-area {
  background: var(--color-white);
  padding: 7.5em 0 7.5em 0;
  position: relative;
}

.about-swoos-item {
  position: absolute;
  right: 0em;
  bottom: 2rem;
}

.about-swoos-item img {
  width: 40%;
  display: block;
  margin-left: auto;
}

.about-main {
  margin-top: 2em;
}
.about-title h2 {
  font-weight: 700;
  font-size: 5.25rem; /* 100px */
  line-height: 1.2;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  color: var(--color-primary);
}

.about-item img {
  border-radius: 1.25em;
}

.about-cnt {
  max-width: 55.3125em;
  margin-top: 10.4375em;
}

.about-cnt span {
  font-weight: 300;
  font-size: 1.5rem; /* 24px */
  color: var(--color-secondary);
  display: block;
}

.about-cnt h2 {
  font-weight: 700;
  font-size: 4.375rem; /* 70px */
  color: var(--color-primary);
  letter-spacing: -0.13125em;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  line-height: 1.14; 
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

/* OWL-CAROUSEL-05 */
.main-content5 {
    position: relative;
}

.main-content5 .owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 1%;
}

.main-content5 .owl-theme .owl-dots .owl-dot span {
  width: 1.25em;
  height: 1.25em;
  margin: 0.625em 0.4375em;
  background: transparent;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 1.875em;
  border: 0.125em solid  #5B2B81!important;
  display: none;
}

.main-content5 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #5B2B81;
}

.main-content5 .owl-dots button {
    border: none !important;
    outline: none !important;
}

.main-content5 .owl-nav button {
    border: none !important;
    outline: none !important;
}

.main-content5 .owl-theme .custom-nav {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    display: none;
}
.main-content5 .owl-theme .custom-nav .owl-prev, .main-content5 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content5 .owl-theme .custom-nav .owl-prev i, .main-content5 .owl-theme .custom-nav .owl-next i {
    font-size: 1.25rem; /* 20px */
    color: var(--color-white);
    background: #EB7923;
    width: 1.875em;
    height: 1.875em;
    border-radius: 50%;
    line-height: 1.875em;
    text-align: center;
}

.main-content5 .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.main-content5 .owl-theme .custom-nav .owl-next {
    right: 0;
}

/*==about-video-section==*/
.about-video-area {
  background: var(--color-white);
  padding: 5em 0 7.5em 0;
}
@media (max-width: 61.9375em) {
  .about-video-area {
    padding: 3.75em 0 5em 0;
  }
}

@media (max-width: 47.9375em) {
  .about-video-area {
    padding: 2.5em 0 3.75em 0;
  }
}
@media (max-width: 30em) {
  .about-video-area {
    padding: 1.875em 0 3.125em 0;
  }
}

.video-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 1.875em;
}

.video-wrapper img {
  width: 100%;
  border-radius: 1.875em;
  cursor: pointer;
}

.video-wrapper iframe {
  display: none;
  width: 100%;
  height: 50em;
  border-radius: 1.875em;
}

.play-btn-kp {
  width: 8.125em;
  height: 8.125em;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-white);
  filter: drop-shadow(-10px 1.5em 2.125em rgba(0, 0, 0, 0.15));
  border: none;
}

.play-btn-kp img {
  width: 2.375em;
  height: 2.375em;
  border-radius: 0;
}

.close-btn-kp {
  position: absolute;
  top: -2.4375em;
  left: 50%;
  width: 3.125em;
  height: 3.125em;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem; /* 20px */
  z-index: 10;
  border: 0;
  background: #E97823;

  transform: translateX(-50%);
}

.video-wrapper {
  position: relative;
  width: 100%;
}

.video-wrapper img.video-cover {
  width: 100%;
  border-radius: 1.875em;
  cursor: pointer;
}

.img-desktop {
  display: block
}

.img-mobile {
  display: none;
}

.about-video-cnt {
  max-width: 45.8125em;
  margin: auto;
  text-align: center;
  margin-top: 3.75em;
}

.about-video-cnt h4 {
  font-weight: 300;
  font-size: 2.5rem; /* 40px */
  color: var(--color-secondary);
  margin-bottom: 1.875em;
}

@media (max-width: 47.9375em) {
  .about-video-cnt {
    margin-top: 2.5em;
  }
  
  .about-video-cnt h4 {
    font-size: 1.5rem; /* 24px */
    margin-bottom: 1.25em;
  }
  
  .about-video-cnt p {
    font-size: 0.875rem; /* 14px */
    line-height: 1.5;
  }
}

@media (max-width: 30em) {
  .about-video-cnt h4 {
    font-size: 1.25rem; /* 20px */
  }
  
  .about-video-cnt p {
    font-size: 0.8125rem; /* 13px */
  }
}

.about-video-btn a {
  margin-top: 1.875em;
}

/*==employ-section==*/
.employ-area {
  padding: 7.0625em 0 9.125em 0;
  border-radius: 5.625em;
  background-color: var(--color-gray-100);
  position: relative;
}

@media (max-width: 61.9375em) {
  .employ-area {
    padding: 5em 0 6.25em 0;
    border-radius: 3.75em;
  }
}

@media (max-width: 47.9375em) {
  .employ-area {
    padding: 3.75em 0 5em 0;
    border-radius: 2.5em;
  }
}

@media (max-width: 30em) {
  .employ-area {
    padding: 2.5em 0 3.75em 0;
    border-radius: 1.875em;
  }
}

.employ-title {
  text-align: center;
  max-width: 50.3125em;
  margin: auto;
}

.employ-title h2 {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 4.375rem; /* 70px */
  line-height: 5em;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  margin-bottom: 1.875em;
}

@media (max-width: 61.9375em) {
  .employ-title h2 {
    font-size: 3.125rem; /* 50px */
    line-height: 1.2;
  }
}

@media (max-width: 47.9375em) {
  .employ-title {
    padding: 0 1.25em;
  }
  
  .employ-title h2 {
    font-size: 2rem; /* 32px */
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 1.25em;
  }
  
  .employ-title p {
    font-size: 0.875rem; /* 14px */
    line-height: 1.5;
  }
}

@media (max-width: 30em) {
  .employ-title h2 {
    font-size: 1.5rem; /* 24px */
  }
  
  .employ-title p {
    font-size: 0.8125rem; /* 13px */
  }
}

.employ-main {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  max-width: 64.375em;
  margin: auto;
  column-gap: 6.5625em;
  margin-top: 5em;
  position: relative;
  padding: 2em 0;
  min-height: 400px;
  isolation: isolate;
}

.employ-main {
  position: relative;
}

/* SVG background positioned absolutely behind content */
.employ-svg-background {
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  top: 38%;
}
.employ-main::before {
  /* Remove previous background animation */
  display: none;
}

/* Force responsive grid on tablets - override inline styles */
@media (min-width: 48em) and (max-width: 61.9375em) {
  .employ-main {
    grid-template-columns: repeat(2,1fr) !important;
    column-gap: 2.5em !important;
    row-gap: 2.5em !important;
    gap: 2.5em !important;
    margin-top: 3.75em !important;
    padding: 0 1.25em;
    max-width: 100%;
  }
  
  .employ-item {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 61.9375em) {
  .employ-main {
    grid-template-columns: repeat(2,1fr);
    column-gap: 2.5em;
    row-gap: 2.5em;
    margin-top: 3.75em;
    padding: 0 1.25em;
  }
}

@media (max-width: 47.9375em) {
  .employ-main {
    grid-template-columns: 1fr !important;
    gap: 1.875em;
    margin-top: 2.5em;
    padding: 0 0.9375em;
    max-width: 100%;
  }
  
  .employ-main .employ-item {
    width: 100%;
    max-width: 25em;
    margin: 0 auto;
  }
}

@media (max-width: 30em) {
  .employ-main {
    gap: 1.5625em;
    margin-top: 1.875em;
  }
  
  .employ-main .employ-item {
    max-width: 100%;
  }
}

.employ-main2 {
  max-width: 40.625em;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 6.5625em;
  margin-top: 3.75em;
}

@media (max-width: 47.9375em) {
  .employ-main2 {
    grid-template-columns: 1fr;
    gap: 1.875em;
    margin-top: 2.5em;
    padding: 0 0.9375em;
  }
}

.employ-item {
  text-align: center;
  background: var(--color-white);
  border-radius: 1.875em;
  padding: 0em;
  border: 0.0625em solid transparent;
  background: linear-gradient(var(--color-white), var(--color-white)) padding-box, linear-gradient(-58deg, var(--color-primary) 5.42%, var(--color-accent) 46.31%, var(--color-secondary) 88.04%) border-box;
  max-width: 400px; /* Increased from 300px for larger, clearer images */
  overflow: hidden;
  padding-bottom: 20px;
}

.employ-item h3 {
  font-weight: 700;
  font-size: 1.75rem; /* 28px */
  line-height: 2.125em;
  margin-top: 1em;
}

@media (max-width: 47.9375em) {
  .employ-item {
    padding: 1.5625em 1.25em;
  }
  
  /* Team member main image - full width on mobile */
  .employ-item > a > img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  
  /* LinkedIn icon - max 20px */
  .employ-item ul li a img {
    max-width: 1.25em;
    height: auto;
    margin-top: 0.9375em;
  }
}

/* Desktop/Tablet: Team member image fixed size */
.employ-item > a > img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: auto;
  max-width: 400px; /* Increased from smaller size */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border-radius: 0.75em;
}

@media (max-width: 61.9375em) {
  .employ-item > a > img {
    max-width: 100%;
    height: auto;
  }
  
  .employ-item h3 {
    font-size: 1.375rem; /* 22px */
    line-height: 1.3;
    margin-top: 0.75em;
  }
  
  .employ-item h4 {
    font-size: 1rem; /* 16px */
    margin-top: 0.9375em;
  }
}

@media (max-width: 30em) {
  .employ-item {
    padding: 1.25em 0.9375em;
  }
  
  .employ-item h3 {
    font-size: 1.125rem; /* 18px */
  }
  
  .employ-item h4 {
    font-size: 0.9375rem; /* 15px */
  }
}

.employ-item h3 a {
  color: var(--color-primary);
  transition: 0.2s all ease;
}

.employ-item h3 a:hover {
  color: var(--color-primary);
}

.employ-item h4 {
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  color: var(--color-primary);
  margin-top: 1.25em;
}

.employ-item ul li a img {
  margin-top: 0.9375em;
  max-width: 1.875em; /* Limit LinkedIn icon size on desktop */
  height: auto;
}

.employ-item ul li a img:hover {
  opacity: 0.8;
}

/*==our-section==*/
.our-area {
  background: var(--color-white);
  padding: 6.25em 0 9.375em 0;
}
.our-area .our-title {
  text-align: center;
  max-width: 61.875em;
  margin: 0 auto;
}
@media (max-width: 61.9375em) {
  .our-area {
    padding: 5em 0 6.25em 0;
  }
}

@media (max-width: 47.9375em) {
  .our-area {
    padding: 3.75em 0 5em 0;
  }
}

@media (max-width: 30em) {
  .our-area {
    padding: 2.5em 0 3.75em 0;
  }
}

.our-title {
  /*! max-width: 38.25em; */
  /*! margin: auto; */
  text-align: center;
}

.our-title span {
  font-weight: 300;
  font-size: 1.5rem; /* 24px */
  color: var(--color-secondary);
  display: block;
}

.our-title h2 {
  font-weight: 700;
  font-size: 4.375rem; /* 70px */
  color: var(--color-primary);
  margin: 1.5625em 0;
}

.our-title p {
  margin-top: 1.25em;
}

@media (max-width: 61.9375em) {
  .our-title h2 {
    font-size: 3.125rem; /* 50px */
  }
}

@media (max-width: 47.9375em) {
  .our-title {
    padding: 0 0.9375em;
  }
  
  .our-title span {
    font-size: 1.125rem; /* 18px */
  }
  
  .our-title h2 {
    font-size: 2rem; /* 32px */
    margin: 0.9375em 0;
  }
  
  .our-title p {
    font-size: 0.875rem; /* 14px */
    line-height: 1.5;
    margin-top: 0.9375em;
  }
}

@media (max-width: 30em) {
  .our-title h2 {
    font-size: 1.5rem; /* 24px */
  }
  
  .our-title p {
    font-size: 0.8125rem; /* 13px */
  }
}

.our-main {
  margin-top: 6.25em;
}

/* Hide desktop version on mobile */
@media (max-width: 61.9375em) {
  .our-main {
    display: none !important;
  }
}

.our-left ul {
  display: flex;
  align-items: center;
  column-gap: 2.25em;
}

.our-left ul li {
  font-weight: 700;
  font-size: 3.5rem; /* 56px */
  color: var(--color-primary);
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
}

.our-left ul li img {
  width: 7.125em;
  height: 7.125em;
  border-radius: 50%;
}

.our-box {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  padding: 4.375em 0.5em !important;
  border-bottom: 0.0625em solid #03645D;
  transition: all 0.3s ease;
}

.our-box:hover {
  background: #00524C;
  border-color: transparent;
}
.our-box:hover img {
  filter: invert(0) !important;
}
.our-box:hover p {
  color: var(--color-white) !important;
}

.our-box2 {
  border-top: 0.0625em solid #03645D;
}

/* Arrow icon default styles */
.arrow-icon,
.arrow-icon img,
.arrow-icon i {
  background: transparent !important;
}

.arrow-icon i {
  font-size: 1.2em;
  margin-left: 0.5em;
  transition: transform 0.3s ease;
}

/* Text color changes on hover for ALL boxes */
.our-box:hover .our-left li,
.our-box:hover .our-center .description-text,
.our-box:hover .our-center .short-desc,
.our-box:hover .our-right a {
  color: var(--color-white) !important;
}

/* Icon with white circle background on hover */
.our-box:hover .our-left ul li:first-child {
  background: var(--color-white);
  border-radius: 50%;
  padding: 0;
}

/* Icon wrapper for hover effect */
.our-left ul li.icon-wrapper {
  position: relative;
  display: inline-block;
}

.our-left ul li.icon-wrapper .default-icon,
.our-left ul li.icon-wrapper .hover-icon {
  transition: opacity 0.3s ease;
}

.our-left ul li.icon-wrapper .hover-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.our-box:hover .our-left ul li.icon-wrapper .default-icon {
  opacity: 0;
}

.our-box:hover .our-left ul li.icon-wrapper .hover-icon {
  opacity: 1;
}

.our-box:hover .our-left ul li:first-child img {
  filter: none; /* Keep icon in original color #00524C */
}

/* Arrow icon filter to white on hover */
.our-box:hover .arrow-icon img,
.our-box:hover .arrow-icon i {
  filter: brightness(0) invert(1) !important;
  background: transparent !important;
  color: var(--color-white) !important;
}

.our-box:hover .arrow-icon {
  background: transparent !important;
}

/* If image is not an icon (fallback - invert for photos) */
.our-box:hover .our-left img[src*=".jpg"],
.our-box:hover .our-left img[src*=".jpeg"],
.our-box:hover .our-left img[src*=".png"]:not([src*="icon"]) {
  filter: brightness(0) invert(1);
}

.our-center {
  flex: 1;
  padding: 0 8em;
}

.our-center p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-primary);
}

.our-right {
  text-align: right;
}

.our-right a {
  font-weight: 300;
  font-size: 1.375rem; /* 22px */
  color: var(--color-primary);
  letter-spacing: 0.04225em;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  transition: all 0.3s ease;
}

.our-right a:hover {
  color: var(--color-secondary);
}

.our-right a img {
  margin-left: 0.625em;
  transition: transform 0.3s ease;
}

.our-right a:hover img {
  transform: translateX(0.3125em);
}

/* Mobile Accordion Styles */
.our-mobil {
  display: none;
}

@media (max-width: 61.9375em) {
  .our-mobil {
    display: block !important;
    padding: 0 0.9375em;
    margin-top: 3.125em;
  }
}

@media (max-width: 47.9375em) {
  .our-mobil {
    margin-top: 2.5em;
    padding: 0 0.625em;
  }
}

.accordion-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.ac {
  background: var(--color-white);
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.ac-trigger {
  color: var(--color-black);
  padding: 1.25em 0.9375em;
  cursor: pointer;
  position: relative;
  border-bottom: 0.0625em solid var(--color-primary); 
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: auto;
  z-index: 1;
}

@media (max-width: 47.9375em) {
  .ac-trigger {
    padding: 1.125em 0.9375em;
  }
}

@media (max-width: 30em) {
  .ac-trigger {
    padding: 0.9375em 0.75em;
  }
}

.ac-panel-cnt {
  padding: 0.625em 1.25em 1.5625em 1.25em;
}

@media (max-width: 47.9375em) {
  .ac-panel-cnt {
    padding: 0.5em 0.9375em 1.25em 0.9375em;
  }
}

@media (max-width: 30em) {
  .ac-panel-cnt {
    padding: 0.5em 0.75em 1.125em 0.75em;
  }
}

.our-mobil-cnt {
  width: 100%;
  margin-left: 0;
  padding-left: 0;
}

@media (max-width: 47.9375em) {
  .our-mobil-cnt {
    width: 100%;
  }
}

.our-mobil-cnt p {
  font-weight: 400;
  font-size: 1rem; /* 16px */
  color: var(--color-white);
  line-height: 1.6;
}

@media (max-width: 47.9375em) {
  .our-mobil-cnt p {
    font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
  }
}

@media (max-width: 30em) {
  .our-mobil-cnt p {
    font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
  }
}
.ac-trigger::after {
  content: "\f063";
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';
  text-align: center;
  width: 0.9375em;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  right: 0.625em;
  top: 50%;
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.ac-panel {
  overflow: hidden;
  transition-property: height, visibility;
  transition-timing-function: ease;
}

.js-enabled .ac-panel {
  visibility: hidden;
}

.ac.is-active .ac-panel {
  visibility: visible;
}

.ac.is-active .ac-trigger::after {
  content: "\f062";
  color: var(--color-white);
  transform: translate(0, -50%) rotate(180deg);
}

.our-mobil-wrap ul {
  display: flex;
  align-items: center;
  column-gap: 1.25em;
}

@media (max-width: 47.9375em) {
  .our-mobil-wrap ul {
    column-gap: 0.9375em;
  }
}

@media (max-width: 30em) {
  .our-mobil-wrap ul {
    column-gap: 0.75em;
  }
}

.our-mobil-wrap ul li:nth-of-type(1) {
  width: 3.75em;
  height: 3.75em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  flex-shrink: 0;
}

@media (max-width: 47.9375em) {
  .our-mobil-wrap ul li:nth-of-type(1) {
    width: 3.125em;
    height: 3.125em;
  }
  
  .our-mobil-wrap ul li:nth-of-type(1) img {
    width: 2em;
    height: 2em;
  }
}

@media (max-width: 30em) {
  .our-mobil-wrap ul li:nth-of-type(1) {
    width: 2.75em;
    height: 2.75em;
  }
  
  .our-mobil-wrap ul li:nth-of-type(1) img {
    width: 1.75em;
    height: 1.75em;
  }
}

.our-mobil-wrap ul li:nth-of-type(2) {
  font-weight: 700;
  font-size: 1.625rem; /* 26px */
  color: var(--color-primary);
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  flex: 1;
}

@media (max-width: 47.9375em) {
  .our-mobil-wrap ul li:nth-of-type(2) {
    font-size: 1.375rem; /* 22px */
  }
}

@media (max-width: 30em) {
  .our-mobil-wrap ul li:nth-of-type(2) {
    font-size: 1.125rem; /* 18px */
    letter-spacing: 0;
  }
}

.ac.is-active.ac {
  background: linear-gradient(252deg, var(--color-primary) 1.01%, #03645D 43.76%, #013834 100.42%);
}
.ac.is-active .ac-trigger {
  border: 0;
}

.ac.is-active .our-mobil-wrap ul li:nth-of-type(2) {
  color: var(--color-white);
}
.ac.is-active .our-mobil-wrap ul li:nth-of-type(1) {
  background: var(--color-white);
}
.ac.is-active #path1 {
  fill: var(--color-primary);
}

.blog-main-wrap20 {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.blog-area20 {
  padding: 0;
  padding-bottom: 6.25em;
}

.question-area {
  padding: 6.25em 0 9.375em 0;
}

.question-title h2 {
  font-weight: 700;
  font-size: 4.375rem; /* 70px */
  color: var(--color-primary);
  letter-spacing: -0.13125em;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
}

.question-item {
  border-radius: 1.875em;
  padding: 2.5em;
  border: 0.0625em solid transparent;
  background: linear-gradient(var(--color-white), var(--color-white)) padding-box, linear-gradient(-58deg, var(--color-primary) 5.42%, var(--color-accent) 46.31%, var(--color-secondary) 88.04%) border-box;
}

.question-item h3 {
  font-weight: 700;
  font-size: 1.6875rem; /* 27px */
  color: var(--color-secondary);
  margin-bottom: 1.25em;
}


/* OWL-CAROUSEL-06 */
.main-content6 {
    position: relative;
    margin-top: 3.125em;
}

.main-content6 .owl-dots {
    width: 100%;
    text-align: center;
    position: initial;
    margin-top: 4.375em;
}

.main-content6 .owl-theme .owl-dots .owl-dot span {
  width: 1.875em;
  height: 0.25em;
  margin: 0.625em 0.4375em;
  background: #B3CBC9;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 5.625em;
  border: 0;
}

.main-content6 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #E97823;
}

.main-content6 .owl-dots button {
    border: none !important;
    outline: none !important;
}

.main-content6 .owl-nav button {
    border: none !important;
    outline: none !important;
}

.main-content6 .owl-theme .custom-nav {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    display: none;
}
.main-content6 .owl-theme .custom-nav .owl-prev, .main-content6 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content6 .owl-theme .custom-nav .owl-prev i, .main-content6 .owl-theme .custom-nav .owl-next i {
    font-size: 1.25rem; /* 20px */
    color: var(--color-white);
    background: #EB7923;
    width: 1.875em;
    height: 1.875em;
    border-radius: 50%;
    line-height: 1.875em;
    text-align: center;
}

.main-content6 .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.main-content6 .owl-theme .custom-nav .owl-next {
    right: 0;
}

/*==adminis-section==*/
.adminis-area {
  background: url('images/adminis-bg.png') no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 9.375em;
  border-radius: 0 0 5.625em 5.625em;
  padding-bottom: 6.25em;
}

/* Solution-specific hero section padding */
.solution-hero-area {
  min-height: 28.125em;
  padding-top: 9.375em;
  padding-bottom: 6.25em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-area1 {
  background: none;
}

.adminis-img-wrap {
  position: relative;
}

.adminis-img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}

.adminis-title {
  text-align: center;
  margin-bottom: 9.125em;
}

.adminis-title h2 {
  font-weight: 700;
  font-size: 6rem; /* 100px */
  color: var(--color-primary);
  line-height: 5em; 
  letter-spacing: 0em;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  margin-bottom: 1.875em;

}

.adminis-title p {
  max-width: 50em;
  margin: auto;
  color:var(--color-black);
  font-size: 1.6rem; /* 16px */
}

.adminis-video-title span {
  font-weight: 500;
  font-size: 1.2rem; /* 24px */
  color: var(--color-secondary);
}

.adminis-img img {
  width: 100%;
  position: relative;
  margin-top: -4.25em;
  text-align: center;
  margin: 0 auto;
} 

/* Platform Page Sections - Standardized Padding */
.adminis-video-area {
  background: var(--color-white);
  padding: 5em 0; /* Standardized to 80px */
}

.adminis-description-area {
  background: var(--color-white);
  padding: 5em 0; /* Standardized to 80px */
  padding-bottom: 3em !important;
}

.adminis-statistics-area {
  background: var(--color-white);
  padding: 5em 0; /* Standardized to 80px */
}

.adminis-video-title {
  text-align: center;
  max-width: 42.625em;
  margin: auto;
}

.adminis-video-title h2 {
  font-weight: 700;
  font-size: 4.0625rem; /* 65px */
  color: var(--color-primary);
  line-height: 5rem;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  margin-bottom: 0.9375em;
  margin-top: 0.3125em;
}

.adminis-video-title p {
  font-size: 1.2rem;
  margin-top: 0.9375em;
}

.adminis-video-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 5.4375em;
  align-items: center;
  border-radius: 2.5em;
  border: 0.0625em solid var(--color-secondary);
  background: var(--color-white);
  box-shadow: 2.5em 2.5em 2.5em 0 rgba(0, 0, 0, 0.10);
  padding: 5.125em;
  margin-top: 6.25em;
}

.video-wrapper2 iframe {
  height: 24.5em
}

.adminis-video-left h3 {
  font-weight: 300;
  font-size: 3.125rem; /* 50px */
  color: var(--color-secondary);
  line-height: normal;
  margin-bottom: 1.25em;
}

.adminis-video-left a {
  margin-top: 1.875em;
}

.year-inner-title {
  margin-top:9.375em;
}

.year-inner-title h2 {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 4.0625rem; /* 65px */
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  text-align: center;
}

.yearbox-wrap10 {
  margin-top: 2.5em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875em;
  align-items: stretch; /* All boxes same height */
}

.year-box10 {
  border: 0.0625em solid transparent;
  background: linear-gradient(var(--color-white), var(--color-white)) padding-box, linear-gradient(111deg, var(--color-primary) 5.42%, var(--color-accent) 46.31%, var(--color-secondary) 88.04%) border-box;
  border-radius: 3.75em;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align to top */
  align-items: center;
  padding: 2.75em 2.25em;
}

/*==raging-section===*/
.rating-area {
  background: var(--color-white);
  padding: 2.5em 0;
  margin-top: 2em;
}

.rating-title {
  text-align: center;
}
.single-platform .ipsum-area10{
  background-color: #f6f6f6;
}
.rating-title h2 {
  font-size: 4.0625rem; /* 65px */
  font-weight: 700;
  line-height: 5em;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  background: linear-gradient(252deg, var(--color-primary) 1.01%, #03645D 43.76%, #013834 100.42%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating-title p {
  font-size: 1.2rem;
  margin-top: 0.9375em;
}

.tab-buttons3 {
  margin-top: 2.5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9375em;
  max-width: 87.5em;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Dropdown Select */
.tab-mobile-select {
  max-width: 100%;
  padding: 0 1.25em;
  margin: 1.875em auto;
}

.tab-select-dropdown {
  width: 100%;
  padding: 1em 2.5em 1em 1.25em;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-secondary);
  border: 0.125em solid var(--color-secondary);
  border-radius: 3.125em;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25em center;
  background-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0.125em 0.5em rgba(235, 121, 35, 0.2);
  text-align: left;
  line-height: 1.4;
}

.tab-select-dropdown:focus {
  outline: none;
  border-color: #D96A1F;
  box-shadow: 0 0.25em 0.75em rgba(235, 121, 35, 0.4);
}

.tab-select-dropdown option {
  padding: 0.75em;
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 600;
}

.tab-buttons3 a {
  font-size: 1.3rem; /* 16px */
  font-weight: 600;
  padding: 0.9375em 1.875em; /* Uniform padding: 15px 30px */
  transition: 0.3s all ease;
  flex: 0 0 auto;
  width: auto; /* Auto width based on content */
  min-width: auto; /* Remove fixed min-width */
  max-width: none; /* Remove max-width constraint */
  background: var(--color-secondary);
  color: var(--color-white);
  border: 0.125em solid var(--color-secondary);
  border-radius: 3.125em;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap; /* Force single line */
  box-shadow: 0 0.125em 0.5em rgba(235, 121, 35, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.25em; /* Fixed height for uniformity */
}

/* When screen is too narrow for 5 tabs, show 4 */
@media screen and (max-width: 87.5em) {
  .tab-buttons3 a {
    /* Remove width constraint, let content determine width */
  }
}

/* When screen is too narrow for 4 tabs, show 3 */
@media screen and (max-width: 68.75em) {
  .tab-buttons3 a {
    /* Remove width constraint, let content determine width */
  }
}

.tab-buttons3 a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-0.125em);
  box-shadow: 0 0.25em 0.75em rgba(0, 82, 76, 0.3);
}

.tab-buttons3 a.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 0.25em 0.75em rgba(0, 82, 76, 0.4);
}

.section-title {
  font-weight: 600;
  font-size: 3.4375rem; /* 55px */
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.rating-img {
  margin-top: 3.625em;
  position: relative;
  margin-bottom: 3.75em;
  padding-bottom: 0;
  width: 100%;
  max-height: 25em;
  overflow: hidden;
  border-radius: 1.5625em;
  background: #fff; /* Ensure clean white background */
}

.rating-img img {
  width: 100%;
  height: 100%;
  max-height: 25em;
  display: block;
  margin-bottom: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 1.5625em;
  /* Prevent image bleeding/outline issues */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ratimg-title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  text-align: left;
  padding: 0;
  margin: 0;
}

.ratimg-title h2 {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 2.2rem;
  line-height: 1.3;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  margin: 0;
  padding: 1.25em 1.875em;
  background: rgba(255, 255, 255, 0.98); /* Increased opacity to fully cover any image bleeding */
  border-radius: 0 1.5625em 0 0;
  display: inline-block;
  box-shadow: 0 0.125em 0.625em rgba(0, 0, 0, 0.1);
  min-width: 20em;
  z-index: 20; /* Ensure title is above image */
  position: relative;
}

.ratimg-title h4 {
  font-weight: 300;
  color: var(--color-primary);
  font-size: 4.0625rem; /* 65px */
  line-height: 1.2;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  margin: 0;
  padding: 0;
}

.rating-item-wrap {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 1.875em;
  row-gap: 2.5em;
  margin-top: 4.8125em;
}

.rating-item {
  padding: 1.875em 1.5625em;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-white);
  border: 0.0625em solid rgba(0, 82, 76, 0.1);
  border-radius: 0.75em;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 0.125em 0.5em rgba(0, 0, 0, 0.04);
}

.rating-item:hover {
  border-color: rgba(0, 82, 76, 0.3);
  box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.08);
  transform: translateY(-0.3125em);
}

.rating-item img {
  width: 4em;
  height: 4em;
  max-width: 4em;
  min-width: 4em;
  min-height: 4em;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto 1.25em auto;
  flex-shrink: 0;
}

.rating-item h4 {
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-secondary);
  margin: 0 0 0.9375em 0;
  line-height: 1.3;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  text-align: center;
}

.rating-item p {
  font-size: 1.6rem; /* 16px - standardized mobile font size */
  color: #333333;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  flex-grow: 1;
}

.rating-slide a {
  font-size: 0.8125rem; /* 13px */
  color: var(--color-primary);
  letter-spacing: 0.024375em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.8125em 1.625em;
  border-radius: 2.5em;
  border: 0.0625em solid rgba(0, 82, 76, 0.20);
  background: var(--color-white);
  display: inline-block;
  transition: 0.2s all ease;
  display: block;
  text-align: center;
}

.rating-slide a:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

#rat-act {
  background: red;
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.mobil-rating-btn {
  padding-left: 0.9375em;
  margin-top: 1.875em;
}

.rating-mb img {
  width: 100%;
  margin-top: 1.875em;
}
.all-title {
  text-align: center;
}

.all-title span {
  font-weight: 500;
  font-size: 1.2rem; /* 24px */
  color: var(--color-secondary);
}

.all-title h2 {
  font-weight: 700;
  font-size: 4.0625rem; /* 65px */
  color: var(--color-primary);
  line-height: 5em;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  margin: 0.625em 0;
}

/*==timeline-section==*/
.timeline-area {
  background: var(--color-white);
  padding: 2.5em 0;
}

.timeline-title p {
  font-size: 1.2rem;
  margin-top: 0.9375em;
  max-width: 38.25em;
  margin-left: auto;
  margin-right: auto;
}

.timeline-main {
  display: grid;
  grid-template-columns: 49% auto;
  margin-top: 6.25em;
  column-gap: 9.0625em;
  align-items: center; /* Vertically center both columns */
}

.timeline-left {
  display: flex;
  align-items: center; /* Vertically center image */
  justify-content: center;
}

.timeline-left img {
  width: 100%;
  border-radius: 1.25em;
  /*! mix-blend-mode: hard-light; */
}

.rb-item h5 {
  font-weight: 700;
  font-size: 1.2rem;
  line-height:1.2;
  color: var(--color-primary);
  margin-bottom: 0.4375em; /* Reduced from 0.625em */
}

.rb-item h4 {
  font-weight: 700;
  font-size: 1.125rem; /* 18px */
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 0.4375em; /* Reduced from 0.625em */
}

.rb-container ul {
  margin: 0;
  padding: 0;
}

.rb-container ul li {
  list-style: none;
  border-left: 0.1875em solid rgba(0, 82, 76, 0.20);
  padding: 0 0 3.0625em 3.5em !important; /* Reduced from 4.375em to 3.0625em (30% less) and left padding from 5em to 3.5em */
  position: relative;
}

.rb-container ul li:last-child {
  border-left: 0;
}
.rb-container ul li::before {
  position: absolute;
  left: -0.75em !important; /* Adjusted for smaller icon */
  top: 0em;
  content: "";
  border-radius: 500%;
  border: 0.25em solid var(--color-secondary);
  height: 1.5em !important; /* Reduced from 3.5em to 1.5em */
  width: 1.5em !important; /* Reduced from 3.5em to 1.5em */
  transition: all 500ms ease-in-out;
  background: var(--color-white);
}

.rb-item:last-child {
  padding-bottom: 0;
}

/*==industry-section==*/
.industry-main {
  text-align: center;
  background: url('images/industry.png') no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 2.5em;
  padding: 4.0625em 1.25em;
}

.industry-main h2 {
  font-weight: 700;
  font-size: 4.0625rem; /* 65px */
  line-height: 5em;
  color: var(--color-primary);
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
}

.industry-main p {
  font-size: 1.2rem;
  margin-top: 0.9375em;
  color: var(--color-primary);
  margin-bottom: 2.5em;
}

.tndus-btm {
  margin-top: 0em;
}

.tndus-btm ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.25em;
}

.tndus-btm ul li a {
  background: var(--color-secondary); /* Orange background */
  color: var(--color-white);
  transition: all 0.3s ease;
}

.tndus-btm ul li a:hover {
  background: var(--color-primary); /* Green on hover */
  color: var(--color-white);
}

.ipsum-area10 {
  padding: 5em 0; /* Standardized to 80px */
  border-radius: 2.5em;
}
.ipsum-area10 .row{
  max-width: 100%;
  margin: 0 auto;
  row-gap: 1.5em;
}

/* Control row width based on column layout */
.ipsum-area10 .row.benefits-3-col {
  max-width: 80%;
}

.ipsum-area10 .row.benefits-4-col {
  max-width: 100%;
}
/*==benefit-cards-section==*/
.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 350px;
  margin: 0 auto;
  text-align: left;
}

/* Ensure 3 and 4 column layouts with proper spacing on large screens */
@media (min-width: 62em) {
  .row.justify-content-center > .col-lg-4,
  .row.justify-content-center > .col-lg-3 {
    display: flex;
    justify-content: center;
    padding-left: 1em;
    padding-right: 1em;
  }
  
  .row.justify-content-center > .col-lg-4 .benefit-card,
  .row.justify-content-center > .col-lg-3 .benefit-card {
    width: 100%;
  }
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card .benefit-icon {
  margin-bottom: 20px;
}

.benefit-card .benefit-icon img {
  max-width: 60px;
  height: auto;
}

.benefit-card h4 {
  font-size: 1.8rem; /* 18px */
  font-weight: 700;
  color: #EB7923;
  margin-bottom: 15px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 1.5rem; /* 15px */
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* Benefit Card Read More/Less Styles - CSS Line Clamp for 3 lines */
.benefit-card .benefit-text {
    font-size: 1.5rem; /* 15px */
    color: #333;
    line-height: 1.6;
    margin: 0;
    user-select: none;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    max-height: calc(1.5rem * 1.6 * 3); /* font-size * line-height * 3 lines */
}

.benefit-card .benefit-text.expanded {
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    overflow: visible !important;
    max-height: none !important;
}

/* .ipsum-title-main span {
  color: #ff6b35;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
  display: block;
  margin-bottom: 0.9375em;
} */

.ipsum-title-main {
  max-width: 45.875em;
  margin: 0 auto;
  padding: 1.875em 0;
}
.ipsum-title-main h2 {
  font-size: 4.0625rem; /* 65px */
  font-weight: 700;
  color: #005a5b;
  margin-bottom: 3.125em;
  line-height: 1.2;
}
.ipsum-title-main p {
  font-size: 1.2rem;
  margin-top: 0.9375em;
}
/* Case Studies Section - Standardized Spacing */
.case-studies-section {
  padding: 5em 0; /* Standardized to 80px */
}

.case-studies-section .row {
  row-gap: 3em; /* Reduced excessive spacing between rows */
  margin-bottom: 2em;
}

.case-studies-section .row .col-lg-6 {
  padding: 0 1.5em; /* Horizontal padding only */
}

/* Ensure last row doesn't have extra bottom margin */
.case-studies-section .row:last-child {
  margin-bottom: 0;
}

/* Platform Page Sections - Responsive Padding */
@media (max-width: 61.9375em) {
  /* Tablet adjustments */
  .adminis-video-area,
  .adminis-description-area,
  .adminis-statistics-area,
  .working-with-chainthat-area,
  .ipsum-area10,
  .case-studies-section {
    padding: 3.75em 0; /* 60px for tablets */
  }
}

@media (max-width: 47.9375em) {
  /* Mobile adjustments */
  .adminis-video-area,
  .adminis-description-area,
  .adminis-statistics-area,
  .working-with-chainthat-area,
  .ipsum-area10,
  .case-studies-section {
    padding: 3em 0; /* 48px for mobile */
  }
  
  /* Reduce row gaps on mobile */
  .case-studies-section .row {
    row-gap: 2em;
  }
}

/* Benefit cards responsive styles */
@media (max-width: 61.9375em) {
  .benefit-card {
    padding: 20px 15px;
  }
  
  .ipsum-title-main h2 {
    font-size: 3.2rem;
    margin-bottom: 2.5em;
  }
}

@media (max-width: 47.9375em) {
  .benefit-card {
    padding: 20px 15px;
    margin-bottom: 1.25em;
  }
  
  .benefit-card h4 {
    font-size: 1.8rem; /* 18px */
  }
  
  .benefit-card p {
    font-size: 1.5rem; /* 15px */
  }
  
  .ipsum-title-main h2 {
    font-size: 2.8rem;
    margin-bottom: 1.875em;
  }
  
  .ipsum-title-main span {
    font-size: 1.6rem;
  }
}

/*==industry-section==*/
.industry-area {
  background: var(--color-white);
  padding: 2.5em 0;
}

.industry-main {
  text-align: center;
  max-width: 50em;
  margin: 0 auto;
}

.industry-main h2 {
  font-size: 4.0625rem; /* 65px */
  font-weight: 700;
  color: #005a5b;
  margin-bottom: 1.25em;
  line-height: 1.2;
}

.industry-main p {
  font-size: 1.5rem; /* 24px */
  color: #666;
  margin-bottom: 1.875em;
}

/*==solution-page-start==*/
.solution-hero-main {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-hero-main img {
  width: 100%;
  border-radius: 0 0 5.625em 5.625em;
}

.solu-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 75em;
  padding: 0 1.25em;
}

.solu-text h2 {
  font-weight: 700;
  font-size: 6.25rem; /* 100px */
  line-height: 6em;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  color: var(--color-white);
  margin: 0;
}

.solution-video {
  max-width: 79.375em;
  margin: auto;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  row-gap: 3.125em;
}

.solution-video-area {
  padding: 10.625em 0 10em 0;
}

/*==features-section==*/
.features-area {
  border-radius: 5.625em;
  background: var(--color-gray-100);
  padding: 8.4375em 0 8.3125em 0;
}

.features-title h2 {
  font-size: 4.375rem; /* 70px */
  font-weight: 700;
  line-height: 5em;
  text-align: center;
  color: var(--color-primary);
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
}

.features-main {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 1.25em;
  margin-top: 6.25em;
}

.features-item {
  border-radius: 1.875em;
  background: var(--color-white);
  box-shadow: 0.1875em 0.375em 0.875em 0 rgba(0, 0, 0, 0.05);
  padding: 2.5em;
}

.features-item h2 {
  font-weight: 700;
  font-size: 1.6875rem; /* 27px */
  color: var(--color-secondary);
  margin: 1.125em 0;
}

.features-item img {
  max-width: 3.6875em;
}

.main-content8 {
    position: relative;
}

.main-content8 .owl-dots {
    width: 100%;
    text-align: center;
    position: initial;
    margin-top: 1.875em;
}

.main-content8 .owl-theme .owl-dots .owl-dot span {
width: 1.875em;
height: 0.25em;
margin: 0.625em 0.4375em;
background: #B3CBC9;
display: block;
-webkit-backface-visibility: visible;
transition: opacity .2s ease;
border-radius: 5.625em;
border: 0;
}

.main-content8 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--color-secondary);
}

.main-content8 .owl-dots button {
  border: none !important;
  outline: none !important;
}

.main-content8 .owl-nav button {
  border: none !important;
  outline: none !important;
}

.main-content8 .owl-theme .custom-nav {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  display: none;
}
.main-content8 .owl-theme .custom-nav .owl-prev, .main-content8 .owl-theme .custom-nav .owl-next {
  position: absolute;   
  color: inherit;
  background: none;
  border: none;
  z-index: 100;
}

.main-content8 .owl-theme .custom-nav .owl-prev i, .main-content8 .owl-theme .custom-nav .owl-next i {
  font-size: 1.25rem; /* 20px */
  color: var(--color-white);
  background: #EB7923;
  width: 1.875em;
  height: 1.875em;
  border-radius: 50%;
  line-height: 1.875em;
  text-align: center;
}

.main-content8 .owl-theme .custom-nav .owl-prev {
  left: 0;
}

.main-content8 .owl-theme .custom-nav .owl-next {
  right: 0;
}

.features-mobil {
  margin-top: 3.125em;
}

/*==news-page-start==*/
.news-area {
  background: var(--color-white);
  padding: 7.5em 0 6.25em 0;
}

.news-title h2 {
  font-weight: 700;
  font-size: 3.75rem; /* 60px */
  line-height: 4.375em;
  color: var(--color-primary);
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  text-align: center;
}

.news-main {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 5em;
  column-gap: 1.875em;
}

.news-item img {
  width: 100%;
  border-radius: 1.25em;
}

.news-item h2 {
  font-weight: 600;
  font-size: 1.75rem; /* 28px */
  color: var(--color-primary);
  margin-top: 0.625em;
  /* 2-line text truncation with ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  max-height: calc(1.75rem * 1.3 * 2); /* font-size * line-height * 2 lines */
  /* Fallback for browsers without line-clamp support */
  text-overflow: ellipsis;
}

.news-item h2 a {
  color: var(--color-primary);
  transition: 0.2s all ease;
}

.news-item h2 a:hover {
  color: var(--color-primary);
}
/* News Date Styling */
.news-date {
  margin: 0.625em 0;
}

.news-date span {
  color: var(--color-secondary);
  font-size: 1rem; /* 16px */
  font-weight: 500;
  
}

/* Optional: Add hover effect for date */
.news-item:hover .news-date span {
  color: var(--color-secondary);
  transition: color 0.3s ease;
}

/* Responsive styles for news and blog item titles */
@media (max-width: 48em) {
  .news-item h2 {
    font-size: 1.5rem; /* 24px */
    max-height: calc(1.5rem * 1.3 * 2); /* Adjust max-height for mobile */
  }
  
  .blog-item h3 {
    font-size: 1.25rem; /* 20px */
    max-height: calc(1.25rem * 1.42 * 2); /* Adjust max-height for mobile */
  }
}

@media (max-width: 30em) {
  .news-item h2 {
    font-size: 1.25rem; /* 20px */
    max-height: calc(1.25rem * 1.3 * 2); /* Adjust max-height for small mobile */
  }
  
  .blog-item h3 {
    font-size: 1.125rem; /* 18px */
    max-height: calc(1.125rem * 1.42 * 2); /* Adjust max-height for small mobile */
  }
}

.news-item p {
  margin-top: 1em;
}

.news-btn {
  margin-top: 1em;
}

/*==tab-section==*/
.tab-area {
  border-radius: 5.625em;
  background: linear-gradient(180deg, var(--color-gray-100) 0%, var(--color-white) 100%);
  padding: 6.25em 0 6.25em 0;
}


.tab-buttons {
  display: flex;
  column-gap: 1.25em;
  justify-content: center;
}

.tab-btn {
  font-weight: 700;
  font-size: 1rem; /* 16px - consistent mobile font size */
  letter-spacing: 0.024375em;
  /* text-transform: none; */ /* Removed - all buttons should be uppercase */
  padding: 0.5em 1.625em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-primary);
  border-radius: 2.5em;
  border: 0.0625em solid rgba(0, 82, 76, 0.20);
  background: rgba(255, 255, 255, 0.00);
}

.tab-btn:hover {
  color: var(--color-primary);
}

.tab-btn.active {
  background: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-item-wrap {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 3.125em;
  column-gap: 1.875em;
  row-gap: 4.375em;
}

.blog-item50 {
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.blog-item h3 a:hover {
  color: var(--color-primary);
}

.main-content9 {
    position: relative;
    margin-top: 3.125em;
}

.main-content9 .owl-dots {
    width: 100%;
    text-align: center;
    position: initial;
    margin-top: 4.375em;
}

.tab-cnt20 {
  padding: 1.875em 0;
}

.main-content9 .owl-theme .owl-dots .owl-dot span {
  width: 1.875em;
  height: 0.25em;
  margin: 0.625em 0.4375em;
  background: #B3CBC9;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 5.625em;
  border: 0;
}

.main-content9 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #E97823;
}

.main-content9 .owl-dots button {
    border: none !important;
    outline: none !important;
}

.main-content9 .owl-nav button {
    border: none !important;
    outline: none !important;
}

.main-content9 .owl-theme .custom-nav {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    display: none;
}
.main-content9 .owl-theme .custom-nav .owl-prev, .main-content9 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content9 .owl-theme .custom-nav .owl-prev i, .main-content9 .owl-theme .custom-nav .owl-next i {
    font-size: 1.25rem; /* 20px */
    color: var(--color-white);
    background: #EB7923;
    width: 1.875em;
    height: 1.875em;
    border-radius: 50%;
    line-height: 1.875em;
    text-align: center;
}

.main-content9 .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.main-content9 .owl-theme .custom-nav .owl-next {
    right: 0;
}

/*===partners-section===*/
.partners-page-area {
  background: var(--color-white);
  padding: 4.6875em 0 7.125em 0;
}

.partner-page-title {
  max-width: 38.25em;
  margin: auto;
}

.partners-page-main {
  margin-top: 5em;
}

.tab-buttons {
  display: flex;
  gap: 1.25em;
}

.tab-btn2 {
  font-weight: 700;
  font-size: 0.8125rem; /* 13px */
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 0.5em 1.625em;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2.5em;
  border: 0.0625em solid rgba(0, 82, 76, 0.20);
  background: rgba(255, 255, 255, 0.00);
}

.tab-btn2.active {
  background: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary);
}

.tab-pane {
  display: none;
}

.partner-logo-wrap {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  padding-top: 5.625em;
  row-gap: 2.5em;
  max-width: 56.25em;
  margin: auto;
  align-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.partner-logo img {
  max-width: 7.5em;
  height: 60px;
  max-height: 65px;
  margin: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

/*==tuch-section==*/
.tuch-area {
  background: var(--color-white);
  padding-bottom: 6.25em;
}

.tuch-main {
  border-radius: 2.5em;
  background: rgba(255, 255, 255, 0.95);
      box-shadow: 2.5em 2.5em 2.5em 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(0.25em);
    border: 0.0625em solid transparent;
  background: linear-gradient(var(--color-white), var(--color-white)) padding-box, linear-gradient(-58deg, var(--color-primary) 5.42%, var(--color-accent) 46.31%, var(--color-secondary) 88.04%) border-box;
  padding: 7.125em 0.9375em 3.125em 0.9375em;
}

.tuch-title h2 {
  font-weight: 700;
  font-size: 4.375rem; /* 70px */
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  text-align: center;
  color: var(--color-primary);
}

.tuch-form {
  max-width: 61.5em;
  margin: auto;
  margin-top: 2.5em;
}

.tuch-input-flex {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 1.25em;
  row-gap: 1.875em;
}

.tuch-input-title h4 {
  font-weight: 600;
  font-size: 1.5rem; /* 24px */
  color: var(--color-primary);
  display: inline-block;
  background: var(--color-white);
  position: relative;
  top: 0.8125em;
  padding: 0 0.25em;
  left: 1.6875em;
  z-index: 10;
}
/* Form label styles for accessibility */
.tuch-input label,
.tuch-textarea label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
  color: var(--color-primary);
  margin-bottom: 0.5em;
  padding-left: 0.3125em;
}

.tuch-input input {
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  color: var(--color-primary);
  width: 100%;
  border-radius: 0.625em;
  padding: 1.5625em 1.875em;
  outline: none;
   border: 0.0625em solid transparent;
  background: linear-gradient(var(--color-white), var(--color-white)) padding-box, linear-gradient(-58deg, var(--color-primary) 5.42%, var(--color-accent) 46.31%, var(--color-secondary) 88.04%) border-box;
}

.tuch-input input::placeholder {
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  color: var(--color-primary);
}

.tuch-textarea {
  margin-top: 1.875em;
}

.tuch-textarea textarea::placeholder {
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  color: var(--color-primary);
}

.tuch-textarea textarea {
  width: 100%;
  padding: 1.875em;
  border-radius: 0.625em;
  outline: none;
   border: 0.0625em solid transparent;
  background: linear-gradient(var(--color-white), var(--color-white)) padding-box, linear-gradient(-58deg, var(--color-primary) 5.42%, var(--color-accent) 46.31%, var(--color-secondary) 88.04%) border-box;
   color: var(--color-primary);
}

.tuch-submit {
  text-align: center;
}

.tuch-submit button {
  font-weight: 700;
  font-size: 0.8125rem; /* 13px */
  letter-spacing: 0.024375em;
  text-transform: uppercase;
  border-radius: 2.5em;
  background: var(--color-secondary);
  padding: 0.9375em 2.25em;
  display: inline-block;
  color: var(--color-white);
  transition: 0.2s all ease;
  border: none;
  margin-top: 2.5em;
}

.tuch-submit button:hover {
  background: var(--color-primary);
}

.checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.625em;
  margin-top: 1.875em;
}

.checkbox label a {
  color: var(--color-primary);
  text-decoration: underline;
  cursor: pointer;
}
.tuch-checkbox label{
  display: flex;
  gap: 10px;
}
/* check-box */
.tuch-checkbox input[type=checkbox] {
    appearance: none;
    height: 1.5625em;
    width: 1.5625em;
    border-radius: 0.3125em;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.125em solid var(--color-secondary);
}

.tuch-checkbox input[type=checkbox]::after {
    content: "";
    width: 0.9375em;
    height: 0.9375em;
    background: var(--color-secondary);
    display: none;
}

.tuch-checkbox input[type=checkbox]:checked::after {
    display: block;
}


/*==careers-section==*/
/* OWL-CAROUSEL-05 */
.main-content10 {
    position: relative;
}

.main-content10 .owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 1%;
}

.main-content10 .owl-theme .owl-dots .owl-dot span {
  width: 1.25em;
  height: 1.25em;
  margin: 0.625em 0.4375em;
  background: transparent;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 1.875em;
  border: 0.125em solid  #5B2B81!important;
  display: none;
}

.main-content10 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #5B2B81;
}

.main-content10 .owl-dots button {
    border: none !important;
    outline: none !important;
}

.main-content10 .owl-nav button {
    border: none !important;
    outline: none !important;
}

.main-content10 .owl-theme .custom-nav {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    display: none;
}
.main-content10 .owl-theme .custom-nav .owl-prev, .main-content10 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content10 .owl-theme .custom-nav .owl-prev i, .main-content10 .owl-theme .custom-nav .owl-next i {
    font-size: 1.25rem; /* 20px */
    color: var(--color-white);
    background: #EB7923;
    width: 1.875em;
    height: 1.875em;
    border-radius: 50%;
    line-height: 1.875em;
    text-align: center;
}

.main-content10 .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.main-content10 .owl-theme .custom-nav .owl-next {
    right: 0;
}

.careers-btm {
  max-width: 45.8125em;
  margin: auto;
  text-align: center;
  margin-top: 3.5em;
}

.careers-btm .careers-subtitle {
  display: block;
  font-size: 1.5rem; /* 24px - matches .our-title span */
  color: var(--color-secondary); /* Orange - #FF6B35 */
  font-weight: 300; /* Light weight like .our-title */
}

.careers-btm .careers-main-title {
  font-size: 4.375rem; /* 70px - matches .our-title h2 */
  color: var(--color-primary); /* Green - #005A5B */
  font-weight: 700;
  margin: 0.5em 0; /* Same margin as .our-title h2 - top and bottom */
  line-height: 1.2;
}

.careers-btm h4 {
  font-weight: 300;
  font-size: 3.125rem; /* 50px */
  color: var(--color-secondary);
  margin-bottom: 0.9375em;
}
.careers-btn {
  margin-top: 1.875em;
  margin-bottom: 2em;
}
.features-title p {
  text-align: center;
  max-width: 38em;
  margin: auto;
  margin-top: 1.25em;
}
/* OWL-CAROUSEL-04 */
.main-content11 {
    position: relative;
    max-width: 53.4375em;
    margin: auto;
}

.main-content11 .owl-dots {
    width: 100%;
    text-align: center;
    position: initial;
    bottom: 1%;
    margin-top: 2.5em;
}

.main-content11 .owl-theme .owl-dots .owl-dot span {
  width: 1.875em;
  height: 0.25em;
  margin: 0.625em 0.4375em;
  background: #B3CBC9;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 5.625em;
  border: 0;
}

.main-content11 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #E97823;
}

.main-content11 .owl-dots button {
    border: none !important;
    outline: none !important;
}

.main-content11 .owl-nav button {
    border: none !important;
    outline: none !important;
}

.main-content11 .owl-theme .custom-nav {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    display: none;
}

.main-content11 .owl-theme .custom-nav .owl-prev, .main-content11 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content11 .owl-theme .custom-nav .owl-prev i, .main-content11 .owl-theme .custom-nav .owl-next i {
    font-size: 1.25rem; /* 20px */
    color: var(--color-white);
    background: #EB7923;
    width: 1.875em;
    height: 1.875em;
    border-radius: 50%;
    line-height: 1.875em;
    text-align: center;
}

.main-content11 .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.main-content11 .owl-theme .custom-nav .owl-next {
    right: 0;
}

.review-main50 {
  border-radius: 2.5em;
  background: var(--color-white);
  box-shadow: 2.5em 2.5em 2.5em 0 rgba(0, 0, 0, 0.10);
  border: 0.0625em solid transparent;
  background: linear-gradient(var(--color-white), var(--color-white)) padding-box, linear-gradient(-58deg, var(--color-primary) 5.42%, var(--color-accent) 46.31%, var(--color-secondary) 88.04%) border-box;
}

.review-main50 p {
  color: var(--color-primary);
}

.review-logo50 h4 {
   color: var(--color-primary);
}

.review-logo50 h5 {
   color: var(--color-primary);
}

.review-logo50 img {
  width: 6.25em !important;
  height: 6.25em;
  border-radius: 50%;
  display: block;
  margin: auto;
  margin-top: 2.5em;
  margin-bottom: 1.875em;
  border: 0.25em solid #F66913;
}

.main-content12 {
    position: relative;
}

.main-content12 .owl-dots {
    width: 100%;
    text-align: center;
    position: initial;
    margin-top: 1.875em;
}

.main-content12 .owl-theme .owl-dots .owl-dot span {
  width: 1.875em;
  height: 0.25em;
  margin: 0.625em 0.4375em;
  background: #B3CBC9;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 5.625em;
  border: 0;
}

.main-content12 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--color-secondary);
}

.main-content12 .owl-dots button {
  border: none !important;
  outline: none !important;
}

.main-content12 .owl-nav button {
  border: none !important;
  outline: none !important;
}

.main-content12 .owl-theme .custom-nav {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  display: none;
}
.main-content12 .owl-theme .custom-nav .owl-prev, .main-content12 .owl-theme .custom-nav .owl-next {
  position: absolute;   
  color: inherit;
  background: none;
  border: none;
  z-index: 100;
}

.main-content12 .owl-theme .custom-nav .owl-prev i, .main-content12 .owl-theme .custom-nav .owl-next i {
  font-size: 1.25rem; /* 20px */
  color: var(--color-white);
  background: #EB7923;
  width: 1.875em;
  height: 1.875em;
  border-radius: 50%;
  line-height: 1.875em;
  text-align: center;
}

.main-content12 .owl-theme .custom-nav .owl-prev {
  left: 0;
}

.main-content12 .owl-theme .custom-nav .owl-next {
  right: 0;
}

/* Desktop carousel styling (careers values - 4 columns) */
.main-content12-desktop {
    position: relative;
    width: 100%;
    padding: 2.5em 0.9375em;
}

.main-content12-desktop .owl-carousel {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.main-content12-desktop .owl-stage-outer {
    position: relative;
    overflow: hidden;
}

.main-content12-desktop .features-item {
    display: block;
    text-align: left;
    padding: 1.25em;
    min-height: 15.625em;
}

.main-content12-desktop .features-item img {
    max-width: 3em;
    height: auto;
    margin: 0;
    display: block;
}

.main-content12-desktop .features-item h2 {
    font-size: 1.5rem;
    margin-bottom: 0.9375em;
    color: var(--color-secondary);
}

.main-content12-desktop .features-item p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
}

/* Ensure desktop carousel is visible on desktop screens */
@media (min-width: 62em) {
    .features-main .d-none.d-lg-block {
        display: block !important;
    }
    
    .features-main .d-block.d-lg-none {
        display: none !important;
    }
}

.main-content12-desktop .owl-dots {
    width: 100%;
    text-align: center;
    position: initial;
    margin-top: 1.875em;
}

.main-content12-desktop .owl-theme .owl-dots .owl-dot span {
  width: 1.875em;
  height: 0.25em;
  margin: 0.625em 0.4375em;
  background: #B3CBC9;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 5.625em;
  border: 0;
}

.main-content12-desktop .owl-theme .owl-dots .owl-dot.active span, 
.main-content12-desktop .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--color-secondary);
}

.main-content12-desktop .owl-dots button {
  border: none !important;
  outline: none !important;
}

.main-content12-desktop .owl-nav button {
  border: none !important;
  outline: none !important;
}

.main-content12-desktop .owl-theme .custom-nav {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  display: none;
}

.main-content12-desktop .owl-theme .custom-nav .owl-prev, 
.main-content12-desktop .owl-theme .custom-nav .owl-next {
  position: absolute;   
  color: inherit;
  background: none;
  border: none;
  z-index: 100;
}

.main-content12-desktop .owl-theme .custom-nav .owl-prev i, 
.main-content12-desktop .owl-theme .custom-nav .owl-next i {
  font-size: 1.25rem;
  color: var(--color-white);
  background: var(--color-secondary);
  width: 1.875em;
  height: 1.875em;
  border-radius: 50%;
  line-height: 1.875em;
  text-align: center;
}

.main-content12-desktop .owl-theme .custom-nav .owl-prev {
  left: 0;
}

.main-content12-desktop .owl-theme .custom-nav .owl-next {
  right: 0;
}

.review-area25 {
  padding-bottom: 6.25em;
}

.vacancies-area {
  background: linear-gradient(180deg, var(--color-white) 0%, #F5F5F5 12%, #F5F5F5 87.5%, var(--color-white) 100%);
  padding: 6.25em 0 6.25em 0;
}

.vacancies-title h2 {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 4.375rem; /* 70px */
  line-height: 5em;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  text-align: center;
}

.vacancies-main {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 3.75em;
  gap: 1.25em;
}

.vacancies-item {
  background: var(--color-white);
  border-radius: 1.875em;
  padding: 4.625em 2.5em;
}

.vacancies-item span {
  color: var(--color-secondary);
}

.vacancies-item h3 {
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 1.25em;
  font-size: 2.5rem; /* 40px */
  margin-bottom: 1.25em;
}

.vacancies-item a {
  font-weight: 700;
  font-size: 0.8125rem; /* 13px */
  letter-spacing: 0.024375em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: inline-block;
  margin-top: 0.9375em;
}

.job-hero {
  background: var(--color-white);
  padding: 6.25em 0 9.375em 0;
}

.job-main {
  max-width: 38.25em;
  margin: auto;
  text-align: center;
}

.job-main span {
  font-weight: 300;
  font-size: 1.5rem; /* 24px */
  color: var(--color-secondary);
}

.job-main h2 {
  font-weight: 700;
  font-size: 6.25rem; /* 100px */
  line-height: 6em;
  color: var(--color-primary);
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.job-main ul {
  display: flex;
  align-items: center;
  column-gap: 5em;
  justify-content: center;
  margin-top: 3.125em;
}

.job-main ul li:nth-of-type(2) a {
  font-weight: 700;
  font-size: 1.6rem; /* 13px */
  color: var(--color-primary);
  letter-spacing: 0.024375em;
  text-transform: uppercase;
}

.job-main ul li:nth-of-type(2) a span img {
  margin-left: 0.625em;
}

.job-file-area {
  border-radius: 5.625em;
  background: linear-gradient(180deg, var(--color-gray-100) 0%, var(--color-white) 100%);
  padding: 6.25em 0;
}

.jobfile-cnt {
  margin-bottom: 4.375em;
}

.jobfile-cnt h3 {
  font-weight: 300;
  font-size: 2.5rem; /* 40px */
  color: var(--color-secondary);
  margin-bottom: 1.25em;
}

.jobfile-cnt ul {
  margin-top: 1.875em;
}

.jobfile-cnt ul li {
  display: grid;
  grid-template-columns: 2% auto;
  margin-bottom: 0.5em;
}

.dot {
  width: 0.375em; /* 6px - consistent bullet size */
  height: 0.375em;
  border-radius: 50%;
  background: var(--color-secondary); /* Orange color */
  margin-top: 0.625em;
}

.jobfile-cnt ul li p {
  line-height: 1.5625em;
}

.jobfile-box {
  max-width: 33.75em;
  margin: auto;
  border-radius: 1.875em;
  border: 0.0625em solid rgba(0, 82, 76, 0.30);
  background: var(--color-white);
  box-shadow: 0 0.375em 0.5em 0 rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 3em;
}

.jobfile-box h2 {
  font-weight: 700;
  font-size: 1.375rem; /* 22px */
  color: var(--color-primary);
}

.file-uplode {
  border-radius: 0.25em;
  border: 0.0625em dashed rgba(0, 82, 76, 0.30);
  background: rgba(0, 82, 76, 0.10);
  cursor: pointer;
  padding: 1.875em 1.875em;
  margin-top: 1.5625em;
}

.pdf-upload {
  margin-top: 1.25em;
}

.pdf-upload h4 {
  font-weight: 700;
  font-size: 0.9375rem; /* 15px */
  color: #676767;
  text-align: left;
}

.file-img img {
  max-width: 4.25em;
}

.pdf-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.25em;
  border: 0.03125em solid #E3E3E3;
  background: var(--color-white);
  padding: 0.625em;
  margin-top: 0.625em;
  cursor: pointer;
  position: relative;
}

.pdf-box::after {
  content: "";
  display: block;
  position: absolute;
  width: 70%;
  height: 0.1875em;
  border-radius: 0.625em;
  background: var(--color-primary);
  left: 0;
  bottom: -0.125em;
}

.pdf-box h6 {
  font-weight: 400;
  font-size: 0.75rem; /* 12px */
  color: #0F0F0F;
}

.file-uplode h4 {
  font-weight: 700;
  font-size: 1rem; /* 16px */
  color: #0F0F0F;
  margin-top: 1.5625em;
}

.file-uplode h4 a {
  color: var(--color-primary) !important;
  text-decoration: underline;
}

.file-uplode p {
  font-weight: 400;
  font-size: 0.75rem; /* 12px */
  margin-top: 0.625em;
  color: #676767;
}

.view-btn a {
  font-weight: 700;
  font-size: 0.8125rem; /* 13px */
  color: var(--color-primary);
  letter-spacing: 0.024375em;
  text-transform: uppercase;
  margin-top: 4.375em;
  display: inline-block;
}

.view-btn a img {
  margin-right: 0.625em;
}

.pdf-wrap {
  width: 100%;
}

.file-submit button {
  font-weight: 700;
  font-size: 0.8125rem; /* 13px */
  color: var(--color-white);
  text-transform: uppercase;
  width: 100%;
  border: none;
  border-radius: 1.875em;
  background: var(--color-secondary);
  padding: 0.875em 0.875em;
  margin-top: 1.875em;
  transition: 0.2s all ease;
}

.file-submit button:hover {
  opacity: 0.9;
}

.inner-file-wrapper {
  background: var(--color-white);
  padding-bottom: 6.25em;
}

.jobfile-cnt:last-child {
  margin-bottom: 0;
}

.contact-area {
  background: var(--color-white);
  padding: 2.25em 0 3.75em;
}

.contact-title {
  max-width: 55.3125em;
  margin: auto;
  text-align: center;
}
.contact-title h2 {
  color: var(--color-primary);
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
  font-size: 6.25rem; /* 100px */
  font-style: normal;
  font-weight: 700;
  line-height: 6em;
  margin-bottom: 1.875em;
}

.office-area {
  border-radius: 5.625em;
  background: linear-gradient(180deg, var(--color-gray-100) 0%, var(--color-white) 100%);
  padding: 3.25em 0;
}

.office-title {
  text-align: center;
}

.office-title h2 {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 5rem; /* 70px */
  line-height: 6em;
  /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
}

.office-title p a {
  color: var(--color-black);
  text-decoration: underline;
}

.office-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.25em;
  max-width: 85%;
  margin: 3em auto;
}

.office-item {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  border-radius: 1.25em;
  border: 0.0625em solid rgba(0, 82, 76, 0.30);
  background: var(--color-white);
  padding: 2.5em;
  gap: 2em;
}

.office-item .office-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.office-item .office-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.office-item h4 {
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 1.6rem;
  margin: 0 0 0.5em 0;
  font-weight: 500;
}

.office-item h2 {
  font-weight: 700;
  font-size: 3rem; /* 27px */
  color: var(--color-secondary);
  text-transform: uppercase;
  margin: 0;
}

.office-item p {
  margin: 0 0 0.9375em 0;
  line-height: 1.6;
  color: var(--color-black);
  font-size: 1.6rem;
}

.office-item a {
  color: var(--color-black);
  text-decoration: underline;
  display: block;
  margin-top: 0;
  font-size: 1.6rem;
}

.office-item .office-email,
.office-item .office-phone {
  display: block;
  margin-top: 0;
  margin-bottom: 0.9375em;
}

.office-item ul {
  display: flex;
  align-items: center;
  column-gap: 0.625em;
}

.office-item ul li {
  color: var(--color-secondary);
  margin-top: 0.9375em;
}

.office-item ul li img {
  max-width: 1.5em;
}
.office-item ul li a {
  margin-top: 0;
  color: var(--color-secondary);
  text-decoration: none;
}

.partner-logo6 img {
  max-width: 7.5em;
  height: 60px;
  max-height: 65px;
}

.partner-logo12 img {
  max-width: 7.5em;
  height: 60px;
  max-height: 65px;
}

/* Partners CTA Section */
.partners-cta-area {
  background: var(--color-white);
  padding: 3.25em 0;
}

.partners-cta-area .blog-btm {
  border: 0.125em solid rgba(235, 121, 35, 0.2);
  border-radius: 3.75em;
  padding: 3.75em 2.5em;
  max-width: 75em;
  margin: 0 auto;
}

.partners-cta-area .blog-btm h3 {
  margin-bottom: 0;
  font-size: 4.375rem; /* 70px */
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
}

.partners-cta-area .blog-btm ul {
  margin-top: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5em;
  list-style: none;
  padding: 0;
}
.blog-btm a{
  font-weight: 700;
}
.partners-cta-area .blog-btm-btn a {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 1em 2.5em;
  border-radius: 3.125em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.partners-cta-area .blog-btm-btn a:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-0.125em);
}

.partners-cta-area .blog-btm ul li:nth-of-type(2) a {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.625em;
  transition: all 0.3s ease;
}

.partners-cta-area .blog-btm ul li:nth-of-type(2) a:hover {
  color: var(--color-secondary);
}

.partners-cta-area .blog-btm ul li:nth-of-type(2) a span {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.partners-cta-area .blog-btm ul li:nth-of-type(2) a:hover span {
  transform: translateX(0.3125em);
}

/* Responsive Styles for Partners CTA */
@media (max-width: 61.9375em) {
  .partners-cta-area {
    padding: 5em 0;
  }
  
  .partners-cta-area .blog-btm {
    padding: 3em 2em;
  }
  
  .partners-cta-area .blog-btm h3 {
    font-size: 3.5rem;
  }
}

@media (max-width: 47.9375em) {
  .partners-cta-area {
    padding: 4em 0;
  }
  
  .partners-cta-area .blog-btm {
    padding: 2.5em 1.5em;
    border-radius: 2.5em;
  }
  
  .partners-cta-area .blog-btm h3 {
    font-size: 2.5rem;
    letter-spacing: -0.05em;
  }
  
  .partners-cta-area .blog-btm ul {
    flex-direction: column;
    gap: 1.5em;
  }
  
  .partners-cta-area .blog-btm ul li {
    width: 100%;
  }
  
  .partners-cta-area .blog-btm-btn,
  .partners-cta-area .blog-btm-btn a {
    width: 100%;
  }
  
  .partners-cta-area .blog-btm ul li:nth-of-type(2) a {
    justify-content: center;
  }
}

@media (max-width: 35.9375em) {
  .partners-cta-area {
    padding: 3em 0;
  }
  
  .partners-cta-area .blog-btm {
    padding: 2em 1em;
    border-radius: 2em;
  }
  
  .partners-cta-area .blog-btm h3 {
    font-size: 2rem;
  }
  
  .partners-cta-area .blog-btm-btn a {
    padding: 0.875em 2em;
    font-size: 0.9rem;
  }
  
  .partners-cta-area .blog-btm ul li:nth-of-type(2) a {
    font-size: 0.9rem;
  }
}


.video {
  width: 100%;
}

/* Year Background Carousel - Continuous Sliding Marquee */
.year-main {
    max-width: 90em;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 1.25em;
}

/* Platform Continuous Carousel - CSS Animation Based */
.platform-continuous-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 3em 0;
}

.platform-continuous-carousel {
    display: flex;
    gap: 3em;
    animation: scroll-platforms 25s linear infinite;
    width: max-content;
}

.platform-continuous-carousel:hover {
    animation-play-state: paused;
}

.platform-continuous-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50em;
}

.platform-continuous-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.platform-continuous-image img {
    width: 100%;
    height: auto;
    max-height: 30em;
    object-fit: contain;
    object-position: center;
    border-radius: 1.25em;
    opacity: 1;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.platform-continuous-item:hover .platform-continuous-image img {
    transform: scale(1.02);
    filter: brightness(1.1);
}

@keyframes scroll-platforms {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

/* Platform Image Lightbox */
.platform-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 2em;
}

.platform-lightbox.active {
    display: flex;
}

.platform-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: lightboxZoomIn 0.3s ease;
}

.platform-lightbox-content img {
    width: 100%;
    height: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 1.25em;
}

.platform-lightbox-close {
    position: absolute;
    top: -2em;
    right: -2em;
    background: var(--color-white);
    color: var(--color-primary);
    width: 3em;
    height: 3em;
    border-radius: 50%;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
}

.platform-lightbox-close:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: rotate(90deg);
}

@keyframes lightboxZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 48em) {
    .platform-lightbox {
        padding: 1em;
    }
    
    .platform-lightbox-close {
        top: 0.5em;
        right: 0.5em;
        width: 2.5em;
        height: 2.5em;
        font-size: 1.5rem;
    }
}

/* Responsive Adjustments for Platform Carousel */
@media (max-width: 75em) {
    .platform-continuous-item {
        min-width: 40em;
    }
    
    .platform-continuous-carousel {
        gap: 2.5em;
    }
}

@media (max-width: 48em) {
    .platform-continuous-carousel-wrapper {
        padding: 2em 0;
    }
    
    .platform-continuous-item {
        min-width: 30em;
    }
    
    .platform-continuous-carousel {
        gap: 2em;
        animation-duration: 25s; /* Slowed from 18s to 25s for tablet/mobile */
    }
    
    .platform-continuous-image img {
        max-height: 20em;
    }
}

@media (max-width: 30em) {
    .platform-continuous-item {
        min-width: 20em;
    }
    
    .platform-continuous-carousel {
        gap: 1.5em;
        animation-duration: 20s; /* Slowed from 12s to 20s for mobile - easier to view on slow connections */
    }
    
    .platform-continuous-image img {
        max-height: 15em;
    }
}

/* Single image fallback */
.year-main > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3.75em 0;
}

.working-with-chainthat-img img {
  border-radius: 0.75em;
}
/* ============================================
   DYNAMIC STAR RATING SYSTEM
   For review post type star ratings
   ============================================ */

.star-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.125em;
    margin: 0.625em 0;
}

.star {
    font-size: 1.5rem;
    color: var(--color-secondary); /* Orange - #FF6B35 */
    transition: color 0.2s ease;
    display: inline-block;
}

.star-full {
    color: var(--color-secondary); /* Orange */
}
.star-half {
    color: var(--color-secondary); /* Orange */
    position: relative;
}
.star-half::after {
    content: '☆';
    position: absolute;
    left: 0;
    top: 0;
    color: #ddd;
    z-index: -1;
}

.star-empty {
    color: #ddd;
}

/* Responsive star sizes */
@media (max-width: 48em) {
    .star {
        font-size: 1.25rem;
    }
}

@media (max-width: 30em) {
    .star {
        font-size: 1rem;
    }
}

/* ============================================
   LEADERSHIP TEAM SECTION
   Team member cards for about page
   ============================================ */

.leadership-team-area {
    padding: 6.25em 0;
    background: var(--color-white);
}

.leadership-title {
    margin-bottom: 3.75em;
}

.leadership-title h2 {
    font-size: 3.125rem; /* 50px */
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.25em;
    line-height: 1.2;
}

.leadership-title p {
    font-size: 1.125rem; /* 18px */
    color: #666;
    max-width: 37.5em;
    margin: 0 auto;
    line-height: 1.6;
}

.leadership-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75em, 1fr));
    gap: 2.5em;
    max-width: 75em;
    margin: 0 auto;
}

.team-member-card {
    background: var(--color-white);
    border-radius: 1.25em;
    box-shadow: 0 0.625em 1.875em rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 0.0625em solid rgba(0, 82, 76, 0.1);
}

.team-member-card:hover {
    transform: translateY(-0.625em);
    box-shadow: 0 1.25em 2.5em rgba(0, 0, 0, 0.15);
}

.team-member-image {
    position: relative;
    height: 17.5em;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-content {
    padding: 1.875em;
    text-align: center;
}

.team-member-name {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5em;
    line-height: 1.3;
}

.team-member-position {
    font-size: 1.125rem; /* 18px */
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 0.9375em;
    line-height: 1.4;
}

.team-member-department,
.team-member-location,
.team-member-experience {
    font-size: 0.875rem; /* 14px */
    color: #666;
    margin-bottom: 0.5em;
    line-height: 1.4;
}

.team-member-bio {
    font-size: 0.9375rem; /* 15px */
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.25em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-member-links {
    display: flex;
    justify-content: center;
    gap: 0.9375em;
    margin-top: 1.25em;
}

.team-linkedin,
.team-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    background: #f8f9fa;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 0.125em solid transparent;
}

.team-linkedin:hover {
    background: #0077B5;
    color: var(--color-white);
    transform: translateY(-0.125em);
}

.team-email:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-0.125em);
}

.no-team-members {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3.75em 1.25em;
    background: #f8f9fa;
    border-radius: 1.25em;
    border: 0.125em dashed #ddd;
}

.no-team-members p {
    font-size: 1.125rem; /* 18px */
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 48em) {
    .leadership-team-area {
        padding: 3.75em 0;
    }
    
    .leadership-title {
        margin-bottom: 2.5em;
    }
    
    .leadership-title h2 {
        font-size: 2.5rem; /* 40px */
    }
    
    .leadership-title p {
        font-size: 1rem; /* 16px */
    }
    
    .leadership-team-grid {
        grid-template-columns: 1fr;
        gap: 1.875em;
        padding: 0 1.25em;
    }
    
    .team-member-image {
        height: 15.625em;
    }
    
    .team-member-content {
        padding: 1.5625em;
    }
    
    .team-member-name {
        font-size: 1.375rem; /* 22px */
    }
    
    .team-member-position {
        font-size: 1rem; /* 16px */
    }
}

@media (max-width: 30em) {
    .leadership-team-area {
        padding: 2.5em 0;
    }
    
    .leadership-title h2 {
        font-size: 2rem; /* 32px */
    }
    
    .leadership-team-grid {
        gap: 1.25em;
        padding: 0 0.9375em;
    }
    
    .team-member-image {
        height: 13.75em;
    }
    
    .team-member-content {
        padding: 1.25em;
    }
    
    .team-member-name {
        font-size: 1.25rem; /* 20px */
    }
    
    .team-member-position {
        font-size: 0.9375rem; /* 15px */
    }
    
    .team-member-bio {
        font-size: 0.875rem; /* 14px */
        -webkit-line-clamp: 2;
    }
}


/* Policy Carousel - Desktop */
#owl-csel-policy-desktop .policy-item {
    margin: 0 0.9375em;
}

#owl-csel-policy-desktop .owl-nav {
    margin-top: 1.875em;
    text-align: center;
}

#owl-csel-policy-desktop .owl-nav button {
    background: #333;
    color: white;
    border: none;
    padding: 0.625em 1.25em;
    margin: 0 0.625em;
    border-radius: 0.3125em;
    transition: all 0.3s ease;
}

#owl-csel-policy-desktop .owl-nav button:hover {
    background: #555;
    transform: translateY(-0.125em);
}

/* Policy Carousel - Tablet */
#owl-csel-policy-tablet .policy-item {
    margin: 0 0.625em;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#owl-csel-policy-tablet .policy-item .policy-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#owl-csel-policy-tablet .policy-item .policy-button {
    margin-top: auto;
}

#owl-csel-policy-tablet .owl-stage {
    display: flex;
    align-items: stretch;
}

#owl-csel-policy-tablet .owl-item {
    display: flex;
    align-items: stretch;
}

#owl-csel-policy-tablet .owl-nav {
    margin-top: 1.5625em;
    text-align: center;
}

#owl-csel-policy-tablet .owl-nav button {
    background: #333;
    color: white;
    border: none;
    padding: 0.5em 1em;
    margin: 0 0.5em;
    border-radius: 0.3125em;
    transition: all 0.3s ease;
    font-size: 0.875rem; /* 14px */
}

#owl-csel-policy-tablet .owl-nav button:hover {
    background: #555;
    transform: translateY(-0.125em);
}

/* Policy Carousel - Mobile */
#owl-csel-policy-mobile {
    position: relative;
    padding-bottom: 0; /* No space needed since nav/dots are hidden */
    margin: 0 auto;
}

/* Hide navigation and dots for policy mobile carousel */
#owl-csel-policy-mobile .owl-nav,
#owl-csel-policy-mobile .owl-dots {
    display: none !important;
}

#owl-csel-policy-mobile .owl-stage-outer {
    overflow: hidden;
    padding: 0; /* No padding on stage-outer */
}

#owl-csel-policy-mobile .owl-stage {
    display: flex !important;
    align-items: stretch !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#owl-csel-policy-mobile .owl-item {
    display: flex !important;
    align-items: stretch !important;
    justify-content: center !important;
    height: auto !important;
    padding: 0 0.625em; /* Padding on items instead */
}

#owl-csel-policy-mobile .policy-item {
    margin: 0 auto;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
    box-sizing: border-box;
}

#owl-csel-policy-mobile .policy-item .policy-content {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

#owl-csel-policy-mobile .policy-item .policy-button {
    margin-top: auto !important;
}

/* Navigation buttons - positioned outside/below cards */
#owl-csel-policy-mobile .owl-nav {
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    gap: 1.25em;
    margin-top: 1.25em;
    margin-bottom: 0.625em; /* Space between nav and dots */
    pointer-events: all;
    z-index: 10;
}

#owl-csel-policy-mobile .owl-nav button {
    background: transparent !important;
    color: var(--color-primary) !important; /* Brand color */
    border: none !important;
    padding: 0.625em !important;
    margin: 0 !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    font-size: 2rem !important; /* 32px - larger icon */
    pointer-events: all;
    box-shadow: none !important;
    min-width: 2.75em;
    min-height: 2.75em;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#owl-csel-policy-mobile .owl-nav button i {
    transition: color 0.3s ease;
}

#owl-csel-policy-mobile .owl-nav button.owl-prev {
    margin-left: 0 !important;
}

#owl-csel-policy-mobile .owl-nav button.owl-next {
    margin-right: 0 !important;
}

#owl-csel-policy-mobile .owl-nav button:hover {
    background: transparent !important;
    color: var(--color-secondary) !important; /* Brand orange on hover */
    transform: scale(1.1);
}

#owl-csel-policy-mobile .owl-nav button:focus {
    outline: none !important;
    color: var(--color-secondary) !important; /* Brand orange on focus */
    transform: scale(1.1);
}

#owl-csel-policy-mobile .owl-nav button:hover i,
#owl-csel-policy-mobile .owl-nav button:focus i {
    color: var(--color-secondary) !important;
}

/* Dots below navigation buttons */
#owl-csel-policy-mobile .owl-dots {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5em;
    margin-top: 0.9375em;
    padding: 0.625em 0;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100;
}

#owl-csel-policy-mobile .owl-dots.disabled {
    display: flex !important; /* Override disabled state */
}

#owl-csel-policy-mobile .owl-dots .owl-dot {
    width: 0.75em !important;
    height: 0.75em !important;
    border-radius: 50% !important;
    background: #D9D9D9 !important;
    border: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: inline-block !important;
    padding: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#owl-csel-policy-mobile .owl-dots .owl-dot span {
    display: none !important; /* Hide default Owl Carousel span */
}

#owl-csel-policy-mobile .owl-dots .owl-dot:hover {
    background: var(--color-primary) !important;
    transform: scale(1.2) !important;
}

#owl-csel-policy-mobile .owl-dots .owl-dot.active {
    background: var(--color-secondary) !important;
    width: 2em !important;
    border-radius: 0.375em !important;
}

#owl-csel-policy-mobile .owl-dots .owl-dot:focus {
    outline: 0.125em solid var(--color-secondary) !important;
    outline-offset: 0.125em !important;
}

/* ============================================
   BLOG CAROUSEL RESPONSIVE SYSTEM
   Improved responsive design for all devices
   ============================================ */

/* Ensure carousel containers are properly sized */
.owl-carousel {
    width: 100%;
}

.owl-stage {
    display: flex;
}

.owl-item {
    display: flex;
    align-items: stretch;
}

/* ============================================
   GLOBAL OWL CAROUSEL NAVIGATION & DOTS STYLING
   Modern, consistent design for all carousels
   ============================================ */

/* Global Carousel Navigation Arrows */
.owl-carousel .owl-nav {
    margin-top: 1.875em;
    text-align: center;
    display: none; /* Hidden by default, enable per carousel */
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 2em;
    height: 2em;
    border-radius: 1em;
    background: var(--color-secondary) !important;
    color: var(--color-white) !important;
    font-size: 2rem;
    margin: 0 0.5em;
    transition: all 0.3s ease;
    border: none;
    display: inline-block !important;
    line-height: 1em;
    cursor: pointer;
}

.owl-carousel .owl-nav button span {
    color: var(--color-white) !important;
    font-size: 1rem;
    line-height: 1em;
}

.owl-carousel .owl-nav button:hover {
    background: var(--color-primary) !important;
}

.owl-carousel .owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Global Carousel Dots */
.owl-carousel .owl-dots {
    margin-top: 1.5625em;
    text-align: center;
    display: none; /* Hidden by default, enable per carousel */
}
.owl-carousel .owl-dot {
    display: inline-block;
    margin: 0 0.3125em;
    cursor: pointer;
}

.owl-carousel .owl-dot span {
    width: 0.75em;
    height: 0.75em;
    background: #ddd;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active span {
    background: var(--color-secondary);
    width: 1.875em;
    border-radius: 0.375em;
}

.owl-carousel .owl-dot:hover span {
    background: #ccc;
}

.owl-carousel .owl-dot.active:hover span {
    background: #d66a1e;
}

/* Enable navigation for specific carousels */
/* Solution Template - Benefits Carousel */
#benefitsCarousel.benefits-carousel .owl-nav,
#benefitsCarousel.benefits-carousel .owl-dots,
.benefits-carousel .owl-nav,
.benefits-carousel .owl-dots,
/* Homepage Carousels */
#owl-csel1 .owl-nav,
#owl-csel1 .owl-dots,
#owl-csel-policy-desktop .owl-nav,
#owl-csel-policy-desktop .owl-dots,
#owl-csel-policy-tablet .owl-nav,
#owl-csel-policy-tablet .owl-dots,
#owl-csel3 .owl-nav,
#owl-csel3 .owl-dots,
#owl-csel4 .owl-nav,
#owl-csel4 .owl-dots {
    display: block !important;
}

/* Desktop - Hide both nav and dots */
#owl-csel-blog-desktop .owl-nav,
#owl-csel-blog-desktop .owl-dots {
    display: none !important;
}

/* Tablet and Mobile - Hide nav, show dots */
#owl-csel-blog-tablet .owl-nav,
#owl-csel-blog-mobile .owl-nav {
    display: none !important;
}

#owl-csel-blog-tablet .owl-dots,
#owl-csel-blog-mobile .owl-dots {
    display: block !important;
}

/* Show dots on mobile/tablet for desktop carousel */
@media (max-width: 75em) {
    #owl-csel-blog-desktop .owl-dots {
        display: block !important;
    }
}
#owl-csel1 .owl-dots{
  text-align: left;
}
/* Responsive adjustments for navigation */
@media (max-width: 47.9375em) {
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 2em;
        height: 2em;
        font-size: 2rem;
        line-height: 1em;
        margin: 0 0.3125em;
    }
    
    .owl-carousel .owl-nav button span {
        font-size: 1rem;
        line-height: 1em;
    }
    
    .owl-carousel .owl-dot span {
        width: 0.625em;
        height: 0.625em;
    }
    
    .owl-carousel .owl-dot.active span {
        width: 1.5em;
    }
}
/* Blog Carousel - Desktop */
#owl-csel-blog-desktop .blog-item {
    margin: 0 0.9375em;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 25em;
}

#owl-csel-blog-desktop .blog-item .blog-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#owl-csel-blog-desktop .blog-item .blog-button {
    margin-top: auto;
}

#owl-csel-blog-desktop .owl-stage {
    display: flex;
    align-items: stretch;
}

#owl-csel-blog-desktop .owl-item {
    display: flex;
    height: 100%;
    align-items: stretch;
}

#owl-csel-blog-desktop .owl-nav {
    margin-top: 1.875em;
    text-align: center;
}

#owl-csel-blog-desktop .owl-nav button {
    background: #333;
    color: white;
    border: none;
    padding: 0.625em 1.25em;
    margin: 0 0.625em;
    border-radius: 0.3125em;
    transition: all 0.3s ease;
}

#owl-csel-blog-desktop .owl-nav button:hover {
    background: #555;
    transform: translateY(-0.125em);
}

/* Blog Carousel - Tablet */
#owl-csel-blog-tablet .blog-item {
    margin: 0 0.625em;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 23.75em;
}

#owl-csel-blog-tablet .blog-item .blog-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#owl-csel-blog-tablet .blog-item .blog-button {
    margin-top: auto;
}

#owl-csel-blog-tablet .owl-stage {
    display: flex;
    align-items: stretch;
}

#owl-csel-blog-tablet .owl-item {
    display: flex;
    height: 100%;
    align-items: stretch;
}

#owl-csel-blog-tablet .owl-nav {
    margin-top: 1.5625em;
    text-align: center;
}

#owl-csel-blog-tablet .owl-nav button {
    background: #333;
    color: white;
    border: none;
    padding: 0.5em 1em;
    margin: 0 0.5em;
    border-radius: 0.3125em;
    transition: all 0.3s ease;
    font-size: 0.875rem; /* 14px */
}

#owl-csel-blog-tablet .owl-nav button:hover {
    background: #555;
    transform: translateY(-0.125em);
}

/* Blog Carousel - Mobile */
#owl-csel-blog-mobile .blog-item {
    margin: 0 0.5em;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 21.875em;
}
#owl-csel-blog-mobile .blog-item .blog-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
#owl-csel-blog-mobile .blog-item .blog-button {
    margin-top: auto;
}

#owl-csel-blog-mobile .owl-stage {
    display: flex;
    align-items: stretch;
}

#owl-csel-blog-mobile .owl-item {
    display: flex;
    height: 100%;
    align-items: stretch;
}

#owl-csel-blog-mobile .owl-nav {
    margin-top: 1.25em;
    text-align: center;
}

#owl-csel-blog-mobile .owl-nav button {
    background: #333;
    color: var(--color-white);
    border: none;
    padding: 0.625em 0.9375em;
    margin: 0 0.3125em;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#owl-csel-blog-mobile .owl-nav button:hover {
    background: #555;
    transform: translateY(-0.125em);
}

/* ============================================
   BLOG CAROUSEL RESPONSIVE BREAKPOINTS
   ============================================ */

/* Desktop Large (1200px+) */
@media (min-width: 75em) {
    #owl-csel-blog-desktop .blog-item {
        min-height: auto;
    }
    
    #owl-csel-blog-desktop .blog-item h3 {
        font-size: 1.5rem; /* 24px */
    }
}

/* Desktop (992px - 1199px) */
@media (min-width: 62em) and (max-width: 74.9375em) {
    #owl-csel-blog-desktop .blog-item {
        min-height: 25em;
    }
    
    #owl-csel-blog-desktop .blog-item h3 {
        font-size: 1.375rem; /* 22px */
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 48em) and (max-width: 61.9375em) {
    #owl-csel-blog-tablet .blog-item {
        min-height: 23.75em;
    }
    
    #owl-csel-blog-tablet .blog-item h3 {
        font-size: 1.25rem; /* 20px */
    }
    
    #owl-csel-blog-tablet .owl-nav {
        margin-top: 1.5625em;
    }
}

/* Mobile (max-width: 47.9375em) */
@media (max-width: 47.9375em) {
    #owl-csel-blog-mobile .blog-item {
        min-height: 21.875em;
        margin: 0 0.3125em;
    }
    
    #owl-csel-blog-mobile .blog-item h3 {
        font-size: 1.125rem; /* 18px */
    }
    
    #owl-csel-blog-mobile .owl-nav {
        margin-top: 1.25em;
    }
    
    #owl-csel-blog-mobile .owl-nav button {
        padding: 0.5em 0.75em;
        font-size: 1.4rem;
    }
}

/* Small Mobile (max-width: 30em) */
@media (max-width: 30em) {
    #owl-csel-blog-mobile .blog-item {
        min-height: 20em;
        margin: 0 0.1875em;
    }
    
    #owl-csel-blog-mobile .blog-item h3 {
        font-size: 1rem; /* 16px */
    }
    
    #owl-csel-blog-mobile .owl-nav button {
        padding: 0.375em 0.625em;
        font-size: 1.2rem;
    }
}

/* Single News Post Styles */
.news-single-area {
  padding: 5em 0;
  background: #f8f9fa;
}

.breadcrumb-section {
  margin-bottom: 1.875em;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 0.875rem; /* 14px */
}

.breadcrumb-item a {
  color: #666;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #F66913;
}

.breadcrumb-item.active {
  color: #333;
}

.news-single-header {
  background: var(--color-white);
  padding: 2.5em;
  border-radius: 0.625em;
  margin-bottom: 1.875em;
  box-shadow: 0 0.125em 0.625em rgba(0,0,0,0.1);
}

.news-meta-info {
  margin-bottom: 1.25em;
  font-size: 0.875rem; /* 14px */
  color: #666;
}

.meta-separator {
  margin: 0 0.625em;
}

.post-category {
  color: var(--color-primary);
  font-weight: 500;
}

.news-single-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.25em;
  line-height: 1.2;
}

.news-single-excerpt {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.news-single-featured-image {
  margin-bottom: 2.5em;
  border-radius: 0.625em;
  overflow: hidden;
  box-shadow: 0 0.25em 1.25em rgba(0,0,0,0.1);
}

.news-single-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 0.625em;
}

.news-single-content {
  background: var(--color-white);
  padding: 2.5em;
  border-radius: 0.625em;
  box-shadow: 0 0.125em 0.625em rgba(0,0,0,0.1);
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2.5em;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  margin-top: 1.875em;
  margin-bottom: 0.9375em;
  font-weight: 600;
  color: #333;
  font-size: 2rem;
}

.post-content p {
  margin-bottom: 1.25em;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5em;
  margin: 1.25em 0;
}

.post-tags {
  margin-bottom: 2.5em;
  padding-top: 1.875em;
  border-top: 0.0625em solid #eee;
}

.post-tags h4 {
  font-size: 1.2rem;
  margin-bottom: 0.9375em;
  color: #333;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625em;
}

.tag-link {
  background: #f8f9fa;
  color: #666;
  padding: 0.5em 0.9375em;
  border-radius: 1.25em;
  text-decoration: none;
  font-size: 0.875rem; /* 14px */
  transition: all 0.3s ease;
}

.tag-link:hover {
  background: #F66913;
  color: var(--color-white);
}

.social-sharing {
  padding-top: 1.875em;
  border-top: 0.0625em solid #eee;
}

.social-sharing h4 {
  font-size: 1.2rem;
  margin-bottom: 0.9375em;
  color: #333;
}

.social-links {
  display: flex;
  gap: 0.9375em;
}

.social-link {
  width: 2.8125em;
  height: 2.8125em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-white);
  font-size: 1.125rem; /* 18px */
  transition: all 0.3s ease;
}

.social-link.facebook {
  background: var(--color-primary);
}

.social-link.twitter {
  background: var(--color-primary);
}

.social-link.linkedin {
  background: var(--color-primary);
}

.social-link.email {
  background: var(--color-primary);
}

.social-link:hover {
  transform: translateY(-0.125em);
  box-shadow: 0 0.25em 0.9375em rgba(0,0,0,0.2);
}
.nav-link:focus, .nav-link:hover {
  color: var(--color-primary);
}
/* Sidebar Styles */
.news-single-sidebar {
  padding-left: 1.875em;
}

.sidebar-widget {
  background: var(--color-white);
  padding: 1.875em;
  border-radius: 0.625em;
  margin-bottom: 1.875em;
  box-shadow: 0 0.125em 0.625em rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.25em;
  padding-bottom: 0.625em;
  border-bottom: 0.125em solid var(--color-primary);
}



/* Categories Widget */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  margin-bottom: 0.625em;
}

.categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  text-decoration: none;
  padding: 0.5em 0;
  border-bottom: 0.0625em solid #f0f0f0;
  transition: all 0.3s ease;
}

.categories-list a:hover {
  color: #F66913;
}

.category-count {
  font-size: 0.75rem; /* 12px */
  color: #999;
}

/* Recent Posts Widget */
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-post-item {
  padding-bottom: 0.9375em;
  border-bottom: 0.0625em solid #eee;
  margin-bottom: 0.9375em;
}

.recent-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.recent-post-meta {
  font-size: 0.75rem; /* 12px */
  color: #666;
  margin-bottom: 0.3125em;
}

.recent-post-title {
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.recent-post-title a {
  color: #333;
  text-decoration: none;
}

.recent-post-title a:hover {
  color: #F66913;
}

/* Post Navigation */
.post-navigation-area {
  padding: 2.5em 0;
  background: var(--color-white);
}

.post-navigation {
  background: #f8f9fa;
  padding: 1.875em;
  border-radius: 0.625em;
}

.nav-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  padding: 1.25em;
  border-radius: 0.5em;
  background: var(--color-white);
  box-shadow: 0 0.125em 0.3125em rgba(0,0,0,0.1);
}

.nav-link:hover {
  transform: translateY(-0.125em);
  box-shadow: 0 0.25em 0.9375em rgba(0,0,0,0.15);
}

.prev-link {
  text-align: left;
}

.next-link {
  text-align: right;
  flex-direction: row-reverse;
}



.nav-content {
  flex: 1;
}

.nav-label {
  font-size: 0.75rem; /* 12px */
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
  margin-bottom: 0.3125em;
}

.nav-title {
  font-size: 1rem; /* 16px */
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* Back to Archive */
.back-to-archive-area {
  padding: 2.5em 0;
  background: #f8f9fa;
}

.back-to-archive {
  text-align: center;
}
a{
  color:var(--color-primary);
}
a:hover{
  color:#F66913;
}


/* Responsive Design */
@media (max-width: 48em) {
  .news-single-area {
      padding: 2.5em 0;
  }
  
  .news-single-header {
      padding: 1.25em;
  }
  
  .news-single-title {
      font-size: 2rem;
  }
  
  .news-single-content {
      padding: 1.25em;
  }
  
  .news-single-sidebar {
      padding-left: 0;
      margin-top: 1.875em;
  }
  
  .sidebar-widget {
      padding: 1.25em;
  }
  
  .related-post-item {
      flex-direction: column;
      gap: 0.625em;
  }
  
  .related-post-image {
      width: 100%;
      height: 7.5em;
  }
  
  .nav-link {
      padding: 0.9375em;
  }
  
  .nav-title {
      font-size: 0.875rem; /* 14px */
  }
}

/* Service Carousel Read More/Less Styles - Click on text to expand/collapse */
.service-carousel {
  margin: 3.125em 0;
}

.service-carousel .service-description {
    margin-top: 1em;
    line-height: 1.625em;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-carousel .service-description p {
    font-size: 1.4rem; /* 16px */
}

.service-carousel .service-text {
    margin: 0;
    line-height: 1.625em;
    cursor: pointer;
    user-select: none;
    /* CSS Line Clamp for 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.service-carousel .service-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.service-carousel .service-text:hover {
    /* color: var(--color-secondary); */
}

/* Ensure service items have consistent height */
.service-carousel .service-item {
  border-radius: 1.875em;
  background: var(--color-white);
  box-shadow: 0.1875em 0.375em 0.875em 0 rgba(0, 0, 0, 0.05);
  padding: 1.25em 1.1875em;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-carousel .service-item img {
  max-width: 3em;
  height: auto;
}

.service-carousel .service-item h4 {
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-secondary);
  margin-top: 0.5em;
}

/* ============================================
   RESPONSIVE FIXES - CONSOLIDATED
   Hero, Beyond, Capabilities, Timeline, Working
   ============================================ */

/* ========================================
   HERO SECTION RESPONSIVE
   ======================================== */
/* Desktop: Above 1024px - Fix image overflow */
@media screen and (min-width: 64em) {
    .adminis-area {
        overflow: hidden !important; /* Changed from visible to hidden for video bg */
        position: relative;
    }
    
    .adminis-img-wrap {
        position: relative !important;
        overflow: visible !important;
        min-height: 31.25em;
    }
    
    .adminis-img {
        position: relative !important;
        width: 100%;
        left: auto !important;
        top: auto !important;
        margin: 0 auto;
        text-align: center;
        max-width: 60.625em;
    }
    
    .adminis-img img {
        width: 100%;
        position: relative !important;
        margin-top: 0 !important;
        display: block;
        border-radius: 1.5625em;
    }
}

/* iPad and Large Tablets: 992px - 1023px */
@media screen and (min-width: 62em) and (max-width: 63.9375em) {
    .adminis-area {
        padding-top: 8.75em !important;
        padding-bottom: 6.25em !important;
        min-height: auto !important;
        overflow: hidden !important; /* Changed from visible to hidden for video bg */
    }
    
    .solution-hero-area {
        padding-top: 7.5em !important;
        padding-bottom: 5em !important;
        min-height: auto !important;
        overflow: hidden !important; /* Changed from visible to hidden for video bg */
    }
    
    .adminis-area .container {
        width: 100%;
    }
    
    .adminis-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 2.5em;
        width: 100%;
    }
    
    .adminis-title {
        text-align: center !important;
        max-width: 90%;
        margin: 0 auto 1.875em auto !important;
    }
    
    .adminis-title h2 {
        font-size: 3.5rem !important;
        line-height: 1.15 !important;
        margin-bottom: 1.25em !important;
        font-weight: 700;
        letter-spacing: -0.0625em !important; /* Reduced from -3px */
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .adminis-title p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        margin-bottom: 0 !important;
        line-height: 1.6 !important;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .adminis-img-wrap {
        margin-top: 2.5em !important;
        width: 100%;
        max-width: 46.875em;
        margin-left: auto;
        margin-right: auto;
        position: relative !important;
        overflow: visible !important;
    }
    
    .adminis-img {
        text-align: center;
        position: relative !important;
        width: 100%;
        left: auto !important;
        top: auto !important;
    }
    
    .adminis-img img {
        max-width: 90% !important;
        height: auto !important;
        display: inline-block;
        position: relative !important;
        margin-top: 0 !important;
    }
}
/* Tablet View: 768px - 991px */
@media screen and (min-width: 48em) and (max-width: 61.9375em) {
    .adminis-area {
        padding-top: 7.5em !important;
        padding-bottom: 5em !important;
        overflow: hidden !important; /* Changed from visible to hidden for video bg */
        min-height: auto !important;
    }
    
    .solution-hero-area {
        padding-top: 6.25em !important;
        padding-bottom: 4.375em !important;
        min-height: auto !important;
        overflow: hidden !important; /* Changed from visible to hidden for video bg */
    }
    
    .adminis-area .container {
        width: 100%;
    }
    
    .adminis-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 2.5em;
        max-width: 100%;
        width: 100%;
    }
    
    .adminis-title {
        text-align: center !important;
        max-width: 95%;
        margin: 0 auto 1.5625em auto !important;
    }
    
    .adminis-title h2 {
        font-size: 3rem !important;
        line-height: 1.15 !important;
        margin-bottom: 1.125em !important;
        font-weight: 700;
        letter-spacing: -0.03125em !important; /* Reduced from -3px */
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .adminis-title p {
        font-size: 1.6rem !important;
        margin-bottom: 0 !important;
        line-height: 1.6 !important;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .adminis-img-wrap {
        margin-top: 2.1875em !important;
        width: 100%;
        max-width: 40.625em;
        margin-left: auto;
        margin-right: auto;
        position: relative !important;
        overflow: visible !important;
    }
    
    .adminis-img {
        text-align: center;
        position: relative !important;
        width: 100%;
        left: auto !important;
        top: auto !important;
    }
    
    .adminis-img img {
        max-width: 95% !important;
        height: auto !important;
        display: inline-block;
        position: relative !important;
        margin-top: 0 !important;
    }
}

/* Mobile View: Below 768px */
@media screen and (max-width: 47.9375em) {
    .adminis-area {
        min-height: 60vh !important;
        min-height: 60dvh !important;
        padding-top: 5em !important;
        padding-bottom: 3.125em !important;
        overflow: visible !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .solution-hero-area {
        min-height: 60vh !important;
        min-height: 60dvh !important;
        padding-top: 4.375em !important;
        padding-bottom: 2.5em !important;
        display: flex !important;
        align-items: center !important;
        overflow: visible !important;
    }
    
    .adminis-area .container {
        width: 70%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .adminis-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 1.25em;
        width: 100%;
    }
    
    .adminis-title {
        text-align: center !important;
        width: 100%;
        margin-bottom: 1.25em !important;
    }
    
    .adminis-title h2 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.75em !important;
        font-weight: 600;
        letter-spacing: 0 !important; /* Reset negative spacing */
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .adminis-title p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        margin-bottom: 0 !important;
        line-height: 1.5 !important;
    }
    
    .adminis-img-wrap {
        margin-top: 1.5625em !important;
        width: 100%;
        position: relative !important;
        overflow: visible !important;
    }
    
    .adminis-img {
        text-align: center;
        position: relative !important;
        width: 100%;
        left: auto !important;
        top: auto !important;
    }
    
    .adminis-img img {
        max-width: 95% !important;
        height: auto !important;
        display: inline-block;
        position: relative !important;
        margin-top: 0 !important;
    }
}

/* Small Mobile: Below 480px */
@media screen and (max-width: 30em) {
    .adminis-area {
        min-height: 60vh !important;
        min-height: 60dvh !important;
        padding-top: 4.375em !important;
        padding-bottom: 2.5em !important;
        margin-top: -4.375em !important;
        display: flex !important;
        align-items: center !important;
        overflow: visible !important;
    }
    
    .solution-hero-area {
        min-height: 60vh !important;
        min-height: 60dvh !important;
        padding-top: 3.75em !important;
        padding-bottom: 2.1875em !important;
        display: flex !important;
        align-items: center !important;
        overflow: visible !important;
    }
    
    .adminis-main {
        padding: 0 0.9375em;
    }
    
    .adminis-title {
        margin-bottom: 1.125em !important;
    }
    
    .adminis-title h2 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.625em !important;
        letter-spacing: 0 !important; /* Reset negative spacing */
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .adminis-title p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        margin-bottom: 0 !important;
    }
    
    .adminis-img-wrap {
        margin-top: 1.25em !important;
        position: relative !important;
        overflow: visible !important;
    }
    
    .adminis-img {
        position: relative !important;
        width: 100%;
        left: auto !important;
        top: auto !important;
    }
    
    .adminis-img img {
        max-width: 100% !important;
        position: relative !important;
        margin-top: 0 !important;
    }
}

/* Video background responsive handling */
@media (max-width: 63.9375em) {
    .adminis-background-video,
    .solution-hero-background-video {
        display: block !important;
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .adminis-area:has(.adminis-background-video) .adminis-background-image,
    .solution-hero-area:has(.solution-hero-background-video) .solution-hero-background-image {
        display: none !important;
    }
    
    .adminis-area::before {
        opacity: 0.4;
    }
}

@media (max-width: 47.9375em) {
    .adminis-background-video,
    .solution-hero-background-video {
        display: none !important;
    }
    
    .adminis-background-image,
    .solution-hero-background-image {
        display: block !important;
    }
}

/* ========================================
   WE GO BEYOND SECTION RESPONSIVE
   ======================================== */

@media screen and (min-width: 62em) and (max-width: 63.9375em) {
    .adminis-video-area {
        padding: 2.1875em 0 !important;
    }
    
    .adminis-description-area {
        padding: 3.75em 0 35px 0 !important; /* First: 60px top, 35px bottom */
    }
    
    .adminis-statistics-area {
        padding: 2.1875em 0 !important;
    }
    
    .adminis-video-title {
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
        padding: 0 1.25em;
    }
    
    .adminis-video-title h2 {
        font-size: 4.5rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5625em !important;
    }
    
    .adminis-video-title p {
        font-size: 1.6rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.25em;
    }
    
    .adminis-video-main {
        grid-template-columns: repeat(2, 1fr) !important;
        column-gap: 2.5em !important;
        padding: 3.75em 2.5em !important;
        margin-top: 3.75em !important;
    }
    
    .adminis-video-left h3 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.25em;
    }
    
    .adminis-video-left p {
        font-size: 1.6rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5625em;
    }
    
    .year-inner-title h2 {
        font-size: 4.5rem !important;
        margin-top: 3.75em !important;
        margin-bottom: 2.5em !important;
    }
    
    .yearbox-wrap10 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.875em !important;
        margin-top: 2.5em !important;
    }
}

@media screen and (min-width: 48em) and (max-width: 61.9375em) {
    .adminis-video-area {
        padding: 1.875em 0 !important;
    }
    
    .adminis-description-area {
        padding: 3.125em 0 30px 0 !important; /* First: 50px top, 30px bottom */
    }
    
    .adminis-statistics-area {
        padding: 1.875em 0 !important;
    }
    
    .adminis-video-title {
        text-align: center !important;
        max-width: 95%;
        margin: 0 auto;
        padding: 0 1.25em;
    }
    
    .adminis-video-title span {
        font-size: 1.25rem !important;
        display: block;
        margin-bottom: 0.9375em;
    }
    
    .adminis-video-title h2 {
        font-size: 3.5rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.7em !important;
        margin-top: 0.9375em !important;
    }
    
    .adminis-video-title p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.5 !important;
        margin-bottom: 0.9375em;
    }
    
    .adminis-video-main {
        grid-template-columns: 100% !important;
        padding: 2.5em 1.875em !important;
        margin-top: 3.125em !important;
        gap: 1.875em !important;
        border-radius: 1.25em !important;
    }
    
    .adminis-video-right {
        order: 1 !important;
    }
    
    .adminis-video-left {
        order: 2 !important;
        text-align: center;
    }
    
    .adminis-video-left h3 {
        font-size: 2.25rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.125em;
    }
    
    .adminis-video-left p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.5 !important;
        margin-bottom: 1.25em;
    }
    
    .adminis-video-left .btn-all a {
        display: inline-block !important;
        text-align: center;
        padding: 0.9375em 2.5em;
    }
    
    .year-inner-title {
        text-align: center;
        margin-top: 3.125em !important;
    }
    
    .year-inner-title h2 {
        font-size: 3.5rem !important;
        margin-bottom: 1.875em !important;
    }
    
    .yearbox-wrap10 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5625em !important;
        margin-top: 1.875em !important;
    }
    
    .year-box10 {
        padding: 1.875em 1.25em !important;
        min-height: 12.5em !important;
    }
    
    .year-box10 h2 {
        font-size: 3.75rem !important; /* Scaled down for tablet */
    }
    
    .year-box10 p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
    }
}

@media screen and (max-width: 47.9375em) {
    .adminis-video-area {
        padding: 1.5625em 0 !important;
    }
    
    .adminis-description-area {
        padding: 2.5em 0 25px 0 !important; /* First: 40px top, 25px bottom */
    }
    
    .adminis-statistics-area {
        padding: 1.5625em 0 !important;
    }
    
    .adminis-video-title {
        text-align: center !important;
        max-width: 100%;
        padding: 0 1.25em;
    }
    
    .adminis-video-title span {
        font-size: 1.125rem !important;
        display: block;
        margin-bottom: 0.75em;
    }
    
    .adminis-video-title h2 {
        font-size: 2.5rem !important;
        line-height: 1.15 !important;
        margin-bottom: 1.125em !important;
        margin-top: 0.75em !important;
        letter-spacing: -0.09375em;
    }
    
    .adminis-video-title p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.5 !important;
        margin-bottom: 0.75em;
    }
    
    .adminis-video-main {
        grid-template-columns: 100% !important;
        padding: 1.875em 1.25em !important;
        margin-top: 2.5em !important;
        gap: 1.5625em !important;
        border-radius: 0.9375em !important;
        box-shadow: 1.25em 1.25em 1.875em 0 rgba(0, 0, 0, 0.10) !important;
    }
    
    .adminis-video-right {
        order: 1 !important;
    }
    
    .adminis-video-left {
        order: 2 !important;
        text-align: center;
    }
    
    .adminis-video-left h3 {
        font-size: 1.875rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.9375em;
        font-weight: 400;
    }
    
    .adminis-video-left p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.5 !important;
        margin-bottom: 1.25em;
    }
    
    .adminis-video-left .btn-all {
        margin-top: 1.25em;
    }
    
    .adminis-video-left .btn-all a {
        display: block !important;
        width: 100%;
        text-align: center;
        padding: 0.875em 1.875em;
        font-size: 0.9rem;
    }
    
    .video-wrapper2 {
        border-radius: 0.9375em !important;
        overflow: hidden;
    }
    
    .year-inner-title {
        text-align: center;
        margin-top: 2.5em !important;
        padding: 0 1.25em;
    }
    
    .year-inner-title h2 {
        font-size: 2.5rem !important;
        margin-bottom: 1.5625em !important;
        line-height: 1.15;
    }
    
    .yearbox-wrap10 {
        grid-template-columns: 100% !important;
        gap: 1.25em !important;
        margin-top: 1.5625em !important;
        padding: 0 1.25em;
    }
    
    .year-box10 {
        padding: 1.875em 1.5625em !important;
        min-height: 11.25em !important;
        border-radius: 1.5625em !important;
    }
    
    .year-inner10 {
        text-align: center;
    }
    
    .year-box10 h2 {
        font-size: 3.25rem !important; /* Scaled down for tablet */
        margin-bottom: 0.75em !important;
    }
    
    .year-box10 p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.4 !important;
    }
}
@media screen and (max-width: 30em) {
    .adminis-video-area {
        padding: 1.25em 0 !important;
    }
    
    .adminis-description-area {
        padding: 2.1875em 0 20px 0 !important; /* First: 35px top, 20px bottom */
    }
    
    .adminis-statistics-area {
        padding: 1.25em 0 !important;
    }
    
    .adminis-video-title {
        padding: 0 0.9375em;
    }
    
    .adminis-video-title span {
        font-size: 1.6rem !important;
    }
    
    .adminis-video-title h2 {
        font-size: 2rem !important;
        line-height: 1.15 !important;
        margin-bottom: 0.9375em !important;
        letter-spacing: -0.0625em;
    }
    
    .adminis-video-title p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.4 !important;
    }
    
    .adminis-video-main {
        padding: 1.5625em 0.9375em !important;
        margin-top: 1.875em !important;
        gap: 1.25em !important;
    }
    
    .adminis-video-left h3 {
        font-size: 1.625rem !important;
        margin-bottom: 0.75em;
    }
    
    .adminis-video-left p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        margin-bottom: 1.125em;
    }
    
    .adminis-video-left .btn-all a {
        padding: 0.75em 1.5625em;
        font-size: 0.85rem;
    }
    
    .year-inner-title {
        margin-top: 2.1875em !important;
        padding: 0 0.9375em;
    }
    
    .year-inner-title h2 {
        font-size: 2rem !important;
        margin-bottom: 1.25em !important;
    }
    
    .yearbox-wrap10 {
        gap: 1.125em !important;
        margin-top: 1.25em !important;
        padding: 0 0.9375em;
    }
    
    .year-box10 {
        padding: 1.5625em 1.25em !important;
        min-height: 10em !important;
        border-radius: 1.25em !important;
    }
    
    .year-box10 h2 {
        font-size: 3rem !important; /* Scaled down for mobile */
        margin-bottom: 0.625em !important;
    }
    
    .year-box10 p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.35 !important;
    }
}

@media screen and (max-width: 22.5em) {
    .adminis-video-title h2 {
        font-size: 1.75rem !important;
    }
    
    .adminis-video-main {
        padding: 1.25em 0.75em !important;
    }
    
    .adminis-video-left h3 {
        font-size: 1.5rem !important;
    }
    
    .year-inner-title h2 {
        font-size: 1.75rem !important;
    }
    
    .year-box10 h2 {
        font-size: 2.75rem !important; /* Scaled down for small mobile */
    }
}
/* ========================================
   FUNCTIONAL CAPABILITIES RESPONSIVE
   ======================================== */

@media screen and (min-width: 62em) and (max-width: 63.9375em) {
    .rating-area {
        padding: 2.1875em 0 !important;
    }
    
    .rating-title {
        text-align: center;
        padding: 0 1.875em;
    }
    
    .rating-title h2 {
        font-size: 4rem !important;
        line-height: 1.15 !important;
        letter-spacing: -0.1125em;
    }
    
    .rating-title p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        margin-top: 1.5625em;
        max-width: 43.75em;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tab-buttons3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.9375em;
        margin-top: 2.1875em !important;
        padding: 0 1.875em;
    }
    
    .tab-buttons3 a {
        font-size: 0.9375rem !important; /* 15px */
        font-weight: 600;
        padding: 0.75em 1.5em !important;
        white-space: normal !important;
        word-wrap: break-word;
        background: var(--color-secondary) !important;
        color: var(--color-white) !important;
        border: 0.125em solid var(--color-secondary) !important;
        border-radius: 3.125em !important;
        min-height: 3em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .tab-buttons3 a:hover {
        background: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
    }
    
    .tab-buttons3 a.active {
        background: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
        box-shadow: 0 0.25em 0.75em rgba(0, 82, 76, 0.4);
    }
    
    .rating-main {
        padding: 0 1.875em;
    }
    
    .rating-item-wrap {
        grid-template-columns: repeat(2, 1fr) !important;
        column-gap: 1.5625em !important;
        row-gap: 1.875em !important;
        margin-top: 3.75em !important;
        padding: 0 1.875em;
    }
    
    .rating-item {
        padding: 1.5625em 1.25em !important;
    }
    
    .rating-item img {
        width: 3.5em !important;
        height: 3.5em !important;
        max-width: 3.5em !important;
        min-width: 3.5em !important;
        min-height: 3.5em !important;
        margin-bottom: 0.9375em !important;
    }
    
    .section-title {
        font-size: 3rem !important;
    }
}
@media screen and (min-width: 48em) and (max-width: 61.9375em) {
    .rating-area {
        padding: 1.875em 0 !important;
    }
    
    .rating-title {
        text-align: center !important;
        padding: 0 1.875em;
    }
    
    .rating-title h2 {
        font-size: 3.5rem !important;
        line-height: 1.15 !important;
        letter-spacing: -0.09375em;
        margin-bottom: 0.9375em;
    }
    
    .rating-title p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        margin-top: 1.25em !important;
        line-height: 1.5;
    }
    
    .tab-buttons3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75em;
        margin-top: 1.875em !important;
        padding: 0 1.25em;
    }
    
    .tab-buttons3 a {
        font-size: 0.875rem !important; /* 14px */
        font-weight: 600;
        padding: 0.625em 1.25em !important;
        border-radius: 3.125em !important;
        white-space: normal !important;
        word-wrap: break-word;
        background: var(--color-secondary) !important;
        color: var(--color-white) !important;
        border: 0.125em solid var(--color-secondary) !important;
        min-height: 2.75em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .tab-buttons3 a:hover {
        background: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
    }
    
    .tab-buttons3 a.active {
        background: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
        box-shadow: 0 0.25em 0.75em rgba(0, 82, 76, 0.4);
    }
    
    .rating-mb {
        margin: 2.5em 0 1.875em 0;
        text-align: center;
    }
    
    .rating-mb img {
        max-width: 100%;
        height: auto;
    }
    
    .rating-main {
        padding: 0 1.25em;
    }
    
    .rating-img {
        display: none;
    }
    
    .ratimg-title {
        position: initial !important;
        margin-top: 0 !important;
        text-align: center;
        margin-bottom: 1.875em;
        max-width: 45%;
    }
    
    .section-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    .rating-item-wrap {
        grid-template-columns: repeat(2, 1fr) !important;
        column-gap: 1.25em !important;
        row-gap: 1.5625em !important;
        margin-top: 2.5em !important;
        padding: 0 1.25em;
    }
    
    .rating-item {
        padding: 1.25em 0.9375em !important;
        border-bottom: none !important;
        padding-bottom: 1.25em !important;
        text-align: center;
    }
    
    .rating-item img {
        width: 3.125em !important;
        height: 3.125em !important;
        max-width: 3.125em !important;
        min-width: 3.125em !important;
        min-height: 3.125em !important;
        object-fit: contain !important;
        object-position: center !important;
        margin: 0 auto 0.75em auto !important;
    }
}

@media screen and (max-width: 47.9375em) {
    .rating-area {
        padding: 1.5625em 0 !important;
    }
    
    .rating-title {
        text-align: center !important;
        padding: 0 1.25em;
    }
    
    .rating-title h2 {
        font-size: 2.5rem !important;
        line-height: 1.15 !important;
        letter-spacing: -0.075em;
        margin-bottom: 0.75em;
    }
    
    .rating-title p {
        font-size: 0.875rem !important;
        margin-top: 1.125em !important;
        line-height: 1.5;
    }
    
    .tab-buttons3 {
        display: flex;
        flex-direction: column;
        gap: 0.625em;
        margin-top: 1.5625em !important;
        padding: 0 1.25em;
    }
    
    .tab-buttons3 a {
        font-size: 0.9375rem !important; /* 15px */
        font-weight: 600;
        padding: 0.75em 1.125em !important;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 3.25em;
        border-radius: 3.125em !important;
        background: var(--color-secondary) !important;
        color: var(--color-white) !important;
        border: 0.125em solid var(--color-secondary) !important;
        white-space: normal !important;
        word-wrap: break-word;
        line-height: 1.3;
    }
    
    .tab-buttons3 a:hover {
        background: var(--color-primary) !important;
        color: var(--color-white) !important;
        border-color: var(--color-primary) !important;
    }
    
    .tab-buttons3 a.active {
        background: var(--color-primary) !important;
        color: var(--color-white) !important;
        border-color: var(--color-primary) !important;
        box-shadow: 0 0.25em 0.75em rgba(0, 82, 76, 0.4);
    }
    
    .rating-mb {
        margin: 1.875em 0 1.5625em 0;
        text-align: center;
        padding: 0 1.25em;
    }
    
    .rating-mb img {
        max-width: 100%;
        height: auto;
    }
    
    .rating-main {
        padding: 0 1.25em;
    }
    
    .rating-img {
        display: none !important;
    }
    
    .ratimg-title {
        position: initial !important;
        margin-top: 0 !important;
        text-align: center;
        margin-bottom: 1.5625em;
    }
    
    .section-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        letter-spacing: -0.05em;
    }
    
    .rating-item-wrap {
        grid-template-columns: 100% !important;
        column-gap: 0 !important;
        row-gap: 1.25em !important;
        margin-top: 1.875em !important;
        padding: 0 1.25em;
    }
    
    .rating-item {
        padding: 1.25em 0.9375em !important;
        border-bottom: none !important;
        padding-bottom: 1.25em !important;
        text-align: center;
    }
    
    .rating-item:last-child {
        border-bottom: none !important;
        padding-bottom: 1.25em !important;
    }
    
    .rating-item img {
        width: 3em !important;
        height: 3em !important;
        max-width: 3em !important;
        min-width: 3em !important;
        min-height: 3em !important;
        object-fit: contain !important;
        object-position: center !important;
        margin: 0 auto 0.75em auto !important;
    }
    
    .tab-content {
        margin-top: 1.25em;
    }
    
    .tab-pane {
        padding: 0;
    }
}

@media screen and (max-width: 30em) {
    .rating-area {
        padding: 1.25em 0 !important;
    }
    
    .rating-title {
        padding: 0 0.9375em;
    }
    
    .rating-title h2 {
        font-size: 2rem !important;
        line-height: 1.15 !important;
        letter-spacing: -0.0625em;
    }
    
    .rating-title p {
        font-size: 0.8125rem !important;
        margin-top: 0.9375em !important;
    }
    
    .tab-buttons3 {
        padding: 0 0.9375em;
        gap: 0.5em;
        margin-top: 1.25em !important;
    }
    
    .tab-buttons3 a {
        font-size: 0.8125rem !important; /* 13px */
        font-weight: 600;
        padding: 0.625em 1em !important;
        background: var(--color-secondary) !important;
        color: var(--color-white) !important;
        border: 0.125em solid var(--color-secondary) !important;
        border-radius: 3.125em !important;
        white-space: normal !important;
        word-wrap: break-word;
        line-height: 1.3;
        min-height: 2.5em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .tab-buttons3 a:hover {
        background: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
    }
    
    .tab-buttons3 a.active {
        background: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
        box-shadow: 0 0.25em 0.75em rgba(0, 82, 76, 0.4);
    }
    
    .rating-mb {
        margin: 1.5625em 0 1.25em 0;
        padding: 0 0.9375em;
    }
    
    .rating-main,
    .rating-item-wrap {
        padding: 0 0.9375em;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .rating-item-wrap {
        row-gap: 1.125em !important;
        margin-top: 1.5625em !important;
    }
    
    .rating-item {
        padding: 1.125em 0.75em !important;
        padding-bottom: 1.125em !important;
    }
    
    .rating-item img {
        width: 2.8125em !important;
        height: 2.8125em !important;
        max-width: 2.8125em !important;
        min-width: 2.8125em !important;
        min-height: 2.8125em !important;
        margin-bottom: 0.625em !important;
        object-fit: contain !important;
        object-position: center !important;
    }
}

@media screen and (max-width: 22.5em) {
    .rating-title h2 {
        font-size: 1.75rem !important;
    }
    
    .tab-buttons3 a {
        font-size: 0.75rem !important; /* 12px */
        font-weight: 600;
        padding: 0.5625em 0.875em !important;
        background: var(--color-secondary) !important;
        color: var(--color-white) !important;
        border: 0.125em solid var(--color-secondary) !important;
        border-radius: 3.125em !important;
        white-space: normal !important;
        word-wrap: break-word;
        line-height: 1.3;
        min-height: 2.375em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .tab-buttons3 a:hover {
        background: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
    }
    
    .tab-buttons3 a.active {
        background: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
        box-shadow: 0 0.25em 0.75em rgba(0, 82, 76, 0.4);
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 61.9375em) {
    .tab-container {
        overflow: visible;
    }
    
    .tab-buttons {
        overflow-x: visible;
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex-shrink: 1;
        min-width: auto;
    }
}

@media (max-width: 47.9375em) {
    .rating-main .rating-img .d-none.d-lg-block {
        display: none !important;
    }
    
    .rating-mb.d-block.d-lg-none {
        display: block !important;
    }
}

/* ========================================
   TIMELINE & WORKING SECTIONS RESPONSIVE
   ======================================== */

@media screen and (min-width: 62em) and (max-width: 63.9375em) {
    .timeline-area {
        padding: 2.1875em 0 !important;
    }
    
    .timeline-title {
        text-align: center;
        padding: 0 1.875em;
    }
    
    .timeline-title h2 {
        font-size: 4rem !important;
        line-height: 1.15 !important;
        margin-bottom: 1.5625em;
    }
    
    .timeline-title p {
        font-size: 1.6rem !important;
        line-height: 1.6;
        max-width: 90%;
    }
    
    .timeline-main {
        grid-template-columns: 45% 55% !important;
        column-gap: 3.75em !important;
        margin-top: 4.375em !important;
    }
    
    .timeline-left img {
        width: 100%;
        border-radius: 0.9375em;
    }
    
    .rb-item h5 {
        font-size: 1.375rem !important;
    }
    
    .rb-item h4 {
        font-size: 1.125rem !important; /* 18px */
    }
    
    .rb-item p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.5;
    }
    
    .working-with-chainthat-area {
        padding: 2.1875em 0 !important;
    }
    
    .working-with-chainthat-area:last-of-type {
        padding: 2.1875em 0 3.75em 0 !important;
    }
    
    .working-with-chainthat-title {
        text-align: center;
        padding: 0 1.875em;
        max-width: 90%;
        margin: 0 auto 3.75em auto !important;
    }
    
    .working-with-chainthat-title h2 {
        font-size: 4rem !important;
        line-height: 1.15 !important;
        margin-bottom: 1.5625em !important;
    }
    
    .working-with-chainthat-title p {
        font-size: 1.6rem !important;
        line-height: 1.6 !important;
    }
    
    .working-with-chainthat-main {
        margin-top: 3.125em;
    }
    
    .working-with-chainthat-img img {
        border-radius: 0.75em;
    }
    
    .working-with-chainthat-item img {
        width: 100%;
        height: auto;
        border-radius: 0.9375em;
    }
    
    .working-with-chainthat-cnt {
        padding: 0 !important;
    }
    
    .working-with-chainthat-cnt h4 {
        font-size: 2rem !important;
        line-height: 1.3;
        margin-bottom: 1em;
        color: var(--color-secondary);
    }
    
    .working-with-chainthat-cnt p {
        font-size: 1.6rem !important; /* 16px - consistent body text */
        line-height: 1.7;
        margin-bottom: 1.5em;
    }
    
    .working-with-chainthat-main .row {
        margin-bottom: 3em !important;
        min-height: auto !important;
    }
    
    .working-with-chainthat-btn a {
        padding: 0.875em 2.1875em;
    }
    
    .tndus-btm {
        margin-top: 3.75em !important;
    }
}
@media screen and (min-width: 48em) and (max-width: 61.9375em) {
    .timeline-area {
        padding: 1.875em 0 !important;
    }
    
    .timeline-title {
        text-align: center !important;
        padding: 0 1.875em;
    }
    
    .timeline-title h2 {
        font-size: 3.5rem !important;
        line-height: 1.15 !important;
        margin-bottom: 1.25em;
    }
    
    .timeline-title p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.5 !important;
        max-width: 95%;
        margin: 0 auto;
    }
    
    .timeline-main {
        grid-template-columns: 100% !important;
        column-gap: 0 !important;
        row-gap: 2.5em !important;
        margin-top: 3.125em !important;
    }
    
    .timeline-left {
        order: 1;
        padding: 0 1.25em;
    }
    
    .timeline-left img {
        width: 100%;
        border-radius: 0.9375em;
    }
    
    .timeline-right {
        order: 2;
    }
    
    .rb-container {
        padding: 0 1.25em;
    }
    
    .rb-item h5 {
        font-size: 1.25rem !important;
        margin-bottom: 0.625em;
    }
    
    .rb-item h4 {
        font-size: 1.125rem !important; /* 18px */
        margin-bottom: 0.625em;
    }
    
    .rb-item p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.5 !important;
    }
    
    .working-with-chainthat-area {
        padding: 5em 0 3.75em 0 !important;
    }
    
    .working-with-chainthat-title {
        text-align: center !important;
        padding: 0 1.875em;
        max-width: 95%;
        margin: 0 auto 3.125em auto !important;
    }
    
    .working-with-chainthat-title h2 {
        font-size: 3.5rem !important;
        line-height: 1.15 !important;
        margin-bottom: 1.25em !important;
        letter-spacing: -0.09375em;
    }
    
    .working-with-chainthat-title p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.5 !important;
    }
    
    .working-with-chainthat-main {
        margin-top: 2.5em;
    }
    
    .working-with-chainthat-img img {
        border-radius: 0.75em;
    }
    
    .working-with-chainthat-item img {
        width: 100%;
        height: auto;
        border-radius: 0.9375em;
    }
    
    .working-with-chainthat-cnt {
        text-align: center;
        padding: 1.25em;
    }
    
    .working-with-chainthat-cnt h4 {
        font-size: 1.875rem !important;
        line-height: 1.3;
        margin-bottom: 1.125em;
        color: var(--color-secondary);
    }
    
    .working-with-chainthat-cnt p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.5 !important;
        margin-bottom: 1.25em;
    }
    
    .working-with-chainthat-btn {
        text-align: center;
    }
    
    .working-with-chainthat-btn a {
        display: inline-block;
        padding: 0.875em 2.5em;
    }
    
    .tndus-btm {
        margin-top: 3.125em !important;
        padding: 0 1.875em;
    }
    
    .tndus-btm ul {
        display: flex;
        flex-direction: column;
        gap: 0.9375em;
    }
    
    .tndus-btm ul li {
        width: 100%;
    }
    
    .tndus-btm .btn-all a {
        display: block;
        text-align: center;
        background: var(--color-secondary); /* Orange background */
    }
    
    .tndus-btm .btn-all a:hover {
        background: var(--color-primary); /* Green on hover */
    }
}
@media screen and (max-width: 47.9375em) {
    .timeline-area {
        padding: 3.75em 0 3.125em 0 !important;
    }
    
    .timeline-title {
        text-align: center !important;
        padding: 0 1.25em;
    }
    
    .timeline-title h2 {
        font-size: 2.5rem !important;
        line-height: 1.15 !important;
        margin-bottom: 1.125em;
        letter-spacing: -0.075em;
    }
    
    .timeline-title p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.5 !important;
        max-width: 100%;
    }
    
    .timeline-main {
        grid-template-columns: 100% !important;
        column-gap: 0 !important;
        row-gap: 2.1875em !important;
        margin-top: 2.5em !important;
    }
    
    .timeline-left {
        order: 1;
        padding: 0 1.25em;
    }
    
    .timeline-left img {
        width: 100%;
        border-radius: 0.75em;
    }
    
    .timeline-right {
        order: 2;
    }
    
    .timeline-right .container {
        padding: 0 1.25em;
    }
    
    .rb-container {
        padding: 0;
    }
    
    .rb-item {
        margin-bottom: 1.5625em !important;
    }
    
    .rb-item h5 {
        font-size: 1.125rem !important;
        margin-bottom: 0.5em;
        line-height: 1.3;
    }
    
    .rb-item h4 {
        font-size: 1.6rem !important; /* 16px for mobile */
        margin-bottom: 0.5em;
        line-height: 1.3;
    }
    
    .rb-item p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.5 !important;
    }
    
    .rb-item p br {
        display: none;
    }
    
    .working-with-chainthat-area {
        padding: 3.75em 0 3.125em 0 !important;
    }
    
    .working-with-chainthat-title {
        text-align: center !important;
        padding: 0 1.25em;
        max-width: 100%;
        margin: 0 auto 2.5em auto !important;
    }
    
    .working-with-chainthat-title h2 {
        font-size: 2.5rem !important;
        line-height: 1.15 !important;
        margin-bottom: 1.125em !important;
        letter-spacing: -0.075em;
    }
    
    .working-with-chainthat-title p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .working-with-chainthat-main {
        margin-top: 2.1875em;
    }
    
    .working-with-chainthat-img img {
        border-radius: 0.625em;
    }
    
    .working-with-chainthat-item img {
        width: 100%;
        height: auto;
        border-radius: 0.75em;
    }
    
    .working-with-chainthat-cnt {
        text-align: center;
        padding: 0.9375em 0.625em;
    }
    
    .working-with-chainthat-cnt h4 {
        font-size: 1.5rem !important;
        line-height: 1.3;
        margin-bottom: 0.9375em;
        color: var(--color-secondary);
    }
    
    .working-with-chainthat-cnt p {
        font-size: 1.6rem !important; /* 16px - consistent with mobile standards */
        line-height: 1.7 !important;
        margin-bottom: 1.5em;
    }
    
    .working-with-chainthat-btn {
        text-align: center;
        margin-top: 1.25em;
    }
    
    .working-with-chainthat-btn a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.875em 1.875em;
        font-size: 0.9rem;
    }
    
    .tndus-btm.d-none.d-lg-block {
        display: none !important;
    }
}

@media screen and (max-width: 30em) {
    .timeline-area {
        padding: 3.125em 0 2.5em 0 !important;
    }
    
    .timeline-title {
        padding: 0 0.9375em;
    }
    
    .timeline-title h2 {
        font-size: 2rem !important;
        line-height: 1.15 !important;
        margin-bottom: 0.9375em;
        letter-spacing: -0.0625em;
    }
    
    .timeline-title p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.45 !important;
    }
    
    .timeline-main {
        row-gap: 1.875em !important;
        margin-top: 2.1875em !important;
    }
    
    .timeline-left {
        padding: 0 0.9375em;
    }
    
    .timeline-right .container {
        padding: 0 0.9375em;
    }
    
    .rb-item {
        margin-bottom: 1.25em !important;
    }
    
    .rb-item h5 {
        font-size: 1.0625rem !important;
    }

    .rb-item h4 {
        font-size: 0.9375rem !important; /* 15px for smallest mobile */
    }
    
    .rb-item p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
    }
    
    .working-with-chainthat-area {
        padding: 3.125em 0 2.5em 0 !important;
    }
    
    .working-with-chainthat-title {
        padding: 0 0.9375em;
        margin-bottom: 2.1875em !important;
    }
    
    .working-with-chainthat-title h2 {
        font-size: 2rem !important;
        line-height: 1.15 !important;
        margin-bottom: 0.9375em !important;
        letter-spacing: -0.0625em;
    }
    
    .working-with-chainthat-title p {
        font-size: 0.8125rem !important;
        line-height: 1.45 !important;
    }
    
    .working-with-chainthat-main {
        row-gap: 1.5625em !important;
        margin-top: 1.875em;
        padding: 0 0.9375em;
    }
    
    .working-with-chainthat-cnt {
        padding: 0.625em 0.3125em;
    }
    
    .working-with-chainthat-cnt h4 {
        font-size: 1.375rem !important;
        margin-bottom: 0.75em;
        color: var(--color-secondary);
    }
    
    .working-with-chainthat-cnt p {
        font-size: 1.6rem !important; /* 16px - consistent with mobile standards */
        line-height: 1.65 !important;
        margin-bottom: 1.125em;
    }
    
    .working-with-chainthat-btn a {
        padding: 0.75em 1.5625em;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 22.5em) {
    .timeline-title h2,
    .working-with-chainthat-title h2 {
        font-size: 1.75rem !important;
    }
    
    .working-with-chainthat-cnt h4 {
        font-size: 1.25rem !important;
        color: var(--color-secondary);
    }
}

@media (max-width: 61.9375em) {
    /* Container padding handled by consolidated container system at top */
    /* .timeline-area .container and .working-with-chainthat-area .container use 10% padding */
}

/* ========================================
   TABLET LANDSCAPE COMPREHENSIVE FIX
 62em - 64em
   ======================================== */

@media screen and (min-width: 62em) and (max-width: 64em) {
    body {
        font-size: 1rem;
        overflow-x: hidden;
    }
    
    .container {
        max-width: 60em;
        padding-left: 1.25em;
        padding-right: 1.25em;
    }
    
    * {
        box-sizing: border-box;
    }
    
    .benefit-card {
        padding: 20px 15px !important;
        margin-bottom: 1.875em;
    }
    
    .benefit-card h4 {
        font-size: 1.8rem !important; /* 18px */
        margin-bottom: 15px;
    }
    
    .benefit-card p {
        font-size: 1.5rem !important; /* 15px */
        line-height: 1.6;
    }
    
    .ipsum-area10 {
        padding: 6.25em 0 !important;
    }
    
    .industry-area {
        padding: 6.25em 0 !important;
    }
    
    .industry-title h2 {
        font-size: 4rem !important;
        line-height: 1.15 !important;
    }
    
    .industry-main {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        column-gap: 1.875em !important;
        row-gap: 2.5em !important;
    }
    
    .ipsum-item-wrap {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(17.5em, 1fr)) !important;
        gap: 1.875em !important;
        margin-top: 2.5em !important;
    }
    
    .ipsum-item h4 {
        font-size: 1.5rem !important;
    }
    
    .ipsum-item p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.6;
    }
    
    .btn-all a {
        padding: 0.875em 2.1875em;
        font-size: 1rem;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .video-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .tab-container {
        overflow: visible;
    }
    
    .tab-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75em;
    }
    
    .row {
        margin-left: -0.9375em;
        margin-right: -0.9375em;
    }
    
    [class*="col-"] {
        padding-left: 0.9375em;
        padding-right: 0.9375em;
    }
    
    section {
        overflow: hidden;
    }
    
    .container-fluid {
        padding-left: 1.25em;
        padding-right: 1.25em;
    }
    
    h1 {
        font-size: 3.5rem !important;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 3rem !important;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 2.25rem !important;
        line-height: 1.3;
    }
    
    h4 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* ============================================
   CAREERS PAGE - CUSTOM STYLES
   ============================================ */

/* Centered Testimonials Section */
.careers-testimonials-area {
    padding: 6.25em 0;
    background: #F8F9FA;
}

.careers-testimonials-wrap {
    max-width: 56.25em;
    margin: 0 auto;
}

.careers-testimonial-item {
    text-align: center;
    padding: 3.75em 2.5em;
    background: var(--color-white);
    border-radius: 1.875em;
    box-shadow: 0 0.625em 2.5em rgba(0, 82, 76, 0.08);
    border: 0.125em solid transparent;
    background-clip: padding-box;
    position: relative;
}

.careers-testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.875em;
    padding: 0.125em;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 50%, var(--color-primary) 100%);
    -webkit-mask: linear-gradient(var(--color-white) 0 0) content-box, linear-gradient(var(--color-white) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.careers-quote-icon {
    margin-bottom: 1.875em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.careers-quote-icon img {
    width: 2.9375em !important;
    height: 2.4375em;
}

.careers-quote-icon svg {
    width: 2.9375em;
    height: 2.4375em;
}

.careers-testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-primary);
    margin-bottom: 2.5em;
    font-weight: 400;
}

.careers-testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9375em;
}

.careers-author-icon {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.careers-author-icon img,
.careers-author-icon svg {
    width: 3em;
    height: 3em;
    object-fit: cover;
}

.careers-author-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.careers-author-position {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    margin: 0;
}

@media (max-width: 47.9375em) {
    .careers-testimonials-area {
        padding: 3.75em 0;
    }
    
    .careers-testimonial-item {
        padding: 2.5em 1.25em;
    }
    
    .careers-testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.875em;
    }
    
    .careers-author-icon {
        width: 3.75em;
        height: 3.75em;
    }
    
    .careers-author-name {
        font-size: 1.25rem;
    }
    
    .careers-author-position {
        font-size: 0.875rem;
    }
}

/* Vacancies Grid Section */
.careers-vacancies-grid {
    padding: 3.25em 0;
    background: var(--color-white);
}

.careers-vacancies-grid .vacancies-title {
    margin-bottom: 3.75em;
}

.careers-vacancies-grid .vacancies-title h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Career Page Vacancies - Card Grid Design */
.vacancies-grid-main {
    display: block;
}

.vacancy-card-wrapper {
    margin-bottom: 1.875em;
}

.vacancies-card {
    background: var(--color-white);
    border: 0.0625em solid var(--color-gray-200);
    border-radius: 1.25em;
    padding: 2.5em 1.875em;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 0.25em 1.25em rgba(0, 82, 76, 0.05);
    position: relative;
    overflow: hidden;
}

.vacancies-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.25em;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.vacancies-card:hover {
    transform: translateY(-0.3125em);
    box-shadow: 0 0.625em 2.5em rgba(0, 82, 76, 0.12);
    border-color: var(--color-secondary);
}

.vacancies-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25em;
    gap: 0.625em;
    flex-wrap: wrap;
}

.vacancies-date {
    display: inline-block;
    background: #FEF3E7;
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.375em 1em;
    border-radius: 1.25em;
}

.vacancies-location {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.375em 1em;
    border-radius: 1.25em;
    font-size: 0.875rem;
    font-weight: 600;
}

.vacancies-job-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.9375em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.vacancies-card:hover .vacancies-job-title {
    color: var(--color-secondary);
}
.vacancies-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5625em;
    flex-grow: 1;
}

.vacancies-card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75em;
    margin-top: auto;
    padding-top: 1.25em;
    border-top: 0.0625em solid var(--color-gray-200);
}

.vacancies-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    transition: all 0.3s ease;
}

.vacancies-link:hover {
    color: var(--color-secondary);
    gap: 0.75em;
}

.vacancies-link::after {
    content: '→';
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.vacancies-link:hover::after {
    transform: translateX(0.25em);
}

.vacancies-link-linkedin {
    color: #0077B5;
    font-size: 0.9375rem;
}

.vacancies-link-linkedin::after {
    content: '→';
}

.vacancies-link-linkedin:hover {
    color: #005582;
}

.vacancies-pagination {
    margin-top: 3.75em;
    display: flex;
    justify-content: center;
    gap: 1.25em;
}

.vacancies-prev,
.vacancies-next {
    background: var(--color-white);
    border: 0.125em solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
    padding: 0.75em 1.875em;
    border-radius: 1.875em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vacancies-prev:hover,
.vacancies-next:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.vacancies-view-all {
    background: var(--color-secondary);
    border: 0.125em solid var(--color-secondary);
    color: var(--color-white);
    font-weight: 600;
    padding: 0.75em 1.875em;
    border-radius: 1.875em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
}

.vacancies-view-all:hover {
    background: var(--color-white);
    color: var(--color-secondary);
    text-decoration: none;
}

@media (max-width: 61.9375em) {
    .careers-vacancies-grid {
        padding: 3.75em 0;
    }
    
    .careers-vacancies-grid .vacancies-title h2 {
        font-size: 2.5rem;
    }
    
    .vacancies-card {
        padding: 1.5625em;
    }
    
    .vacancies-job-title {
        font-size: 1.25rem;
    }
}
@media (max-width: 47.9375em) {
    .careers-vacancies-grid .vacancies-title h2 {
        font-size: 2rem;
    }
    
    .careers-vacancies-grid .vacancies-title {
        margin-bottom: 2.5em;
    }
    
    .vacancies-card {
        padding: 1.25em;
    }
    
    .vacancies-date {
        font-size: 0.75rem;
        padding: 0.25em 0.75em;
    }
    
    .vacancies-pagination {
        flex-wrap: wrap;
        gap: 0.625em;
    }
    
    .vacancies-prev,
    .vacancies-next,
    .vacancies-view-all {
        padding: 0.625em 1.25em;
        font-size: 0.875rem;
    }
    
    .vacancies-page-info {
        width: 100%;
        order: -1;
        margin-bottom: 0.625em;
    }
    
    .vacancies-job-title {
        font-size: 1.125rem;
    }
    
    .vacancies-description {
        font-size: 0.875rem;
    }
}

/* Continuous Scrolling Image Slider - Full Width Stretch */
.careers-image-scroll-wrapper {
    overflow: hidden;
    padding: 3em 0 !important;
    background: var(--color-white);
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.careers-image-scroll {
    width: 100%;
    overflow: hidden;
}

.careers-image-scroll-track {
    display: flex;
    gap: 1.875em;
    animation: scroll-continuous 30s linear infinite;
    width: fit-content;
    padding-left: 1.875em;
}

.careers-scroll-item {
    flex-shrink: 0;
    width: 25em;
    height: 15.625em;
    border-radius: 1.25em;
    overflow: hidden;
    box-shadow: 0 0.25em 1.25em rgba(0, 82, 76, 0.1);
}

.careers-scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll-continuous {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.careers-image-scroll-wrapper:hover .careers-image-scroll-track {
    animation-play-state: paused;
}

@media (max-width: 61.9375em) {
    .careers-scroll-item {
        width: 18.75em;
        height: 12.5em;
    }
    
    .careers-image-scroll-track {
        gap: 1.25em;
        animation-duration: 25s;
    }
}

@media (max-width: 47.9375em) {
    .careers-image-scroll-wrapper {
        padding: 2.5em 0;
    }
    
    .careers-scroll-item {
        width: 15.625em;
        height: 10em;
    }
    
    .careers-image-scroll-track {
        gap: 0.9375em;
        animation-duration: 20s;
    }
}

/* Vacancies Page Info Style */
.vacancies-page-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    padding: 0 1.25em;
}

.vacancies-page-info .current-page {
    font-size: 1.125rem;
    color: var(--color-secondary);
}

.vacancies-page-info .total-pages {
    color: #666;
}

.vacancies-prev:disabled,
.vacancies-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vacancies-prev:disabled:hover,
.vacancies-next:disabled:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* ========================================
   CONTACT FORM 7 STYLING
   Match existing tuch-area form design
   ======================================== */

/* CF7 Form Wrapper */
.cf7-form-wrapper {
    max-width: 61.5em;
    margin: 2.5em auto 0;
}

/* CF7 Form Container */
.cf7-form-wrapper .wpcf7-form {
    display: block;
}

/* Remove default CF7 paragraph margins */
.cf7-form-wrapper .wpcf7-form p {
    margin: 0;
}

/* Ensure the grid layout works properly */
.cf7-form-wrapper .tuch-input-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25em;
    row-gap: 1.875em;
}

.cf7-form-wrapper .tuch-input {
    position: relative;
}

.cf7-form-wrapper .tuch-textarea {
    margin-top: 1.875em;
}

.cf7-form-wrapper .tuch-checkbox {
    margin-top: 1.875em;
}

.cf7-form-wrapper .tuch-submit {
    text-align: center;
}

/* CF7 Input Fields */
.cf7-form-wrapper .wpcf7-form-control-wrap {
    display: block;
    position: relative;
}

/* Match the exact input styling from tuch-area */
.cf7-form-wrapper .tuch-input input[type="text"],
.cf7-form-wrapper .tuch-input input[type="email"],
.cf7-form-wrapper .tuch-input input[type="tel"],
.cf7-form-wrapper input[type="text"],
.cf7-form-wrapper input[type="email"],
.cf7-form-wrapper input[type="tel"],
.cf7-form-wrapper input[type="url"],
.cf7-form-wrapper input[type="number"],
.cf7-form-wrapper input[type="date"],
.cf7-form-wrapper select {
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    color: var(--color-primary);
    width: 100%;
    border-radius: 0.625em;
    padding: 1.5625em 1.875em;
    outline: none;
    border: 0.0625em solid transparent;
    background: linear-gradient(var(--color-white), var(--color-white)) padding-box, 
                linear-gradient(-58deg, var(--color-primary) 5.42%, var(--color-accent) 46.31%, var(--color-secondary) 88.04%) border-box;
    font-family: inherit;
}

/* Textarea styling */
.cf7-form-wrapper .tuch-textarea textarea,
.cf7-form-wrapper textarea {
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    color: var(--color-primary);
    width: 100%;
    padding: 1.875em;
    border-radius: 0.625em;
    outline: none;
    border: 0.0625em solid transparent;
    background: linear-gradient(var(--color-white), var(--color-white)) padding-box, 
                linear-gradient(-58deg, var(--color-primary) 5.42%, var(--color-accent) 46.31%, var(--color-secondary) 88.04%) border-box;
    font-family: inherit;
    resize: vertical;
}

/* Placeholder styling */
.cf7-form-wrapper input::placeholder,
.cf7-form-wrapper textarea::placeholder {
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    color: var(--color-primary);
    opacity: 1;
}

/* Labels - Match tuch-input-title h4 style */
.cf7-form-wrapper .tuch-input-title h4 {
    font-weight: 600;
    font-size: 1.5rem; /* 24px */
    color: var(--color-primary);
    display: inline-block;
    background: var(--color-white);
    position: relative;
    top: 1.25em;
    padding: 0 0.25em;
    left: 0em;
    z-index: 1;
    margin: 0;
}

/* CF7 Checkbox Acceptance - Match tuch-checkbox style */
.cf7-form-wrapper .tuch-checkbox .checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.625em;
}

.cf7-form-wrapper .tuch-checkbox .checkbox label {
    display: flex;
    align-items: center;
    gap: 0.625em;
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-primary);
    position: static;
    background: transparent;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
}

.cf7-form-wrapper .checkbox label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cf7-form-wrapper .wpcf7-list-item {
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.cf7-form-wrapper input[type="checkbox"],
.cf7-form-wrapper .tuch-checkbox input[type="checkbox"] {
    appearance: none;
    height: 1.5625em;
    width: 1.5625em;
    min-width: 1.5625em;
    border-radius: 0.3125em;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.125em solid var(--color-secondary);
    margin: 0;
    padding: 0;
    background: var(--color-white);
}

.cf7-form-wrapper input[type="checkbox"]:checked::after,
.cf7-form-wrapper .tuch-checkbox input[type="checkbox"]:checked::after {
    content: "\2713";
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.8rem;
}

.cf7-form-wrapper .wpcf7-list-item-label {
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-primary);
    display: inline;
    position: static;
    background: transparent;
    padding: 0;
    margin: 0 0 0 0.625em;
    top: 0;
    left: 0;
}

/* CF7 Submit Button - Exact match to tuch-submit button */
.cf7-form-wrapper .tuch-submit input[type="submit"],
.cf7-form-wrapper .tuch-submit button[type="submit"],
.cf7-form-wrapper input[type="submit"],
.cf7-form-wrapper button[type="submit"] {
    font-weight: 700;
    font-size: 0.8125rem; /* 13px */
    letter-spacing: 0.024375em;
    text-transform: uppercase;
    border-radius: 2.5em;
    background: var(--color-secondary);
    padding: 0.9375em 2.25em;
    display: inline-block;
    color: var(--color-white) !important;
    transition: 0.2s all ease;
    border: none;
    margin-top: 2.5em;
    cursor: pointer;
    font-family: inherit;
}

.cf7-form-wrapper .tuch-submit input[type="submit"]:hover,
.cf7-form-wrapper .tuch-submit button[type="submit"]:hover,
.cf7-form-wrapper input[type="submit"]:hover,
.cf7-form-wrapper button[type="submit"]:hover {
    background: var(--color-primary);
}

/* CF7 Submit Button - Contact Page */
.contact-area .tuch-submit input[type="submit"],
.contact-area .tuch-submit .wpcf7-submit,
.tuch-form .wpcf7-submit {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0;
  border-radius: 2.5em;
  background: var(--color-secondary);
  padding: 0.9375em 2.25em;
  display: inline-block;
  color: var(--color-white) !important;
  border: none;
  cursor: pointer;
  transition: 0.2s all 
ease;
  text-transform: uppercase;
  margin-top: 2em;
}

.contact-area .tuch-submit input[type="submit"]:hover,
.contact-area .tuch-submit .wpcf7-submit:hover,
.tuch-form .wpcf7-submit:hover {
    background: var(--color-primary);
    color: var(--color-white) !important;
}

.contact-area .tuch-submit input[type="submit"]:disabled,
.contact-area .tuch-submit .wpcf7-submit:disabled,
.tuch-form .wpcf7-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Remove default CF7 paragraph margin */
.tuch-submit p {
    margin: 0;
}

/* CF7 Spinner positioning */
.tuch-submit .wpcf7-spinner {
    margin-left: 1em;
    vertical-align: middle;
}

/* CF7 Form Inputs - Contact Page */
.contact-area .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-area .wpcf7-text,
.contact-area .wpcf7-email,
.contact-area .wpcf7-tel,
.contact-area .wpcf7-textarea {
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    color: var(--color-primary);
    width: 100%;
    border-radius: 0.625em;
    padding: 1.5625em 1.875em;
    outline: none;
    border: 0.0625em solid transparent;
    background: linear-gradient(var(--color-white), var(--color-white)) padding-box, linear-gradient(-58deg, var(--color-primary) 5.42%, var(--color-accent) 46.31%, var(--color-secondary) 88.04%) border-box;
}

.contact-area .wpcf7-text::placeholder,
.contact-area .wpcf7-email::placeholder,
.contact-area .wpcf7-tel::placeholder,
.contact-area .wpcf7-textarea::placeholder {
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    color: var(--color-primary);
}

.contact-area .wpcf7-text:focus,
.contact-area .wpcf7-email:focus,
.contact-area .wpcf7-tel:focus,
.contact-area .wpcf7-textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

/* CF7 Validation & Error Messages */
.cf7-form-wrapper .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.3125em;
    display: block;
}

.cf7-form-wrapper .wpcf7-validation-errors,
.cf7-form-wrapper .wpcf7-acceptance-missing {
    border: 0.125em solid #dc3545;
    background: #f8d7da;
    color: #721c24;
    padding: 0.9375em 1.25em;
    border-radius: 0.625em;
    margin-top: 1.25em;
}

.cf7-form-wrapper .wpcf7-mail-sent-ok {
    border: 0.125em solid #28a745;
    background: #d4edda;
    color: #155724;
    padding: 0.9375em 1.25em;
    border-radius: 0.625em;
    margin-top: 1.25em;
}

.cf7-form-wrapper .wpcf7-spam-blocked {
    border: 0.125em solid #ffc107;
    background: var(--color-white)3cd;
    color: #856404;
    padding: 0.9375em 1.25em;
    border-radius: 0.625em;
    margin-top: 1.25em;
}

/* CF7 Spinner */
.cf7-form-wrapper .wpcf7-spinner {
    margin: 0 0.625em;
}

/* CF7 Form - Center Submit Button */
.cf7-form-wrapper .wpcf7-submit-wrap {
    text-align: center;
    display: block;
}

/* CF7 Input Focus States */
.cf7-form-wrapper input:focus,
.cf7-form-wrapper textarea:focus,
.cf7-form-wrapper select:focus {
    outline: none;
    box-shadow: 0 0 0 0.1875em rgba(235, 121, 35, 0.1);
}

/* CF7 Invalid Field Highlight */
.cf7-form-wrapper .wpcf7-not-valid {
    border-color: #dc3545 !important;
}

/* Responsive CF7 Styling */
@media screen and (max-width: 47.9375em) {
    .cf7-form-wrapper .tuch-input-flex {
        grid-template-columns: 1fr;
        row-gap: 1.875em;
    }
    
    .cf7-form-wrapper .tuch-input input[type="text"],
    .cf7-form-wrapper .tuch-input input[type="email"],
    .cf7-form-wrapper .tuch-input input[type="tel"],
    .cf7-form-wrapper input[type="text"],
    .cf7-form-wrapper input[type="email"],
    .cf7-form-wrapper input[type="tel"],
    .cf7-form-wrapper textarea {
        font-size: 1rem;
        padding: 1.25em 1.5625em;
    }
    
    .cf7-form-wrapper .tuch-input-title h4 {
        font-size: 1.25rem;
        left: 1.25em;
    }
    
    .cf7-form-wrapper .tuch-submit input[type="submit"],
    .cf7-form-wrapper .tuch-submit button[type="submit"],
    .cf7-form-wrapper input[type="submit"],
    .cf7-form-wrapper button[type="submit"] {
        width: 100%;
        padding: 1.125em 2.25em;
    }
}

/* ========================================
   JOB DETAIL PAGE STYLES
   ======================================== */

/* Job Hero Section */
.job-hero {
    background: var(--color-white);
    padding: 7.5em 0 5em;
}

.job-main {
    max-width: 56.25em;
    margin: 0 auto;
    text-align: center;
}

.job-main span {
    font-weight: 500;
    font-size: 1.6rem; /* 14px */
    color: var(--color-secondary);
    display: block;
}

.job-main h2 {
    font-weight: 700;
    font-size: 4.375rem; /* 70px */
    color: var(--color-primary);
    line-height: 1.15;
}

.job-main > p {
    font-weight: 400;
    font-size: 1.6rem; /* 18px */
    line-height: 1.7;
    color: var(--color-primary);
    margin-bottom: 2.5em;
}

.job-main ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.875em;
    margin: 0;
    padding: 0;
    list-style: none;
}

.job-main ul li {
    margin: 0;
}

.job-btn10 a {
    font-weight: 700;
    font-size: 1.6rem; /* 13px */
    letter-spacing: 0.024375em;
    text-transform: uppercase;
    border-radius: 2.5em;
    background: var(--color-secondary);
    padding: 0.9375em 2.25em;
    display: inline-block;
    color: var(--color-white);
    transition: 0.2s all ease;
    text-decoration: none;
}

.job-btn10 a:hover {
    background: var(--color-primary);
}

.job-main ul li > div > a {
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 0.625em;
    transition: 0.2s all ease;
    text-decoration: none;
}

.job-main ul li > div > a:hover {
    color: var(--color-secondary);
}

.job-main ul li > div > a span img {
    width: 1.25em;
    height: auto;
}

/* Job File/Content Area */
.job-file-area {
    background: var(--color-white);
    padding: 5em 0;
}

.jobfile-main {
    max-width: 62.5em;
    margin: 0 auto;
}

.jobfile-cnt {
    margin-bottom: 3.75em;
}

.jobfile-cnt:last-child {
    margin-bottom: 0;
}

.jobfile-cnt h3 {
    font-weight: 700;
    font-size: 2.5rem; /* 40px */
    color: var(--color-primary);
    margin-bottom: 1.25em;
}

.jobfile-cnt p {
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 1.7;
    color: var(--color-primary);
    margin-bottom: 1.25em;
}

.jobfile-cnt ul {
    list-style: none;
    padding: 0;
    margin: 1.875em 0 0;
}

.jobfile-cnt ul li {
    display: list-item;
    align-items: flex-start;
    gap: 0.9375em;
    margin-bottom: 1.25em;
}

.jobfile-cnt ul li:last-child {
    margin-bottom: 0;
}

.jobfile-cnt ul li span {
    flex-shrink: 0;
    padding-top: 0.3125em;
}

.jobfile-cnt ul li .dot {
    width: 0.375em; /* 6px - consistent bullet size */
    height: 0.375em;
    border-radius: 50%;
    background: var(--color-secondary);
    margin-top: 0.625em;
}

.jobfile-cnt ul li p {
    margin: 0;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-primary);
}

/* Job Description WYSIWYG Content Styling */
.job-description-content {
    color: var(--color-primary);
    line-height: 1.7;
}

.job-description-content h1,
.job-description-content h2,
.job-description-content h3,
.job-description-content h4,
.job-description-content h5,
.job-description-content h6 {
    color: var(--color-primary);
    margin-bottom: 0.75em;
    margin-top: 1.5em;
    font-weight: 700;
}

.job-description-content h1 {
    font-size: 2.5rem;
}

.job-description-content h2 {
    font-size: 2rem;
}

.job-description-content h3 {
    font-size: 1.75rem;
}

.job-description-content h4 {
    font-size: 1.5rem;
}

.job-description-content p {
    margin-bottom: 1.25em;
    font-size: 1.6rem;
    line-height: 1.7;
}

.job-description-content ul,
.job-description-content ol {
    margin: 1.25em 0;
    padding-left: 2em;
    list-style: disc;
}

.job-description-content ul li,
.job-description-content ol li {
    margin-bottom: 0.75em;
    line-height: 1.7;
}

.job-description-content strong {
    font-weight: 700;
}

.job-description-content a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.job-description-content a:hover {
    color: var(--color-secondary-dark);
}

.job-description-content blockquote {
    border-left: 0.25em solid var(--color-secondary);
    padding-left: 1.5em;
    margin: 1.5em 0;
    font-style: italic;
    color: var(--color-gray-700);
}

/* File Upload / Application Section */
.inner-file-wrapper {
    background: #F8F9FA;
    padding: 6.25em 0;
    position: relative;
}

.jobfile-box {
    max-width: 50em;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 1.875em;
    padding: 3.75em 3.125em;
    box-shadow: 0 0.625em 2.5em rgba(0, 82, 76, 0.08);
}

.jobfile-box h2 {
    font-weight: 700;
    font-size: 5rem; /* 40px */
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 0.5em;
}

.pdf-wrap {
    display: block;
    cursor: pointer;
}

.file-uplode {
    border: 0.125em dashed #E0E0E0;
    border-radius: 1.25em;
    padding: 3.75em 2.5em;
    text-align: center;
    transition: 0.3s all ease;
}

.file-uplode:hover {
    border-color: var(--color-secondary);
    background: rgba(235, 121, 35, 0.02);
}

.file-img {
    margin-bottom: 1.25em;
}

.file-img img {
    width: 3.75em;
    height: auto;
}
.file-uplode h4 {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 0.625em;
}

.file-uplode h4 a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.file-uplode p {
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin: 0;
}

.pdf-upload {
    margin-top: 1.875em;
}

.pdf-upload h4 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.9375em;
}

.pdf-box {
    background: #F8F9FA;
    border-radius: 0.625em;
    padding: 1.25em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9375em;
}

.pdf-box h6 {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--color-primary);
    margin: 0;
}

.pdf-box img {
    width: 1.25em;
    height: 1.25em;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s all ease;
}

.pdf-box img:hover {
    opacity: 1;
}

.file-submit {
    text-align: center;
    margin-top: 2.5em;
}

.file-submit button {
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.024375em;
    text-transform: uppercase;
    border-radius: 2.5em;
    background: var(--color-secondary);
    padding: 1.125em 3.125em;
    color: var(--color-white);
    border: none;
    cursor: pointer;
    transition: 0.2s all ease;
}

.file-submit button:hover {
    background: var(--color-primary);
}

.view-btn {
    margin-top: 2.5em;
}

.view-btn a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.625em;
    transition: 0.2s all ease;
    text-decoration: none;
}

.view-btn a:hover {
    color: var(--color-secondary);
}

.view-btn a span img {
    width: 1.25em;
    height: auto;
}

/* CF7 Job Application Wrapper */
.cf7-job-application-wrapper .cf7-form-wrapper {
    margin-top: 0;
}


/* Responsive Styles */
@media screen and (max-width: 61.9375em) {
    .job-main h2 {
        font-size: 3rem;
    }
    
    .jobfile-cnt h3 {
        font-size: 2rem;
    }
    
    .jobfile-box {
        padding: 2.5em 1.875em;
    }
}

@media screen and (max-width: 47.9375em) {
    .job-hero {
        padding: 5em 0 3.75em;
    }
    
    .job-main h2 {
        font-size: 2.25rem;
        letter-spacing: -0.0625em;
    }
    
    .job-main ul {
        flex-direction: column;
        gap: 1.25em;
    }
    
    .job-main ul li {
        width: 100%;
    }
    
    .job-btn10 a {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .job-file-area {
        padding: 3.75em 0;
    }
    
    .jobfile-cnt {
        margin-bottom: 2.5em;
    }
    
    .jobfile-cnt h3 {
        font-size: 1.75rem;
    }
    
    .jobfile-cnt p,
    .jobfile-cnt ul li p {
        font-size: 1rem;
    }
    
    .inner-file-wrapper {
        padding: 3.75em 0;
    }
    
    .jobfile-box {
        padding: 2em 5em;
    }
    
    .jobfile-box h2 {
        font-size: 1.75rem;
    }
    
    .file-uplode {
        padding: 2.5em 1.25em;
    }
}

/* ========================================
   JOB ARCHIVE / LISTING PAGE STYLES
   ======================================== */

/* Jobs Archive Hero */
.jobs-archive-area {
    background: var(--color-white);
}

.jobs-archive-area .news-title {
    text-align: center;
}

.jobs-archive-area .news-title h2 {
    font-size: 4.375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.9375em;
}

.jobs-archive-area .news-title p {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-top: 0;
    opacity: 0.7;
    max-width: 43.75em;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Jobs Grid */
.jobs-featured-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875em;
}

.jobs-featured-item {
    background: var(--color-white);
    border-radius: 1.25em;
    overflow: hidden;
    box-shadow: 0 0.25em 1.25em rgba(0, 82, 76, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.jobs-featured-item:hover {
    transform: translateY(-0.3125em);
    box-shadow: 0 0.5em 1.875em rgba(0, 82, 76, 0.15);
}

.jobs-featured-item a {
    display: block;
    width: 100%;
}

.jobs-featured-item img {
    width: 100%;
    height: 15.625em;
    object-fit: cover;
    display: block;
}

.job-featured-placeholder {
    width: 100%;
    height: 15.625em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F9FA;
}

.job-placeholder-icon {
    text-align: center;
}

.jobs-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.625em;
    padding: 0.9375em 1.25em 0;
    flex-wrap: wrap;
}

.jobs-date span:first-child {
    font-size: 0.875rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.job-location-badge {
    display: inline-block;
    padding: 0.3125em 0.75em;
    background: var(--color-secondary);
    color: var(--color-white) !important;
    border-radius: 0.9375em;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03125em;
}

.jobs-featured-item h2 {
    padding: 0 1.25em;
    margin: 0.9375em 0 0.625em;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-primary);
}

.jobs-featured-item h2 a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.jobs-featured-item h2 a:hover {
    color: var(--color-secondary);
}

.job-featured-desc {
    font-size: 0.875rem;
    color: var(--color-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0 1.25em 0.9375em;
    opacity: 0.7;
    flex-grow: 1;
}

.jobs-featured-item .btn-all {
    padding: 0 1.25em 1.25em;
    margin: 0;
}

.jobs-featured-item .news-btn a {
    display: inline-block;
    padding: 0.75em 1.75em;
    background: var(--color-secondary);
    color: var(--color-white) !important;
    border-radius: 1.5625em;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.03125em;
    transition: background 0.3s ease;
    text-decoration: none;
}

.jobs-featured-item .news-btn a:hover {
    background: var(--color-primary);
}

.no-jobs-message {
    text-align: center;
    padding: 3.75em 1.25em;
    grid-column: 1 / -1;
}

.no-jobs-message p {
    font-size: 1.125rem;
    color: var(--color-primary);
    opacity: 0.6;
}

/* Jobs Filter Area */
.jobs-filter-area {
    background: #F8F9FA;
}

.jobs-grid-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875em;
}

/* Job Listing Item */
.job-listing-item {
    background: var(--color-white) !important;
    border-radius: 1.25em;
    padding: 1.875em;
    box-shadow: 0 0.25em 1.25em rgba(0, 82, 76, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-listing-item:hover {
    transform: translateY(-0.3125em);
    box-shadow: 0 0.5em 1.875em rgba(0, 82, 76, 0.15);
}

.job-listing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.9375em;
    flex-wrap: wrap;
    gap: 0.625em;
}

.job-date {
    font-size: 0.875rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.job-location {
    display: inline-block;
    padding: 0.25em 0.75em;
    background: #E8F4F3;
    color: var(--color-primary);
    border-radius: 0.9375em;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03125em;
}

.job-listing-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.9375em;
    line-height: 1.3;
}

.job-listing-item h3 a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.job-listing-item h3 a:hover {
    color: var(--color-secondary);
}

.job-excerpt {
    font-size: 0.9375rem;
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: 1.25em;
    opacity: 0.8;
    flex-grow: 1;
}

.job-apply-btn {
    margin-top: auto;
}

.job-apply-btn a {
    display: inline-block;
    padding: 0.75em 1.75em;
    background: var(--color-secondary);
    color: var(--color-white) !important;
    border-radius: 1.5625em;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.03125em;
    transition: background 0.3s ease;
    text-decoration: none;
}

.job-apply-btn a:hover {
    background: var(--color-primary);
}

/* Jobs CTA Area */
.jobs-cta-area {
    background: var(--color-white);
}

.jobs-cta-area .blog-btm {
    max-width: 50em;
    margin: 0 auto;
    text-align: center;
}

.jobs-cta-area .blog-btm h3 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0;
}

.jobs-cta-area .blog-btm ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.875em;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Responsive Styles */
@media screen and (max-width: 74.9375em) {
    .jobs-featured-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jobs-grid-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 61.9375em) {
    .jobs-featured-main {
        grid-template-columns: 1fr;
        max-width: 37.5em;
        margin: 0 auto;
    }
    
    .jobs-grid-wrap {
        grid-template-columns: 1fr;
    }
    
    .job-listing-item h3 {
        font-size: 1.25rem;
    }
    
    .jobs-cta-area .blog-btm h3 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 47.9375em) {
    .jobs-archive-area .news-title h2 {
        font-size: 2.5rem;
    }
    
    .jobs-archive-area .news-title p {
        font-size: 1rem;
        padding: 0 0.9375em;
    }
    
    .jobs-featured-main {
        gap: 1.25em;
    }
    
    .jobs-featured-item h2 {
        font-size: 1.125rem;
    }
    
    .job-featured-desc {
        font-size: 0.8125rem;
    }
    
    .job-listing-item {
        padding: 1.25em;
    }
    
    .job-listing-item h3 {
        font-size: 1.125rem;
    }
    
    .job-excerpt {
        font-size: 0.875rem;
    }
    
    .jobs-cta-area .blog-btm h3 {
        font-size: 1.75rem;
    }
    
    .jobs-cta-area .blog-btm ul {
        flex-direction: column;
        gap: 1.25em;
    }
    
    .jobs-cta-area .blog-btm ul li {
        width: 100%;
    }
    
    .jobs-cta-area .blog-btm ul li a {
        display: block;
        width: 100%;
    }
}

/* ========================================
   TABLET OPTIMIZATIONS (768px - 64em)
   Expert Design Review & Enhancements
   ======================================== */

/* Tablet Portrait (768px - 991px) */
@media screen and (min-width: 48em) and (max-width: 61.9375em) {
    /* Container adjustments */
    .container {
        max-width: 45em;
        padding: 0 1.25em;
    }
    
    /* Hero sections */
    .about-area,
    .hero-area,
    .job-hero {
        padding: 5em 0 3.75em;
    }
    
    .about-title h2,
    .hero-title h1,
    .job-main h2 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 1.25em;
    }
    
    .about-title p,
    .hero-description,
    .job-main > p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Grid layouts - 2 columns for tablet */
    .features-main,
    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5625em;
    }
    
    /* Jobs featured - 2 columns */
    .jobs-featured-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5625em;
    }
    
    /* Jobs listing - keep 2 columns but smaller gap */
    .jobs-grid-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25em;
    }
    
    /* Vacancies grid - 2 columns */
    .vacancies-grid-main .row {
        margin: 0 -0.625em;
    }
    
    .vacancies-grid-main [class*="col-"] {
        padding: 0 0.625em;
        margin-bottom: 1.25em;
    }
    
    /* News/Blog grids - 2 columns */
    .news-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5625em;
    }
    
    .tab-item-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5625em;
    }
    
    /* Card adjustments */
    .news-item,
    .blog-item,
    .vacancies-card,
    .job-listing-item {
        margin-bottom: 0;
    }
    
    /* Typography adjustments */
    h2, .h2 {
        font-size: 2.5rem;
    }
    
    h3, .h3 {
        font-size: 1.75rem;
    }
    
    h4, .h4 {
        font-size: 1.375rem;
    }
    
    /* Button sizing */
    .btn-all a,
    .header-btn a {
        padding: 0.875em 2em;
        font-size: 0.8125rem;
    }
    
    /* Form inputs */
    .tuch-input input,
    .tuch-input select,
    .tuch-textarea textarea,
    .contact-area .wpcf7-text,
    .contact-area .wpcf7-email,
    .contact-area .wpcf7-tel,
    .contact-area .wpcf7-textarea {
        padding: 1.25em 1.5625em;
        font-size: 1rem;
    }
    
    .tuch-input-title h4 {
        font-size: 1.25rem;
    }
    
    /* Tab buttons */
    .tab-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.625em;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 0.75em 1.5em;
        font-size: 0.9375rem;
    }
    
    /* Testimonials */
    .review-item,
    .careers-testimonial-item {
        padding: 1.875em;
    }
    
    /* Footer adjustments */
    .footer-top {
        flex-direction: column;
        gap: 1.875em;
        text-align: center;
    }
    
    .footer-top-right ul {
        justify-content: center;
    }
    
    /* Section spacing */
    section {
        padding: 3.75em 0;
    }
    
    .features-area,
    .services-area,
    .testimonials-area {
        padding: 4.375em 0;
    }
}

/* Tablet Landscape (992px - 1024px) */
@media screen and (min-width: 62em) and (max-width: 64em) {
    /* Container adjustments */
    .container {
        max-width: 60em;
        padding: 0 1.25em;
    }
    
    /* Slight typography adjustments */
    .about-title h2,
    .hero-title h1 {
        font-size: 4rem;
    }
    
    /* Keep 3 columns but tighter spacing */
    .features-main,
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25em;
    }
    
    .jobs-featured-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25em;
    }
    
    /* 2 columns for job listings */
    .jobs-grid-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25em;
    }
    
    /* News grid - 3 columns */
    .news-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25em;
    }
    
    /* Tab content - 2 columns */
    .tab-item-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25em;
    }
    
    /* Optimize images */
    .news-item img,
    .blog-item img,
    .jobs-featured-item img {
        height: 13.75em;
        object-fit: cover;
    }
    
    /* Card padding optimization */
    .jobs-featured-item,
    .vacancies-card,
    .job-listing-item {
        padding: 1.5625em;
    }
    
    /* Form layout stays 2 columns */
    .tuch-input-flex {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25em;
    }
}
/* Touch-friendly adjustments for all tablets */
@media screen and (min-width: 48em) and (max-width: 64em) and (hover: none) {
    /* Larger touch targets */
    .tab-btn,
    .btn-all a,
    .blog-btn a {
        min-height: 3em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove hover effects, use tap states */
    .news-item:hover,
    .blog-item:hover,
    .job-listing-item:hover {
        transform: none;
    }
    
    .news-item:active,
    .blog-item:active,
    .job-listing-item:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Larger form inputs */
    .tuch-input input,
    .tuch-textarea textarea,
    .contact-area .wpcf7-text,
    .contact-area .wpcf7-email,
    .contact-area .wpcf7-tel,
    .contact-area .wpcf7-textarea,
    select {
        min-height: 3.25em;
        font-size: 1.6rem; /* Prevents zoom on iOS */
    }
    
    /* Spacing for touch scrolling */
    .tab-buttons {
        padding-bottom: 0.9375em;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-buttons::-webkit-scrollbar {
        height: 0.25em;
    }
    
    .tab-buttons::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 0.25em;
    }
}

/* iPad Pro Portrait (1024px x 1366px) */
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
    .container {
        max-width: 61.875em;
    }
    
    /* Optimize for larger tablets */
    .jobs-featured-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5625em;
    }
    
    .tab-item-wrap,
    .jobs-grid-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5625em;
    }
    
    /* Better typography */
    .about-title h2 {
        font-size: 4.5rem;
    }
    
    h2 {
        font-size: 2.75rem;
    }
    
    h3 {
        font-size: 2rem;
    }
}

/* Landscape orientation optimizations */
@media screen and (min-width: 48em) and (max-width: 64em) and (orientation: landscape) {
    /* Reduce vertical padding in landscape */
    section {
        padding: 3.125em 0;
    }
    
    .hero-area,
    .about-area {
        padding: 3.75em 0 3.125em;
    }
    
    /* Compact hero text */
    .about-title h2,
    .hero-title h1 {
        font-size: 3.25rem;
        margin-bottom: 0.9375em;
    }
    
    /* Optimize vertical space */
    .features-main,
    .services-grid {
        gap: 1.25em;
    }
    
    /* Image heights */
    .news-item img,
    .blog-item img {
        height: 12.5em;
    }
}
/* High DPI tablets (Retina displays) */
@media screen and (min-width: 48em) and (max-width: 64em) and (-webkit-min-device-pixel-ratio: 2),
       screen and (min-width: 48em) and (max-width: 64em) and (min-resolution: 192dpi) {
    /* Sharper text rendering */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Optimize images for retina */
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ========================================
   ABOUT PAGE TABLET OPTIMIZATIONS
   ======================================== */

/* Tablet Portrait (768px - 991px) */
@media screen and (min-width: 48em) and (max-width: 61.9375em) {
    /* About Hero Section */
    .about-area {
        padding: 5em 0 3.75em;
    }
    
    .about-title h2 {
        font-size: 4rem; /* from 100px to 64px */
        line-height: 1.1;
        letter-spacing: -0.125em;
    }
    
    .about-main {
        margin-top: 3em; /* from 150px */
    }
    
    .about-cnt {
        margin-top: 5em; /* from 167px */
        max-width: 100%;
    }
    
    .about-cnt span {
        font-size: 1.25rem; /* from 24px to 20px */
    }
    
    .about-cnt h2 {
        font-size: 3rem; /* from 70px to 48px */
        letter-spacing: -0.09375em;
    }
    
    .about-cnt p {
        font-size: 1rem; /* from 18px to 16px */
        line-height: 1.7;
    }
    
    /* Video Section */
    .about-video-area {
        padding: 3.75em 0;
    }
    
    .video-wrapper {
        max-width: 100%;
        border-radius: 0.9375em;
    }
    
    .about-video-cnt {
        margin-top: 1.875em;
    }
    
    .about-video-cnt h4 {
        font-size: 1.75rem; /* from 40px to 28px */
    }
    
    .about-video-cnt p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Leadership Section */
    .employ-area {
        padding: 3.75em 0;
    }
    
    .employ-title h2 {
        font-size: 3rem; /* from 70px to 48px */
        margin-bottom: 0.9375em;
    }
    
    .employ-title p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2.5em;
    }
    
    .employ-main {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.875em !important;
        row-gap: 2.5em !important;
    }
    
    .employ-item img {
        border-radius: 0.9375em;
        max-width: 100%;
        height: auto;
    }
    
    .employ-item h3 {
        font-size: 1.75rem; /* from 40px to 28px */
        margin-top: 1.25em;
    }
    
    .employ-item h4 {
        font-size: 1.125rem; /* from 24px to 18px */
    }
    
    /* 5Ps Section */
    .our-area {
        padding: 3.75em 0;
    }
    
    .our-title span {
        font-size: 1.25rem;
    }
    
    .our-title h2 {
        font-size: 3rem;
        margin-bottom: 0.9375em;
    }
    
    .our-title p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2.5em;
    }
    
    .our-box {
        flex-wrap: wrap;
        padding: 1.5625em 1.25em;
        gap: 0.9375em;
    }
    
    .our-left ul li:first-child img {
        max-width: 5em;
    }
    
    .our-left ul li:last-child {
        font-size: 1.5rem;
    }
    
    .our-center {
        flex: 1 1 100%;
        order: 3;
    }
    
    .our-center p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.6;
    }
    
    .our-right {
        order: 2;
    }
    
    .our-right a {
        font-size: 0.875rem;
        padding: 0.625em 1.25em;
    }
    
    /* Latest News Section */
    .blog-area20 {
        padding: 3.75em 0;
    }
    
    .blog-title h2 {
        font-size: 3rem;
        margin-bottom: 2.5em;
    }
    
    .blog-main {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5625em !important;
    }
    
    .blog-item img {
        height: 13.75em;
        object-fit: cover;
        border-radius: 0.9375em;
    }
    
    .blog-item h3 {
        font-size: 1.375rem;
    }
    
    .blog-item p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.6;
    }
    
    .blog-item ul li {
        font-size: 0.875rem;
    }
    
    /* FAQ Section */
    .question-area {
        padding: 3.75em 0;
    }
    
    .question-title h2 {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .question-item {
        padding: 1.875em;
    }
    
    .question-item h3 {
        font-size: 1.5rem;
    }
    
    .question-item p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
        line-height: 1.6;
    }
}

/* Tablet Landscape (992px - 1024px) */
@media screen and (min-width: 62em) and (max-width: 64em) {
    /* About Hero */
    .about-title h2 {
        font-size: 5rem; /* 80px */
        letter-spacing: -0.15625em;
    }
    
    .about-main {
        margin-top: 4em;
    }
    
    .about-cnt {
        margin-top: 6.25em;
    }
    
    .about-cnt h2 {
        font-size: 3.5rem; /* 56px */
    }
    
    /* Leadership - 3 columns */
    .employ-main {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5625em !important;
        row-gap: 2.1875em !important;
    }
    
    .employ-item h3 {
        font-size: 2rem;
    }
    
    /* News - 3 columns */
    .blog-main {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.25em !important;
    }
    
    .blog-item img {
        height: 12.5em;
    }
    
    .blog-item h3 {
        font-size: 1.25rem;
    }
    
    /* 5Ps Section */
    .our-box {
        padding: 1.875em 1.5625em;
        flex-wrap: nowrap;
    }
    
    .our-center {
        flex: 1 1 auto;
        order: 2;
    }
    
    .our-right {
        order: 3;
    }
}

/* Large Tablets (1024px - 1199px) */
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
    .about-title h2 {
        font-size: 5.5rem; /* 88px */
    }
    
    .about-cnt h2 {
        font-size: 4rem; /* 64px */
    }
    
    .employ-main {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.875em !important;
    }
    
    .blog-main {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5625em !important;
    }
}

/* Landscape Mode (768px - 1024px) */
@media screen and (min-width: 48em) and (max-width: 64em) and (orientation: landscape) {
    .about-area {
        padding: 3.75em 0 3.125em;
    }
    
    .about-title h2 {
        font-size: 3.5rem;
        margin-bottom: 1.875em;
    }
    
    .about-main {
        margin-top: 3.75em;
    }
    
    .about-cnt {
        margin-top: 3.75em;
    }
    
    .about-cnt h2 {
        font-size: 2.75rem;
    }
    
    .employ-area,
    .our-area,
    .blog-area20 {
        padding: 3.125em 0;
    }
    
    .employ-title h2,
    .our-title h2,
    .blog-title h2 {
        font-size: 2.5rem;
        margin-bottom: 1.875em;
    }
}

/* Touch-specific About Page adjustments */
@media screen and (min-width: 48em) and (max-width: 64em) and (hover: none) {
    /* Larger touch targets for accordion */
    .our-right a,
    .accordion-toggle {
        min-height: 3em;
        padding: 0.75em 1.5em;
    }
    
    /* Larger video play button */
    .play-btn-kp {
        width: 5em;
        height: 5em;
    }
    
    /* Remove hover effects */
    .employ-item:hover,
    .blog-item:hover,
    .our-box:hover {
        transform: none;
    }
    
    /* Add tap effects */
    .employ-item:active,
    .blog-item:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* About Page Carousel adjustments for tablet */
@media screen and (min-width: 48em) and (max-width: 64em) {
    #owl-csel5 .about-item img {
        border-radius: 0.9375em;
        max-height: 25em;
        object-fit: cover;
    }
    
    #owl-csel6 .question-item {
        padding: 1.875em 1.5625em;
    }
    
    .owl-carousel .owl-nav button {
        width: 3.125em;
        height: 3.125em;
        font-size: 2.4rem;
    }
}

/* ========================================
   5Ps SECTION TABLET ACCORDION FIX
   ======================================== */

/* Show accordion on tablets, hide desktop grid */
@media (min-width: 48em) and (max-width: 61.9375em) {
    /* Hide desktop grid version */
    .our-main {
        display: none !important;
    }
    
    /* Show mobile accordion version */
    .our-mobil {
        display: block !important;
        padding: 0 1.25em;
        margin-top: 3.75em;
    }
    
    /* Accordion Container */
    .accordion-container {
        max-width: 100%;
        margin: 0;
    }
    
    /* Accordion Item */
    .ac {
        border-bottom: 0.125em solid rgba(3, 100, 93, 0.2);
        margin-bottom: 0;
        background: transparent !important;
    }
    
    .ac:first-child {
        border-top: 0.125em solid rgba(3, 100, 93, 0.2);
    }
    
    /* Remove gradient background when active */
    .ac.is-active {
        background: transparent !important;
    }
    
    /* Accordion Trigger (Header) */
    .ac-trigger {
        cursor: pointer;
        padding: 1.5625em 0;
        background: transparent !important;
        border-bottom: none !important;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .ac.is-active .ac-trigger {
        background: transparent !important;
        border: none !important;
    }
    
    /* Chevron Arrow - Down by default */
    .ac-trigger::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1.5em;
        height: 1.5em;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300524C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        transition: transform 0.3s ease;
    }
    
    /* Chevron Arrow - Up when active */
    .ac.is-active .ac-trigger::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    /* Accordion Header Content */
    .our-mobil-wrap {
        padding-right: 2.5em;
    }
    
    .our-mobil-wrap ul {
        display: flex;
        align-items: center;
        gap: 1.25em;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .our-mobil-wrap ul li:first-child {
        flex-shrink: 0;
    }
    
    .our-mobil-wrap ul li:first-child img {
        width: 3.75em;
        height: 3.75em;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .our-mobil-wrap ul li:last-child {
        font-weight: 700;
        font-size: 1.75rem;
        color: var(--color-primary) !important;
        line-height: 1.2;
        letter-spacing: -0.03125em;
    }
    
    /* Keep title visible when active */
    .ac.is-active .our-mobil-wrap ul li:last-child {
        color: var(--color-primary) !important;
    }
    
    /* Keep icon background white/visible */
    .ac.is-active .our-mobil-wrap ul li:first-child {
        background: var(--color-secondary) !important;
    }
    
    /* Accordion Panel (Content) */
    .ac-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .ac.is-active .ac-panel {
        max-height: 125em;
    }
    
    .ac-panel-cnt {
        padding: 0 0 1.5625em 0;
    }
    
    .our-mobil-cnt p {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--color-primary) !important;
        margin: 0;
    }
    
    /* Override any inherited styles */
    .ac.is-active .our-mobil-cnt p {
        color: var(--color-primary) !important;
    }
}

/* Desktop - Keep original grid layout */
@media (min-width: 62em) {
    .our-main {
        display: block !important;
    }
    
    .our-mobil {
        display: none !important;
    }
    
    /* Ensure proper alignment */
    .our-box {
        display: flex !important;
        align-items: center;
        padding: 3.125em 0;
        border-bottom: 0.0625em solid #03645D;
        gap: 1.875em;
    }
    
    .our-box2 {
        border-top: 0.0625em solid #03645D;
    }
    
    .our-left {
        flex: 0 0 auto;
        min-width: 15.625em;
    }
    
    .our-left ul {
        display: flex;
        align-items: center;
        gap: 1.875em;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .our-left ul li:first-child img {
        width: 5em;
        height: 5em;
        border-radius: 50%;
    }
    
    
    .our-left ul li:last-child {
        font-weight: 700;
        font-size: 4.5rem;
        color: var(--color-primary);
        /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
        letter-spacing: 0em;
        min-width: 405px
    }
    
    .our-center {
        flex: 1 1 auto;
        padding: 0 6em;
    }
    
    .our-center p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--color-primary);
    }
    
    .our-right {
        flex: 0 0 auto;
        text-align: right;
    }
    
    .our-right a {
        font-weight: 300;
        font-size: 1.375rem;
        color: var(--color-primary);
        letter-spacing: 0.04225em;
        /* text-transform: capitalize; */ /* Removed for consistency - using uppercase buttons globally */
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.625em;
        transition: all 0.3s ease;
    }
    
    .our-right a:hover {
        color: var(--color-secondary);
    }
    
    .our-right a .arrow-icon {
        transition: transform 0.3s ease;
    }
    
    .our-right a:hover .arrow-icon {
        transform: translateX(0.3125em);
    }
}

/* Large Tablets - Keep Desktop Layout */
@media (min-width: 62em) and (max-width: 74.9375em) {
    .our-box {
        padding: 2.5em 0;
        gap: 1.5625em;
    }
    
    .our-left {
        min-width: 13.75em;
    }
    
    .our-left ul li:first-child img {
        width: 5.625em;
        height: 5.625em;
    }
    
    .our-left ul li:last-child {
        font-size: 2.75rem;
    }
    
    .our-center {
        padding: 0 1.25em;
    }
    
    .our-center p {
        font-size: 1.6rem !important; /* 16px - Updated to match mobile paragraph standard */
    }
    
    .our-right a {
        font-size: 1.125rem;
    }
}

/* ============================================
   PRIVACY POLICY & LEGAL PAGES STYLES
   Professional styling for privacy, terms, and legal content
   ============================================ */

.privacy-policy-page,
.legal-page {
    padding: 5em 0 7.5em;
    background: var(--color-white);
}

.privacy-policy-page .container,
.legal-page .container {
    max-width: 71.25em;
    margin: 0 auto;
    padding: 0 0.9375em;
}
/* Page Header */
.privacy-policy-page h1,
.legal-page h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.25em;
    line-height: 1.2;
    font-family: 'NeulisSans', sans-serif;
}

.privacy-policy-page .intro-text,
.legal-page .intro-text {
    font-size: 1.8rem; /* 18px based on 62.5% base */
    line-height: 1.8;
    color: #666;
    margin-bottom: 3.75em;
    max-width: 56.25em;
}

/* Section Headings */
.privacy-policy-page h2,
.legal-page h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-top: 1.75em;
    margin-bottom: 0.5em;
    line-height: 1.3;
    font-family: 'NeulisSans', sans-serif;
}

.privacy-policy-page h2:first-of-type,
.legal-page h2:first-of-type {
    margin-top: 0;
}

/* Sub-headings */
.privacy-policy-page h3,
.legal-page h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 2.5em;
    margin-bottom: 1.25em;
    line-height: 1.4;
    font-family: 'NeulisSans', sans-serif;
}

.privacy-policy-page h4,
.legal-page h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 1.875em;
    margin-bottom: 0.9375em;
    line-height: 1.4;
    font-family: 'NeulisSans', sans-serif;
}

/* Paragraphs */
.privacy-policy-page p,
.legal-page p {
    font-size: 1.6rem; /* 16px based on 62.5% base */
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.25em;
    max-width: 56.25em;
}

.privacy-policy-page p:last-child,
.legal-page p:last-child {
    margin-bottom: 0;
}

/* Lists */
.privacy-policy-page ul,
.privacy-policy-page ol,
.legal-page ul,
.legal-page ol {
    margin: 1.25em 0;
    padding-left: 2.5em;
    max-width: 56.25em;
}

/* Ensure bullets are visible - WordPress blocks and standard lists */
.privacy-policy-page ul,
.privacy-policy-page .wp-block-list,
.legal-page ul,
.legal-page .wp-block-list {
    list-style-type: disc !important;
}

.privacy-policy-page ol,
.legal-page ol {
    list-style-type: decimal !important;
}

.privacy-policy-page ul li,
.privacy-policy-page ol li,
.legal-page ul li,
.legal-page ol li {
    font-size: 1.6rem; /* 16px based on 62.5% base */
    line-height: 1.8;
    color: #333;
    margin-bottom: 0.75em;
    padding-left: 0.625em;
    list-style: inherit;
}

.privacy-policy-page ul li::marker,
.legal-page ul li::marker {
    color: var(--color-secondary);
    font-weight: 600;
}

.privacy-policy-page ol li::marker,
.legal-page ol li::marker {
    color: var(--color-primary);
    font-weight: 600;
}
/* Nested Lists */
.privacy-policy-page ul ul,
.privacy-policy-page ol ul,
.privacy-policy-page ul ol,
.privacy-policy-page ol ol,
.legal-page ul ul,
.legal-page ol ul,
.legal-page ul ol,
.legal-page ol ol {
    margin: 0.625em 0;
    padding-left: 1.875em;
}

/* Links */
.privacy-policy-page a,
.legal-page a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 0.125em solid transparent;
}

.privacy-policy-page a:hover,
.legal-page a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Strong/Bold Text */
.privacy-policy-page strong,
.privacy-policy-page b,
.legal-page strong,
.legal-page b {
    font-weight: 600;
    color: var(--color-primary);
}

/* Emphasis/Italic Text */
.privacy-policy-page em,
.privacy-policy-page i,
.legal-page em,
.legal-page i {
    font-style: italic;
    color: #555;
}

/* Table of Contents (if needed) */
.privacy-policy-toc,
.legal-page-toc {
    background: #f8f9fa;
    border-left: 0.25em solid var(--color-secondary);
    padding: 1.875em;
    margin: 2.5em 0;
    border-radius: 0.5em;
}

.privacy-policy-toc h3,
.legal-page-toc h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.privacy-policy-toc ul,
.legal-page-toc ul {
    list-style: none;
    padding: 0;
    margin: 1.25em 0 0 0;
}

.privacy-policy-toc ul li,
.legal-page-toc ul li {
    margin-bottom: 0.625em;
    padding-left: 0;
}

.privacy-policy-toc a,
.legal-page-toc a {
    font-size: 1.6rem; /* 16px based on 62.5% base */
    color: var(--color-primary);
    border-bottom: none;
}

.privacy-policy-toc a:hover,
.legal-page-toc a:hover {
    color: var(--color-secondary);
}

/* Highlighted/Important Text Box */
.privacy-policy-highlight,
.legal-page-highlight {
    background: var(--color-white)5EE;
    border-left: 0.25em solid var(--color-secondary);
    padding: 1.5625em 1.875em;
    margin: 1.875em 0;
    border-radius: 0.5em;
}

.privacy-policy-highlight p,
.legal-page-highlight p {
    margin-bottom: 0;
    color: #333;
}

/* Last Updated / Effective Date */
.last-updated,
.effective-date {
    font-size: 0.9375rem;
    color: #999;
    font-style: italic;
    margin-bottom: 2.5em;
    display: block;
}

/* Contact Information Section */
.privacy-contact-info,
.legal-contact-info {
    background: #f8f9fa;
    padding: 2.5em;
    border-radius: 0.75em;
    margin-top: 3.75em;
    border: 0.125em solid #e9ecef;
}

.privacy-contact-info h3,
.legal-contact-info h3 {
    margin-top: 0;
    color: var(--color-primary);
}

.privacy-contact-info p,
.legal-contact-info p {
    margin-bottom: 0.625em;
}

.privacy-contact-info a,
.legal-contact-info a {
    color: var(--color-secondary);
    font-weight: 600;
}

/* Tablet Responsive */
@media (max-width: 61.9375em) {
    .privacy-policy-page,
    .legal-page {
        padding: 3.75em 0 5em;
    }
    
    .privacy-policy-page h1,
    .legal-page h1 {
        font-size: 2.5rem;
    }
    
    .privacy-policy-page h2,
    .legal-page h2 {
        font-size: 1.75rem;
        margin-top: 3.125em;
    }
    
    .privacy-policy-page h3,
    .legal-page h3 {
        font-size: 1.375rem;
    }
    
    .privacy-policy-page .intro-text,
    .legal-page .intro-text {
        font-size: 1.7rem; /* 17px based on 62.5% base */
        margin-bottom: 3.125em;
    }
}

/* Mobile Responsive */
@media (max-width: 47.9375em) {
    .privacy-policy-page,
    .legal-page {
        padding: 2.5em 0 3.75em;
    }
    
    .privacy-policy-page h1,
    .legal-page h1 {
        font-size: 2rem;
        margin-bottom: 0.9375em;
    }
    
    .privacy-policy-page h2,
    .legal-page h2 {
        font-size: 1.5rem;
        margin-top: 2.5em;
        margin-bottom: 1.25em;
    }
    
    .privacy-policy-page h3,
    .legal-page h3 {
        font-size: 1.25rem;
        margin-top: 1.875em;
    }
    
    .privacy-policy-page h4,
    .legal-page h4 {
        font-size: 1.125rem;
    }
    
    .privacy-policy-page p,
    .privacy-policy-page ul li,
    .privacy-policy-page ol li,
    .legal-page p,
    .legal-page ul li,
    .legal-page ol li {
        font-size: 1.5rem; /* 15px based on 62.5% base */
        line-height: 1.7;
    }
    
    .privacy-policy-page .intro-text,
    .legal-page .intro-text {
        font-size: 1.6rem; /* 16px based on 62.5% base */
        margin-bottom: 2.5em;
    }
    
    .privacy-policy-page ul,
    .privacy-policy-page ol,
    .legal-page ul,
    .legal-page ol {
        padding-left: 1.5625em;
    }
    
    .privacy-policy-toc,
    .legal-page-toc,
    .privacy-contact-info,
    .legal-contact-info {
        padding: 1.25em;
    }
    
    .privacy-policy-highlight,
    .legal-page-highlight {
        padding: 1.25em;
    }
}

/* ========================================
   Solution & Platform Template Section Padding
   ======================================== */

/* Solution Template - First section gets padding-top 80px */
.single-solution section:first-of-type {
    padding-top: 3em;
    padding-bottom: 2.5em;
}

/* Solution Template - Middle sections get 40px padding top and bottom */
.single-solution section:not(:first-of-type):not(:last-of-type) {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
}

/* Solution Template - Last section gets padding-bottom 80px */
.single-solution section:last-of-type {
    padding-top: 2.5em;
    padding-bottom: 5em;
}

/* Platform Template - First section gets padding-top 80px */
.single-platform section:first-of-type {
    padding-top: 5em;
    padding-bottom: 0.5em;
}

/* Platform Template - Middle sections get 40px padding top and bottom */
.single-platform section:not(:first-of-type):not(:last-of-type) {
    padding-top: 1.5em;
    padding-bottom: 2.5em;
    /* margin-top: 3em; */
}

/* Platform Template - Last section gets padding-bottom 80px */
.single-platform section:last-of-type {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
}

/* Responsive adjustments for tablet */
@media (max-width: 61.9375em) {
    .single-solution section:first-of-type,
    .single-platform section:first-of-type {
        padding-top: 3.75em;
        padding-bottom: 1.875em;
    }

    .single-solution section:not(:first-of-type):not(:last-of-type),
    .single-platform section:not(:first-of-type):not(:last-of-type) {
        padding-top: 1.875em;
        padding-bottom: 1.875em;
    }

    .single-solution section:last-of-type,
    .single-platform section:last-of-type {
        padding-top: 1.875em;
        padding-bottom: 3.75em;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 47.9375em) {
    .single-solution section:first-of-type,
    .single-platform section:first-of-type {
        padding-top: 2.5em;
        padding-bottom: 1.25em;
    }

    .single-solution section:not(:first-of-type):not(:last-of-type),
    .single-platform section:not(:first-of-type):not(:last-of-type) {
        padding-top: 1.25em;
        padding-bottom: 1.25em;
    }

    .single-solution section:last-of-type,
    .single-platform section:last-of-type {
        padding-top: 1.25em;
        padding-bottom: 2.5em;
    }
}

/* ============================================
   CF7 Job Application Form - Hide File Input
   ============================================ */

/* CF7 Job Application Form */
.cf7-job-application-form {
    max-width: 37.5em;
    margin: 0 auto;
}

.application-form-header {
    text-align: center;
    margin-bottom: 1.875em;
}

.application-form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

/* Your Name Input */
.cf7-job-application-form .tuch-input {
    margin-bottom: 1.875em;
}

.cf7-job-application-form .tuch-input-title h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.625em;
    z-index: 10;
}

.cf7-job-application-form .tuch-input input[type="text"] {
    width: 100%;
    padding: 0.9375em 1.25em;
    border: 0.0625em solid #E0E0E0;
    border-radius: 0.5em;
    font-size: 1rem;
    color: #333333;
    transition: border-color 0.3s ease;
}

.cf7-job-application-form .tuch-input input[type="text"]:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.cf7-job-application-form .tuch-input input[type="text"]::placeholder {
    color: var(--color-gray-400);
}

/* File Upload Area */
.file-upload-wrapper {
    margin-bottom: 1.875em;
}

.pdf-wrap {
    display: block;
    cursor: pointer;
    margin: 0;
}

.file-uplode {
    border: 0.125em dashed var(--color-gray-300);
    border-radius: 1em;
    padding: 3.125em 1.875em;
    text-align: center;
    background: var(--color-gray-50);
    transition: all 0.3s ease;
    position: relative;
}

.file-uplode:hover {
    border-color: var(--color-primary);
    background: rgba(0, 82, 76, 0.02);
}

.file-uplode.dragover {
    border-color: var(--color-secondary);
    background: rgba(235, 121, 35, 0.05);
}

.file-img {
    margin-bottom: 1.25em;
}

.file-img img {
    width: 3.75em;
    height: 3.75em;
    opacity: 0.6;
}

/* CRITICAL: Hide the actual file input and CF7 wrapper completely */
.file-uplode input[type="file"],
.file-uplode .wpcf7-form-control-wrap,
.file-uplode .wpcf7-form-control-wrap[data-name="cv_file"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 0.00625em !important;
    height: 0.00625em !important;
    z-index: -1 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

/* Hide the "Choose File" button completely */
.file-uplode input[type="file"]::-webkit-file-upload-button {
    display: none !important;
    visibility: hidden !important;
}

.file-uplode input[type="file"]::file-selector-button {
    display: none !important;
    visibility: hidden !important;
}

/* Make sure no file input is visible in any way */
.file-uplode p:has(> .wpcf7-form-control-wrap) {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

.file-uplode h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 0.5em;
    position: relative;
    z-index: 2;
}

.file-uplode h4 .browse-trigger {
    color: var(--color-primary);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 700;
}

.file-uplode > p {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Exception: Keep the format text visible */
.file-uplode > p:not(:has(.wpcf7-form-control-wrap)) {
    position: relative !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
}

/* Uploaded File Display */
.pdf-upload {
    margin-top: 1.25em;
    padding: 1.25em;
    background: #F3F4F6;
    border-radius: 0.75em;
}

.pdf-upload h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.9375em;
}

.pdf-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9375em 1.25em;
    background: var(--color-white);
    border: 0.0625em solid var(--color-gray-200);
    border-radius: 0.5em;
}

.pdf-box h6 {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-800);
    margin: 0;
    word-break: break-all;
}

.pdf-box .remove-file {
    width: 1.25em;
    height: 1.25em;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.pdf-box .remove-file:hover {
    opacity: 0.7;
}

/* Submit Button */
.file-submit {
    text-align: center;
}

.file-submit input[type="submit"] {
    width: 100%;
    padding: 1.125em 2.5em;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03125em;
    border: none;
    border-radius: 3.125em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-submit input[type="submit"]:hover {
    background: #D86A1D;
    transform: translateY(-0.125em);
    box-shadow: 0 0.25em 0.75em rgba(235, 121, 35, 0.3);
}

/* CF7 Validation */
.cf7-job-application-form .wpcf7-not-valid-tip {
    color: #DC2626;
    font-size: 0.875rem;
    margin-top: 0.5em;
}

.cf7-job-application-form .wpcf7-response-output {
    margin-top: 1.25em;
    padding: 0.9375em 1.25em;
    border-radius: 0.5em;
    text-align: center;
    font-size: 0.875rem;
}

.cf7-job-application-form .wpcf7-mail-sent-ok {
    background: #D1FAE5;
    border: 0.0625em solid #10B981;
    color: #065F46;
}

.cf7-job-application-form .wpcf7-validation-errors {
    background: #FEE2E2;
    border: 0.0625em solid #EF4444;
    color: #991B1B;
}

/* Responsive */
@media (max-width: 47.9375em) {
    .application-form-header h2 {
        font-size: 1.5rem;
    }
    
    .file-uplode {
        padding: 2.5em 1.25em;
    }
    
    .file-img img {
        width: 3.125em;
        height: 3.125em;
    }
    
    .file-uplode h4 {
        font-size: 1rem;
    }
    
    .file-submit input[type="submit"] {
        padding: 1em 1.875em;
        font-size: 0.9375rem;
    }
}

.policy-item h4 {
  width: 95%;
  margin: 0 auto;
}

.blog-title h2,
.blog-btm h3 {
  letter-spacing: unset;
}

@media (min-width: 75em) and (max-width: 87.4375em) {
  .main-nav ul li a {
    font-size: 1.3rem;
  }

  .header-btn a {
    font-size: 1rem;
  }
}

@media (min-width: 64.0625em) and (max-width: 74.9375em) {
  .main-nav ul li a {
    font-size: 1.2rem;
  }

  .header-btn a {
    font-size: 0.9rem;
  }
}

.partners-mobil {
  margin-top: 1em;
}

.partners-mobil {
  padding-bottom: 1em;
}

.policy-area {
  padding-top: 2em;
}

.year-area {
  padding-bottom: 3em;
  margin-bottom: 3em;
}

button.service-toggle-btn {
  display: none !important;
}

.service-carousel #owl-csel3 .owl-dots {
  display: none !important;
}

.service-area {
  padding-bottom: 2em;
}

.working-with-chainthat-title h2 {
  margin-bottom: 0.8em;
}

.working-with-chainthat-title p {
  font-size: unset;
}

.working-with-chainthat-main {
  margin-top: 5em;
}

@media (min-width: 1200px) {
  .policy-title p,
  .service-title p,
  .working-with-chainthat-title p {
    width: 60%;
    margin: 0 auto;
    font-size: 1.3rem;
  }
}

/* platform */

.adminis-area {
  padding-top: 6em;
  padding-bottom: 4em;
}

.adminis-title {
  margin-bottom: 2em;
}

.adminis-title h2 {
  line-height: 1;
  margin-bottom: 0.5em;
}

.adminis-video-title p {
  font-size: 1.5rem;
}

.adminis-video-title span,
.all-title span {
  font-size: 1.25rem;
}

.ipsum-title-main h2 {
  margin-bottom: 0.5em;
}

.benefit-card p {
  font-size: 1.5rem; /* 15px */
  color: #333;
}

.rating-title h2 {
  margin-top: 0em;
  line-height: 1;
}

.rating-title p {
  font-size: 1.5rem;
}
/*.rating-item {*/
/*  align-items: start;*/
/*}*/
.rating-item img {
  margin: 0 0 1.25rem 0;
}

.rating-item h4 {
  font-size: 1.8rem;
  text-align: left;
}
.rating-item p {
  font-size: 1.2rem;
  color: #000000;
  line-height: 1.3;
  text-align: left;
}

.all-title h2 {
  line-height: 1;
}

.timeline-title p {
  font-size: 1.5rem;
}
.timeline-main {
  column-gap: 3em;
}

.rb-item h4 {
  font-size: 2rem;
}
.rb-item h5 {
  margin-bottom: 0.4375em;
}
.rb-item .item-des p {
  font-size: 1.5rem;
  margin-bottom: 0; /* Reduce spacing */
}
.rb-item .item-title {
  margin-bottom: 0.5em; /* Reduce spacing */
}

.timeline-left img {
  /* Image is centered via flexbox on parent .timeline-left */
}

.working-with-chainthat-title h2 {
  margin-bottom: 0.5em;
}

.working-with-chainthat-title p {
  font-size: 1.5rem;
}

.working-with-chainthat-main {
  margin-top: 1em;
}
.working-with-chainthat-cnt h4 {
  font-size: 2rem;
}

/* Solutions */
.key-benefits-area .all-title h2 {
  font-size: 5rem;
}

.benefits-carousel-wrapper {
  margin-top: 0;
}

.benefit-read-more {
  display: none !important;
}

/* Control row width based on column layout for solution page */
.key-benefits-area .row.benefits-3-col {
  max-width: 100%; /* Default for screens 1440px and below */
  margin: 0 auto;
  row-gap: 1.5em;
}

/* 1441px to 1920px: 80% width */
@media (min-width: 90.0625em) {
  .key-benefits-area .row.benefits-3-col {
    max-width: 80%;
  }
}

/* Above 1920px: 70% width */
@media (min-width: 120em) {
  .key-benefits-area .row.benefits-3-col {
    max-width: 70%;
  }
}

.key-benefits-area .row.benefits-4-col {
  max-width: 100%;
  margin: 0 auto;
  row-gap: 1.5em;
}

/* Ensure 3 and 4 column layouts with proper spacing on large screens for solution page */
@media (min-width: 62em) {
  .key-benefits-area .row > .col-lg-4,
  .key-benefits-area .row > .col-lg-3 {
    display: flex;
    justify-content: center;
    padding-left: 1em;
    padding-right: 1em;
  }
  
  .key-benefits-area .row > .col-lg-4 .benefit-card,
  .key-benefits-area .row > .col-lg-3 .benefit-card {
    width: 100%;
  }
}

.platform-empowerment-section h2 {
  font-size: 4rem;
}



/* Case Study Content - Better Alignment */
.case-study-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.case-study-content h4 {
  font-size: 1.75rem; /* 28px */
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 1.25em;
  line-height: 1.3;
}

.case-study-content p {
  font-size: 1rem; /* 16px - consistent with body text */
  line-height: 1.8;
  color: #000000;
  margin-bottom: 1.5em;
}

.case-study-image {
  display: flex;
  align-items: center;
  height: 100%;
}

.case-study-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5em;
  display: block; /* Ensures proper alignment */
  margin: 0 auto; /* Center alignment */
}

@media (min-width: 1200px) {
  #benefitsCarousel.benefits-carousel .owl-nav,
  #benefitsCarousel.benefits-carousel .owl-dots {
    display: none !important;
  }
}

/* about */

.about-area {
  padding: 2em 0 1em 0;
}

.about-cnt {
  margin-top: 5em;
  margin-bottom: 4em;
}
.about-cnt span {
  font-size: 1.25rem;
}
.about-cnt h2 {
  letter-spacing: unset;
}
.employ-area {
  padding: 6em 0 5em 0;
}
.about-cnt p{
  width: 85%;
}
.employ-title h2 {
  line-height: 1;
  margin-bottom: 0.5em;
}

.our-area {
  padding: 5em 0 6em 0;
}

.our-title span {
  font-size: 2rem;
}
.our-title h2 {
  margin: 0.8em 0;
}

.our-main {
  margin-top: 3em;
}

.our-left ul li:first-child img {
  width: 2em;
  height: 2em;
}
.blog-area20 .blog-main {
  margin-top: 2em;
}

/* news */

.news-area {
  padding: 4em 0 4em 0;
}
.news-area .container{
  padding: 0 15%;
}

.news-title h2 {
  font-size: 5rem;
  line-height: 1;
}

.tab-btn {
  font-size: 1.5rem;
}
.blog-item ul li {
  font-size: 1.3rem;
}
.blog-item h3 {
  font-size: 1.6rem;
}
.blog-btn a {
  font-size: 1.1rem;
  text-decoration: none;
}

/* career */
.careers-btm {
  max-width: 50.8125em;
}

.careers-btm .careers-subtitle {
  font-size: 2rem; /* 18px - matches .our-title span mobile */
}

.careers-btm .careers-main-title {
  font-size: 3.125rem; /* 50px - matches .our-title h2 tablet */
}

.careers-btm h4 {
  font-size: 3.8rem;
  margin-bottom: 0.5em;
}
.careers-btm p {
  width: 80%;
  margin: 0 auto;
}

/* Mobile - Extra small screens */
@media (max-width: 47.9375em) {
  .careers-btm .careers-subtitle {
    font-size: 1.125rem; /* 18px */
  }
  
  .careers-btm .careers-main-title {
    font-size: 2rem; /* 32px - matches .our-title h2 mobile */
    margin: 0.20em 0;
  }
}

@media (max-width: 30em) {
  .careers-btm .careers-main-title {
    font-size: 1.5rem; /* 24px - matches .our-title h2 smallest screens */
  }
}

.features-area {
  padding: 3em 0 4em 0;
}
.features-title h2 {
  font-size: 5rem;
  line-height: 1;
}

.main-content12-desktop .features-item h2 {
  font-size: 2rem;
}

.main-content12-desktop .features-item h2 {
  font-size: 1.8rem;
}

.careers-testimonials-area {
  padding: 4em 0;
}
.careers-testimonial-text {
  font-size: 1.6rem;
  margin-bottom: 1.5em;
  font-weight: 500;
}
.careers-author-name {
  font-size: 2rem;
}

.careers-author-position {
  font-size: 1.5rem;
}

.careers-vacancies-grid .vacancies-title h2 {
  font-size: 5rem;
  line-height: 1;
}

.vacancies-date,
.vacancies-location {
  font-size: 1rem;
}
.vacancies-description {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #000;
}
.vacancies-link {
  font-size: 1.3rem;
}
.cf7-form-wrapper .wpcf7-list-item-label {
  font-size: 1.3rem;
}
.cf7-form-wrapper .tuch-submit input[type="submit"],
.contact-area .tuch-submit .wpcf7-submit,
.tuch-form .wpcf7-submit {
  font-size: 1rem;
}
.tuch-main {
  padding: 5em 0.9375em 3.125em 0.9375em;
}
.tuch-title h2 {
  font-size: 5rem;
}

/* contact */

.contact-title h2 {
  line-height: 1;
  margin-bottom: 0.5em;
}

.tuch-submit button,
.tuch-submit input[type="submit"],
.tuch-submit .wpcf7-submit {
  font-size: 1rem;
}

/* Partner Logo Responsive Styles */
@media (max-width: 61.9375em) {
  .partner-logo-wrap {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 3.75em;
    row-gap: 2em;
  }
  
  .partner-logo {
    min-height: 70px;
  }
  
  .partner-logo img,
  .partner-logo6 img,
  .partner-logo12 img {
    max-width: 6em;
    height: 50px;
  }
}

@media (max-width: 47.9375em) {
  .partner-logo-wrap {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 2.5em;
    row-gap: 1.5em;
  }
  
  .partner-logo {
    min-height: 60px;
  }
  
  .partner-logo img,
  .partner-logo6 img,
  .partner-logo12 img {
    max-width: 5em;
    height: 45px;
  }
}

@media (max-width: 35.9375em) {
  .partner-logo-wrap {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 2em;
    row-gap: 1.25em;
  }
  
  .partner-logo {
    min-height: 50px;
  }
  
  .partner-logo img,
  .partner-logo6 img,
  .partner-logo12 img {
    max-width: 4em;
    height: 40px;
  }
}

.office-title h2 {
  line-height: 1;
  margin-bottom: 0.5em;
}

/* ============================================
   Floating Cookie Preferences Button
   ============================================ */

#floating-cookie-preferences {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  color: #FFFFFF;
  border: none;
  border-radius: 0 0.5em 0.5em 0;
  padding: 1em 0.75em;
  cursor: pointer;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  box-shadow: 0.125em 0.25em 0.75em rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.875rem !important;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  min-width: auto;
  width: auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-transform: none !important;
}

#floating-cookie-preferences svg {
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0;
  transform: rotate(-90deg);
  margin-bottom: 0.25em;
}

#floating-cookie-preferences span {
  display: inline-block;
  white-space: nowrap;
}

/* Hover effect - Desktop only */
@media (min-width: 62em) {
  #floating-cookie-preferences:hover {
    background: #003d39;
    box-shadow: 0.1875em 0.375em 1em rgba(0, 0, 0, 0.25);
    padding-left: 1em;
  }
}

/* Focus state */
#floating-cookie-preferences:focus {
  outline: 0.125em solid #FFFFFF;
  outline-offset: 0.125em;
  box-shadow: 0 0 0 0.25em rgba(0, 82, 76, 0.4);
}

/* Active state */
#floating-cookie-preferences:active {
  background: #002d29;
  transform: translateY(-50%) scale(0.96);
}

/* Tablet (768px to 991px) */
@media (max-width: 61.9375em) {
  #floating-cookie-preferences {
    padding: 0.625em 0.5em;
    font-size: 0.6875rem !important;
    gap: 0.375em;
    border-radius: 0 0.375em 0.375em 0;
  }
  
  #floating-cookie-preferences svg {
    width: 1.125em;
    height: 1.125em;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 47.9375em) {
  #floating-cookie-preferences {
    padding: 0.5em 0.375em;
    font-size: 0.625rem !important;
    gap: 0.3em;
    letter-spacing: 0.02em;
  }
  
  #floating-cookie-preferences svg {
    width: 1em;
    height: 1em;
    margin-bottom: 0.15em;
  }
}

/* Small mobile (up to 575px) */
@media (max-width: 35.9375em) {
  #floating-cookie-preferences {
    padding: 0.5em 0.3em;
    font-size: 0.5625rem !important;
    gap: 0.25em;
  }
  
  #floating-cookie-preferences svg {
    width: 0.875em;
    height: 0.875em;
    margin-bottom: 0.125em;
  }
}

/* Touch devices - remove hover padding change */
@media (hover: none) and (pointer: coarse) {
  #floating-cookie-preferences:active {
    background: #003d39;
  }
}