﻿/* ========================================
   GERAB - Main Stylesheet
   Author: Developer
   Version: 1.0
   ======================================== */

/* ========================================
   TABLE OF CONTENTS
   ========================================
   1. CSS Variables
   2. Reset & Base Styles
   3. Header Section
      3.1 Header Base
      3.2 Header Logo
      3.3 Header Navigation
      3.4 Header Dropdown (Desktop)
      3.5 Header Actions
      3.6 Header Toggler (Mobile)
      3.7 Mobile Navigation
   4. Hero Section
      4.1 Hero Base
      4.2 Hero Content
      4.3 Hero Tag Badge
      4.4 Hero Image
      4.5 Hero Floating Badge
      4.6 Hero Decorations
   5. Trusted By Section
      5.1 Trusted Base
      5.2 Marquee Animation
   6. Stats Section
   7. Solutions & Services Section
      7.1 Services Base
      7.2 Section Tag
      7.3 Services Header
      7.4 Services Cards
   8. Why Us Section
      8.1 Why Us Base
      8.2 Why Us Content
      8.3 Why Us Stats
   9. Industries Section
      9.1 Industries Base
      9.2 Industries Header
      9.3 Industries Grid
      9.4 Industries Cards
   10. Case Studies Section
      10.1 Case Studies Base
      10.2 Case Studies Header
      10.3 Slider Wrapper
      10.4 Case Studies Cards
      10.5 Card Content
      10.6 Tags
      10.7 Navigation
   11. Resources Section
      11.1 Resources Base
      11.2 Resources Header
      11.3 Resources Tabs
      11.4 Resources Cards
      11.5 Card Content
   12. CTA Section
      12.1 CTA Base
      12.2 CTA Content
   13. Footer Section
      13.1 Footer Base
      13.2 Footer Brand
      13.3 Footer Columns
      13.4 Footer Top
      13.5 Footer Middle
      13.6 Footer Bottom
   14. Animations & Keyframes
   (Responsive styles in responsive.css)
   ======================================== */

/* ========================================
   Font Families
   ======================================== */

@font-face {
font-family: 'Adelle_Sans_ARA_Regular';
src: url('../fonts/Adelle_Sans_ARA_Regular.otf') format('opentype');
}
@font-face {
font-family: 'Adelle_Sans_ARA_Eb';
src: url('../fonts/Adelle_Sans_ARA_Eb.otf') format('opentype');
}
@font-face {
font-family: 'Adelle_Sans_ARA_Bold';
src: url('../fonts/Adelle_Sans_ARA_Bold.otf') format('opentype');
}
@font-face {
font-family: 'Adelle_Sans_ARA_SemiBold';
src: url('../fonts/Adelle_Sans_ARA_SemiBold.otf') format('opentype');
}

/* ========================================
    Font Families
   ======================================== */
   .post, .page {
    margin: 0;
}
.regular{
    font-family: var(--regular);
}
.extra-bold{
    font-family: var(--extra-bold);
}
.bold{
    font-family: var(--bold);
}
.semibold{
    font-family: var(--semibold);
}

/* ========================================
    Font Sizes
   ======================================== */
   .body{
    font-size: var(--font-size-body);
   }
   .large-body{
    font-size: var(--font-size-large-body);
   }
   .small-body{
    font-size: var(--font-size-small-body);
   }
   .tiny-body{
    font-size: var(--font-size-tiny-body);
   }

   .heading1{
    font-size: var(--font-size-heading1);
   }
   .heading2{
    font-size: var(--font-size-heading2);
   }
   .heading3{
    font-size: var(--font-size-heading3);
   }
   .heading4{
    font-size: var(--font-size-heading4);
   }
   .heading5{
    font-size: var(--font-size-heading5);
   }
   .heading6{
    font-size: var(--font-size-heading6);
   }

/* ========================================
   1. CSS VARIABLES
   ======================================== */

:root {   
    /* Font Families */
    --regular: 'Adelle_Sans_ARA_Regular';
    --extra-bold: 'Adelle_Sans_ARA_Eb';
    --bold: 'Adelle_Sans_ARA_Bold';
    --semibold: 'Adelle_Sans_ARA_SemiBold';

    /* Font Sizes */
    --font-size-heading1: 48px;
    --font-size-heading2: 36px;
    --font-size-heading3: 24px;
    --font-size-heading4: 20px;
    --font-size-heading5: 18px;
    --font-size-heading6: 16px; 

    --font-size-large-body: 18px;
    --font-size-body: 16px;
    --font-size-small-body: 14px;
    --font-size-tiny-body: 12px;

    /* Primary Colors */
    --primary-color-red: #B62127;
    --primary-dark: #A01830;
    --primary-light: #e8354f;
    
    /* Secondary Colors */
    --secondary-color: #1a1a2e;
    --secondary-light: #2d2d44;

    /* Text Colors */
    --gray: #808080;
    --light-gray: #F5F5F5;
    --dark-gray: #363636;
    --text-gray: #666666;
    --text-light: #888888;
    --text-muted: #999999;
    
    /* Background Colors */
    --white: #ffffff;
    --black: #000000; 
    --gray-bg: #e8e8e8;
    --dark-bg: #1a1a2e;
    
    /* Border Colors */
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 10px 30px rgba(196, 30, 58, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-smd: 16px;
    --radius-md: 20px;
    --radius-lgd: 24px;
    --radius-lg: 32px;
    --radius-full: 50px;
}

/* ========================================
   2. RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Adelle_Sans_ARA_Regular';
    font-size: var(--font-size-large-body);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}
.container{
    max-width: 1296px;
}
a {
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
}

button:focus {
    outline: none;
}

/* ========================================
   3. HEADER SECTION
   ======================================== */

/* ----- 3.1 Header Base ----- */
.header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.header .navbar {
    padding: 0;
}

/* ----- 3.2 Header Logo ----- */
.header-brand {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    max-width: 102px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}
.header.header-scrolled .header-logo img {
    max-width: 82px;
}

/* ----- 3.3 Header Navigation ----- */
.header-collapse {
    flex-grow: 1;
    justify-content: flex-end;
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-nav-item {
    position: relative;
    margin: 0 2px;
}

.header-nav-link {
    color: var(--dark-gray);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-nav-link:hover {
    color: var(--primary-color-red);
}

/* Arrow Icon - Smooth Rotation */
.header-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 4px;
}

.header-dropdown:hover .header-arrow {
    transform: rotate(180deg);
}

/* ----- 3.4 Header Dropdown (Desktop) ----- */
.header-dropdown {
    position: relative;
}

.header-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    max-width: min(320px, calc(100vw - 40px));
    background-color: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    margin: 0;
    list-style: none;
    
    /* Animation - Scale from small to big */
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9) translateY(10px);
    transform-origin: top left;
    transition: opacity 0.25s ease, 
                transform 0.25s ease, 
                visibility 0.25s ease;
    z-index: 1000;
}

/* Show dropdown on hover */
.header-dropdown:hover .header-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.header-dropdown-menu li {
    margin: 0;
}

.header-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--dark-gray);
    transition: all 0.25s ease;
    text-decoration: none;
}

.header-dropdown-item-text {
    display: block;
    flex: 1;
    min-width: 0;
    line-height: 1.35;
}

.header-dropdown-item-title {
    display: block;
    font-weight: 500;
}

.header-dropdown-item-sub {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--gray);
}

.header-dropdown-item img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
    transition: all 0.25s ease;
    object-fit: contain;
}

.header-dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-color-red);
}

.header-dropdown-item:hover .header-dropdown-item-sub {
    color: inherit;
    opacity: 0.92;
}

.header-dropdown-item:hover img {
    opacity: 1;
}

.custom-dropdown-menu{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-width: 500px;
}






/* ----- 3.5 Header Actions ----- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.header-search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 16px;
    transition: var(--transition);
    border: none;
    background: transparent;
}

.header-search-btn:hover {
    background-color: var(--light-gray);
    color: var(--primary-color-red);
}

/* Header Search Popup */
.header-search-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header-search-popup-open {
    opacity: 1;
    visibility: visible;
}

.header-search-popup-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.header-search-popup-inner {
    position: relative;
    width: 100%;
    max-width: 560px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.header-search-popup-close {
    position: absolute;
    top: -45px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--dark-gray);
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-popup-close:hover {
    background-color: var(--light-gray);
    color: var(--primary-color-red);
}

.header-search-popup-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}

.header-search-popup-field-wrap {
    flex: 1 1 auto;
    min-width: 200px;
    position: relative;
    display: block;
}

.header-search-popup-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--primary-color-red);
    font-size: 18px;
    pointer-events: none;
    line-height: 1;
}

.header-search-popup-input {
    display: block;
    width: 100%;
    height: 52px;
    padding: 14px 18px 14px 50px!important;
    border: 1px solid var(--border-color)!important;
    border-radius: var(--radius-smd)!important;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black)!important;
    background-color: var(--white)!important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    -webkit-appearance: none!important;
    appearance: none!important;
}

.header-search-popup-input::placeholder {
    color: var(--dark-gray);
    opacity: 0.8;
}

.header-search-popup-input:focus {
    border-color: var(--primary-color-red);
    outline: none;
    box-shadow: 0 0 0 2px rgba(182, 33, 39, 0.15);
}

.header-search-popup-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    height: 52px;
    min-width: 120px;
    flex-shrink: 0;
    background-color: var(--primary-color-red);
    color: var(--white);
    border: none;
    border-radius: var(--radius-smd);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header-search-popup-submit:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

body.header-search-popup-open {
    overflow: hidden;
}
.header-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color-red);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

.header-contact-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--white);
}

.header-contact-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.header-contact-btn:hover i {
    transform: translateX(3px);
}

/* ----- 3.6 Header Toggler (Mobile Hamburger) ----- */
.header-toggler {
    display: none;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.header-toggler:focus {
    outline: none;
    box-shadow: none;
}

.header-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark-gray);
    position: relative;
    transition: background-color 0.3s ease;
}

.header-toggler-icon::before,
.header-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--dark-gray);
    transition: transform 0.3s ease, top 0.3s ease;
}

.header-toggler-icon::before {
    top: -7px;
}

.header-toggler-icon::after {
    top: 7px;
}

/* Hamburger Animation when menu is open */
.header-toggler[aria-expanded="true"] .header-toggler-icon {
    background-color: transparent!important;
}

.header-toggler[aria-expanded="true"] .header-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
    background-color: var(--primary-color-red);
}

.header-toggler[aria-expanded="true"] .header-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: var(--primary-color-red);
}

/* Hover effect */
.header-toggler:hover .header-toggler-icon,
.header-toggler:hover .header-toggler-icon::before,
.header-toggler:hover .header-toggler-icon::after {
    background-color: var(--primary-color-red);
}

/* ========================================
   4. HERO SECTION
   ======================================== */

/* ----- 4.1 Hero Base ----- */
.hero {
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
    background-color: #F6F6F6;
    background-image: url('../images/hero-background.png');
    background-size: cover;
    background-repeat: no-repeat;
}

/* ----- 4.2 Hero Content ----- */
.hero-content {
    padding-right: 30px;
}

/* ----- 4.3 Hero Tag Badge ----- */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid var(--primary-color-red);
    border-radius: var(--radius-smd);
    padding: 10px 20px;
    margin-bottom: 25px;
}

.hero-tag-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.hero-tag-arrow svg {
    display: block;
}

.hero-tag-text {
    font-size: var(--font-size-large-body);
    font-weight: var(--regular);
    color: var(--primary-color-red);
}

/* ----- Hero Title ----- */
.hero-title {  
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

/* ----- Hero Description ----- */
.hero-description {
    font-size: var(--font-size-body);
    color: var(--dark-gray);
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 480px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

/* ----- Hero CTA Button ----- */
/* Hero Button Wrapper */
.hero-button-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Primary Button (Red Background) */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color-red);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
    text-decoration: none;
    border: 2px solid var(--primary-color-red);
}

.hero-cta-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    text-decoration: none;
}

.hero-cta-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateX(5px);
}

.hero-cta-btn img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover img {
    transform: translateX(5px);
}

/* Secondary Button (White Background with Red Border) */
.hero-cta-btn-secondary {
    background-color: var(--white);
    color: var(--primary-color-red);
    border: 2px solid var(--primary-color-red);
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.hero-cta-btn-secondary:hover {
    background-color: var(--primary-color-red);
    color: var(--white);
    border-color: var(--primary-color-red);
    text-decoration: none;
}

.hero-cta-btn-secondary i {
    color: var(--primary-color-red);
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero-cta-btn-secondary:hover i {
    color: var(--white);
    transform: translateX(5px);
}

.hero-cta-btn-secondary img {
    filter: none;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-cta-btn-secondary:hover img {
    filter: brightness(0) invert(1);
    transform: translateX(5px);
}

/* ----- Service Page Hero Variant ----- */
.hero-service {
    padding: 80px 0 120px;
}

.hero-service .hero-image-wrapper {
    padding-left: 50px;
}

.hero-service .hero-image {
    height: 380px;
    border-radius: var(--radius-lg);
}

/* ========================================
   OVERVIEW SECTION (Service Page)
   ======================================== */

.overview {
    padding: 60px 0;
    background-color: var(--white);
    overflow: hidden;
}

.overview-bg {
    background-color: var(--primary-color-red);
    position: relative;
    border-top-left-radius: 60px;      
    border-bottom-left-radius: 60px;
}
.overview-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color-red);
    width: 120vw;
    border-top-left-radius: 60px;      
    border-bottom-left-radius: 60px;
}
 

.overview-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 625px;
    position: relative;
    z-index: 1;
}

/* ----- Overview Image ----- */
.overview-image {
    width: 680px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px 40px 40px 0; 
    margin-left: -100px;
}

.overview-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block; 
    border: 30px solid var(--white); 
    border-bottom-right-radius: 60px;
    border-top-right-radius: 60px;
    border-left: none;
    
}

/* ----- Overview Content ----- */
.overview-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.overview-content-inner {
    max-width: 700px;
    padding-left: 15px;
}

/* ----- Overview Tag Badge ----- */
.overview-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: var(--radius-smd);
    padding: 8px 18px;
    margin-bottom: 20px;
    width: fit-content;
}

.overview-tag-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.overview-tag-arrow svg {
    display: block;
}

.overview-tag-text {
    font-size: var(--font-size-large-body);
    font-weight: var(--regular);
    color: var(--white);
}

/* ----- Overview Title ----- */
.overview-title { 
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

/* ----- Overview Description ----- */
.overview-description {
    max-width: 100%;
}

.overview-description p { 
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 18px;
}

.overview-description p:last-child {
    margin-bottom: 0;
}

/* ----- Overview Responsive ----- */
/* ========================================
   ABOUT PAGE - INTRODUCTION SECTION
   ======================================== */

.about-intro {
    padding: 60px 0;
    background-color: var(--white);
    overflow: hidden;
}

.about-intro-card {
    position: relative;
    
 
    overflow: hidden;
}
.about-intro-label-wrapper {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #fff;
    padding: 0 0 20px 20px;
    border-bottom-left-radius: 32px;
}
.about-intro-label-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -41px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-top-right-radius: 20px;
    box-shadow: 20px -20px 0 0px #ffffff;
}
.about-intro-label-wrapper::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -41px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-top-right-radius: 20px;
    box-shadow: 20px -20px 0 0px #ffffff;
}
.about-intro-label { 
    background-color: var(--black);
    color: var(--white); 
    font-weight: var(--extra-bold);
    padding: 15px 40px;
    border-radius: 24px;
    letter-spacing: 0.02em;
    display: flex;
    z-index: 2;
    position: relative;
}

.about-intro-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 400px;
    gap: 30px;
}

.about-intro-image {
    flex: 0 0 42%;
    max-width: 424px;
    position: relative;
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.about-intro-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 50px 50px 50px 40px;
    background-color: var(--light-gray);
    border-radius: var(--radius-lg);
}

.about-intro-content-inner {
    max-width: 100%;
}

.about-intro-title {
    color: var(--primary-color-red);
    line-height: 1.3;
    margin-bottom: 24px;
}

.about-intro-description p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: var(--font-size-body);
}

.about-intro-description p:last-child {
    margin-bottom: 0;
}

/* About Intro Responsive */
/* ========================================
   ABOUT PAGE - VISION & MISSION SECTION
   ======================================== */

.about-vision-mission {
    padding: 60px 0;
    background-color: var(--white);
    overflow: hidden;
}

.about-vm-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 480px;
}

/* Left: Image with decorative red arcs */
.about-vm-image-col {
    max-width: 442px;
    display: flex;
    align-items: stretch;
}

.about-vm-image-bg {
    position: relative; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0;
}

.about-vm-arc {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-vm-arc-light {
    width: 280px;
    height: 280px;
    left: -80px;
    bottom: -60px;
    background: rgba(182, 33, 39, 0.25);
}

.about-vm-arc-dark {
    width: 180px;
    height: 180px;
    left: -30px;
    bottom: 20px;
    background: rgba(160, 24, 48, 0.4);
}

.about-vm-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: right center;
    display: block;
}

/* Center: Dotted line + gear icons */
.about-vm-connector {
    flex: 0 0 60px;
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
    height: 240px;
    margin: auto;
    margin-left: 20px;
}

.about-vm-dotted-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 0;
    border-left: 2px dashed var(--primary-color-red);
    transform: translateX(-50%);
    z-index: 0;
}

.about-vm-gear {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-dark);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.about-vm-gear-top {
    margin-top: 0px;
}

.about-vm-gear-bottom {
    margin-top: auto;
    margin-bottom: 0px;
}

.about-vm-gear svg {
    width: 32px;
    height: 32px;
}

/* Right: Vision + Mission blocks – card style */
.about-vm-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    padding-left: 20px;
}

.about-vm-block {
    border-radius: 12px;
    padding: 36px 40px;
    position: relative;
}

.about-vm-block-vision {
    background-color: var(--black);
}

.about-vm-block-vision .about-vm-block-title {
    color: var(--primary-color-red);
    margin-bottom: 16px; 
}

.about-vm-block-vision .about-vm-block-text {
    color: var(--white);
    line-height: 1.6;
    margin: 0;
    font-size: var(--font-size-body);
    font-weight: 400;
}

.about-vm-block-mission {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.about-vm-block-mission .about-vm-block-title {
    color: var(--black);
    margin-bottom: 16px; 
}

.about-vm-block-mission .about-vm-block-text {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
    font-size: var(--font-size-body);
    font-weight: 400;
}

/* Vision & Mission Responsive */
/* ========================================
   ABOUT PAGE - VALUES THAT GUIDE US
   ======================================== */

.about-values {
    padding: 60px 0 220px;
    background-color: var(--white);
    overflow: visible;
}

.about-values-header {
    text-align: center; 
    margin: 0 auto 56px;
}

.about-values-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px; 
    border: 1px solid var(--primary-color-red);
    border-radius: var(--radius-smd);
    padding: 10px 20px;
    margin-bottom: 24px;
}

.about-values-tag-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.about-values-tag-arrow svg {
    display: block;
}

.about-values-tag-text {
    font-size: var(--font-size-body);
    color: var(--primary-color-red);
    font-weight: 500;
}

.about-values-title {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-values-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
    font-size: var(--font-size-body);
}

/* Values visualization */
.about-values-viz {
    position: relative;
    min-height: 580px;
    max-width: 900px;
    margin: 0 auto;
}

.about-values-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 630px;
    height: 630px;
    z-index: 1;
}
.about-values-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

 
 
.about-values-center-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

/* Value cards */
.about-values-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    max-width: 300px;
}

.about-values-card-top-left {
    top: 4%;
    left: 0%;
}

.about-values-card-top-right {
    top: 4%;
    right: 0%;
    left: auto;
}

.about-values-card-mid-left {
    top: 58%;
    left: 0%;
}

.about-values-card-mid-right {
    top: 58%;
    right: 0%;
    left: auto;
}

.about-values-card-bottom-center {
    bottom: -22%;
    left: 50%;
    transform: translateX(-50%);
}

.about-values-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-values-card-icon svg {
    width: 32px;
    height: 32px;
}

.about-values-card-text {
    font-size: var(--font-size-body);
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.35;
}

/* Arrows connecting center to cards */
.about-values-arrow {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.about-values-arrow img {
    max-width: 120px;
    height: auto;
    opacity: 0.9;
}

.about-values-arrow-top-left {
    top: 22%;
    left: 14%;
    width: 100px;
    transform: rotate(285deg);
}

.about-values-arrow-top-right {
    top: 22%;
    right: 13%;
    left: auto;
    width: 100px;
    transform: rotate(346deg) rotateX(180deg);
}

.about-values-arrow-mid-left {
    top: 44%;
    left: 14%;
    width: 90px;
    transform: rotate(94deg) rotateX(180deg);
}

.about-values-arrow-mid-right {
    top: 44%;
    right: 14%;
    left: auto;
    width: 90px;
    transform: rotate(45deg);
}

.about-values-arrow-bottom-center {
    bottom: -4%;
    left: 50%;
    transform: translateX(-50%) rotate(51deg);
    width: 80px;
}

/* Values section responsive */
/* ========================================
   ABOUT PAGE - CASE STUDIES / ACHIEVEMENTS
   ======================================== */

.about-casestudies {
    padding: 120px 0;
    background-color:#f5f5f5;
}

.about-cs-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.about-cs-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-smd);
    padding: 10px 24px;
    margin-bottom: 24px;
}

.about-cs-tag-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.about-cs-tag-arrow svg {
    display: block;
    width: 8px;
    height: 12px;
}

.about-cs-tag-text {
    font-size: var(--font-size-body);
    color: var(--secondary-color);
    font-weight: var(--regular);
}

.about-cs-title {
    color: var(--primary-color-red);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-cs-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
    font-size: var(--font-size-body);
}

.about-cs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.about-cs-card {
    background-color: var(--white);
    border-radius:var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-cs-card:hover {
    box-shadow: var(--shadow-md);
}

.about-cs-card:nth-child(1),
.about-cs-card:nth-child(2),
.about-cs-card:nth-child(3) {
    grid-column: span 2;
}

.about-cs-card:nth-child(4),
.about-cs-card:nth-child(5) {
    grid-column: span 3;
}

.about-cs-card-title {
    color: var(--secondary-color);
    margin: 0;
    padding: 24px 24px 16px;
    line-height: 1.4;
    font-size: var(--font-size-heading5);
}

.about-cs-card-image {
    padding: 0 24px 24px;
    line-height: 0;
}

.about-cs-card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    max-height: 220px;
}

/* Case studies responsive */
/* ========================================
   ABOUT PAGE - LEGACY TIMELINE + FULLWIDTH SLIDER
   ======================================== */

.about-legacy {
    padding: 0;
    background-color: var(--white);
    overflow: hidden;
}

.about-legacy-row { 
    min-height: 640px;
}

/* Left: Header in container, slider full width */
.about-legacy-left { 
    width: 100%;
    max-width: 100%;
    padding: 60px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.about-legacy-left .container {
    width: 100%;
    max-width: 1296px;
    margin: 0 auto;
    padding: 0 24px;
    flex-shrink: 0;
}

.about-timeline-header {
    margin-bottom: 32px;
    text-align: center;
}

.about-timeline-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--primary-color-red);
    border-radius: var(--radius-smd);
    padding: 10px 20px;
    margin-bottom: 24px;
}

 

.about-timeline-tag-text {
    font-size: var(--font-size-body);
    color: var(--secondary-color);
    font-weight: var(--regular);
}

.about-timeline-title {
    color: var(--primary-color-red);
    margin-bottom: 16px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

.about-timeline-subtitle {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
    font-size: var(--font-size-body); 
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Slider: starts at container left, full width to the right */
.about-timeline-swiper-wrap {
    position: relative;
    padding-bottom: 200px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: max(24px, calc((100vw - 1296px) / 2 + 24px));
    box-sizing: border-box;
}
 .about-timeline-swiper-wrap .swiper-wrapper{
    align-items: flex-end;
 }
.about-timeline-swiper {
    overflow: visible;
    margin-bottom: 0;
    width: 100%;
}

.about-timeline-swiper .swiper-slide {
    width: 400px;
    max-width: 400px;
    flex-shrink: 0;
}

.about-timeline-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 32px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding-bottom: 0;
    position: relative;
}

.about-timeline-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    padding: 20px; 
}

.about-timeline-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.about-timeline-card-list {
    list-style: none;
    margin: 0 24px 24px;
    padding: 0;
}

.about-timeline-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: var(--font-size-small-body);
    color: var(--dark-gray);
    line-height: 1.5;
}

.about-timeline-card-list li:last-child {
    margin-bottom: 0;
}

.about-timeline-arrow {
    flex-shrink: 0;
    margin-top: 4px;
}

.about-timeline-arrow svg {
    display: block;
}

/* Vertical dotted line connecting card to year marker */
.about-timeline-connector-line {
    width: 0;
    height: 24px;
    margin: 0 auto;
    border-left: 2px solid var(--border-color);
    flex-shrink: 0;
    position: absolute;
    left: 0;
    z-index: 2;
    right: 0;
}
.about-timeline-year-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -90px;
}
/* Year pill: white bg, thin black border, black text (screenshot style) */
.about-timeline-year {
    display: inline-block;
    background-color: var(--white);
    border: 1px solid var(--black);
    border-radius: var(--radius-full);
    padding: 6px 30px;
    font-size: var(--font-size-body);
    font-weight: 600;
    color: var(--black);
    box-shadow: none;
    text-align: center;
}

/* Dot above year: solid black (connects card → dot → year) */
.about-timeline-dot {
    margin-top: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--white);
    display: block;
    border: 1px solid var(--black);
    position: relative;
}
.about-timeline-dot::after{
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
}
/* Horizontal dotted timeline line */
 

/* Nav: below central year wrap, red squares, white arrows */
.about-timeline-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    justify-content: center;
    z-index: 3;
}

.about-timeline-nav-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 8px;
    background-color: var(--primary-color-red);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.about-timeline-nav-btn:hover {
    background-color: var(--primary-dark);
}

.about-timeline-nav-btn.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
 

/* Legacy section responsive */
/* ========================================
   NUMBERS THAT SPEAK FOR US SECTION
   ======================================== */

.about-numbers {
    padding: 80px 0;
    background-color: var(--white);
}

.about-numbers-header {
    margin-bottom: 48px;
    text-align: center;
}

.about-numbers-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--primary-color-red);
    border-radius: var(--radius-smd);
    padding: 10px 20px;
    margin-bottom: 24px;
}

.about-numbers-tag-arrow {
    display: inline-flex;
    line-height: 0;
}

.about-numbers-tag-arrow svg {
    display: block;
}

.about-numbers-tag-text {
    font-size: var(--font-size-body);
    font-weight: var(--regular);
    color: var(--secondary-color);
}

.about-numbers-title {
    color: var(--primary-color-red);
    margin-bottom: 16px;
    line-height: 1.3;
    text-align: center;
}

.about-numbers-subtitle {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
    font-size: var(--font-size-body);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-numbers-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-numbers-image-col {
    flex: 0 0 50%;
    max-width: 50%;
}

.about-numbers-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    max-height: 450px;
    display: flex;
    position: relative;
}
.about-numbers-image-inner-right{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 75px;
    background-color: var(--white);
    border-top-left-radius: var(--radius-lg);
}
.about-numbers-image-inner-right::after {
    content: '';
    position: absolute;
    right: 1px;
    bottom: 75px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-right-radius: 22px;
    box-shadow: 20px 20px 0 0px #ffffff;
}
.about-numbers-image-inner-right::before {
    content: '';
    position: absolute;
    left: -40px;
    bottom: 0px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-right-radius: 22px;
    box-shadow: 20px 20px 0 0px #ffffff;
}
.about-numbers-image-inner-left{
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 75px;
    background-color: var(--white);
    border-bottom-right-radius: var(--radius-lg);
}
.about-numbers-image-inner-left::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border-top-left-radius: 20px;
    box-shadow: -20px -20px 0 0px #ffffff;
}
.about-numbers-image-inner-left::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-top-left-radius: 20px;
    box-shadow: -20px -20px 0 0px #ffffff;
}
.about-numbers-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1;
}

.about-numbers-cards-col {
    flex: 1;
    min-width: 0;
}

.about-numbers-grid {
    display: flex; 
    gap: 20px;
    flex-wrap: wrap;
}
.about-numbers-grid .about-numbers-card:nth-child(1){
width: 25%;
}
.about-numbers-grid .about-numbers-card:nth-child(2){
width: 34%;
}
.about-numbers-grid .about-numbers-card:nth-child(3){
width: 34%;
}
.about-numbers-grid .about-numbers-card:nth-child(4){
width: 48%;
}
.about-numbers-grid .about-numbers-card:nth-child(5){
width: 48%;
}
.about-numbers-card {
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.about-numbers-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-numbers-card-light {
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.about-numbers-card-dark {
    background-color: var(--secondary-color);
    border: none;
}

.about-numbers-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--primary-color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-numbers-card-icon svg {
    width: 32px;
    height: 32px;
}

.about-numbers-card-icon svg path {
    stroke: var(--white);
}

.about-numbers-card-light .about-numbers-card-number {
    color: var(--black);
}

.about-numbers-card-light .about-numbers-card-label {
    color: var(--dark-gray);
}

.about-numbers-card-dark .about-numbers-card-number,
.about-numbers-card-dark .about-numbers-card-label {
    color: var(--white);
}

.about-numbers-card-number {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    line-height: 1.2;
}

.about-numbers-card-label {
    font-size: var(--font-size-body);
    font-weight: var(--regular);
    line-height: 1.4;
}

/* Numbers section responsive */
/* ========================================
   LEADERSHIP TEAM SECTION
   ======================================== */

.about-leadership {
    padding: 80px 0;
    background-color: var(--white);
}

.about-leadership-header {
    margin-bottom: 48px;
    text-align: center;
}

.about-leadership-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--primary-color-red);
    border-radius: var(--radius-smd);
    padding: 10px 20px;
    margin-bottom: 24px;
}

.about-leadership-tag-arrow {
    display: inline-flex;
    line-height: 0;
}

.about-leadership-tag-arrow svg {
    display: block;
}

.about-leadership-tag-text {
    font-size: var(--font-size-body);
    font-weight: var(--regular);
    color: var(--black);
}

.about-leadership-title {
    color: var(--primary-color-red);
    margin-bottom: 16px;
    line-height: 1.3;
    text-align: center;
}

.about-leadership-intro {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0 auto;
    font-size: var(--font-size-body); 
    text-align: center;
}

/* Main leader card */
.about-leadership-main-card {
    display: flex;
    align-items: stretch;
    gap: 30px;
    background-color: var(--secondary-color);
    border-radius: var(--radius-lg);
    overflow: visible;
    margin-bottom: 40px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.about-leadership-main-image-wrap { 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; 
    overflow: hidden;
    position: relative;
    border-radius: 32px;
}

.about-leadership-main-image-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: 0;
    transform: translate(-50%, -45%);
    width: 100%;
    height: 186px;
    border-radius: 32px;
    background-color: var(--primary-color-red); 
    z-index: 1;
}

.about-leadership-main-image-wrap img {
    width: 100%;
    height: 200px; 
    object-fit: cover;
    position: relative;
    z-index: 2;
}
.about-leadership-main-content {
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-leadership-main-name {
    color: var(--white);
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    margin-bottom: 8px;
    line-height: 1.3;
}

.about-leadership-main-title {
    color: var(--white);
    font-size: var(--font-size-body);
    margin-bottom: 20px;
    opacity: 0.95;
}

.about-leadership-main-bio {
    color: var(--white);
    font-size: var(--font-size-body);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Team grid */
.about-leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-leadership-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-leadership-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.about-leadership-card-info {
    flex: 1;
    min-width: 0;
}

.about-leadership-card-name {
    color: var(--black);
    font-size: var(--font-size-large-body);
    margin-bottom: 4px;
    line-height: 1.3;
}

.about-leadership-card-title {
    color: var(--dark-gray);
    font-size: var(--font-size-body);
    margin: 0;
    line-height: 1.4;
}

.about-leadership-card-social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.about-leadership-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color-red);
    color: var(--white);
    transition: var(--transition);
}

.about-leadership-social-link:hover {
    background-color: var(--primary-dark);
}

.about-leadership-social-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

.about-leadership-social-link svg path {
    fill: var(--white);
}

/* Leadership section responsive */
/* ========================================
   OUR GLOBAL NETWORK SECTION
   ======================================== */

.about-global-network {
    padding: 80px 0;
    background-color: var(--white);
}

.about-global-network-header {
    text-align: center;
    margin-bottom: 0;
}

.about-global-network-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--primary-color-red);
    border-radius: var(--radius-smd);
    padding: 10px 20px;
    margin-bottom: 24px;
}

.about-global-network-tag-arrow {
    display: inline-flex;
    line-height: 0;
}

.about-global-network-tag-arrow svg {
    display: block;
}

.about-global-network-tag-text {
    font-size: var(--font-size-body);
    font-weight: var(--regular);
    color: var(--secondary-color);
}

.about-global-network-title {
    color: var(--primary-color-red);
    margin-bottom: 16px;
    line-height: 1.3;
    text-align: center;
}

.about-global-network-intro {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0 auto;
    font-size: var(--font-size-body); 
    text-align: center;
}
/* ========================================
   CONTACT PAGE - GET IN TOUCH
   ======================================== */

.contact-getintouch {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-getintouch-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-getintouch-title {
    color: var(--primary-color-red);
    margin-bottom: 8px;
    line-height: 1.3;
}

.contact-getintouch-subtitle {
    color: var(--secondary-color);
    max-width: 520px;
    margin: 0 auto;
    font-size: var(--font-size-body);
    line-height: 1.6;
}

.contact-getintouch-row {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 32px;
    align-items: flex-start;
}

.contact-getintouch-form-col {
    min-width: 0;
}

.contact-getintouch-form {
    background-color: var(--white);
}

.contact-getintouch-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
    margin-bottom: 20px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-field-full {
    margin-bottom: 20px;
}

.contact-field-label {
    font-size: var(--font-size-small-body);
    color: var(--secondary-color);
}

.contact-field-input,
.contact-field-select,
.contact-field-textarea {
    width: 100%;
    padding: 12px 14px!important;
    border-radius: var(--radius-smd)!important;
    border: 1px solid var(--border-color)!important;
    font-size: var(--font-size-body)!important;
    color: var(--secondary-color)!important;
    font-family: var(--regular)!important;
    outline: none;
    background-color: #FAFAFA!important;
    transition: border-color 0.2s ease, background-color 0.2s ease!important;
}

.contact-field-input::placeholder,
.contact-field-textarea::placeholder {
    color: #B3B3B3;
}

.contact-field-input:focus,
.contact-field-select:focus,
.contact-field-textarea:focus {
    border-color: var(--primary-color-red);
    background-color: var(--white);
}

.contact-field-select-wrap {
    position: relative;
}

.contact-field-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4.16536 7.5L9.9987 13.3333L15.832 7.5' stroke='%23363636' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px 20px;
    padding-right: 40px;
}

.contact-field-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-smd);
    border: none;
    background-color: var(--primary-color-red);
    color: var(--white);
    font-size: var(--font-size-body);
    font-family: var(--bold);
    cursor: pointer;
    transition: var(--transition);
}

.contact-submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.contact-submit-btn svg {
    display: block;
}

.contact-getintouch-info-col {
    min-width: 0;
}

.contact-info-card {
    position: relative;
    background-color: #000;
    color: var(--white);
    border-radius: 16px;
    padding: 32px; 
    overflow: hidden;
}

.contact-info-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-city {
    color: var(--white);
    margin: 0 0 4px;
}

.contact-info-country {
    color: #E0E0E0; 
    margin: 0;
}

.contact-info-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background-color: var(--primary-color-red);
    color: var(--white);
    font-size: var(--font-size-small-body);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon img {
    max-width: 24px;
    height: auto;
    display: block;
}

.contact-info-text {
    color: #E0E0E0; 
    margin: 0;
    line-height: 1.5;
}

.contact-info-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 0;
    border: none;
    background: none;
    color: var(--white);
    font-size: var(--font-size-body);
    cursor: pointer;
    position: relative;
    z-index: 2;
}

 

.contact-info-map-link svg {
    display: block;
}

.contact-info-card-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0; 
    pointer-events: none;
    width: 100%;
    height: 100%; 
}
/* ========================================
   CONTACT PAGE - REGIONAL OFFICES
   ======================================== */

.contact-offices {
    padding: 80px 0 90px;
    background-color: var(--white);
}

.contact-offices-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-offices-title {
    color: var(--primary-color-red);
    margin-bottom: 6px;
    line-height: 1.3;
}

.contact-offices-subtitle {
    color: var(--secondary-color);
    font-size: var(--font-size-body);
    margin: 0;
}

.contact-offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
    gap: 24px;
}
.contact-office-card:nth-child(1) {
   grid-column: 1 / 4;
  grid-row: 1 / 2;
}
.contact-office-card:nth-child(2) {
   grid-column: 4 / 7;
  grid-row: 1 / 2;
}
.contact-office-card:nth-child(3) {
   grid-column: 1 / 3;
  grid-row: 2 / 3;
}
.contact-office-card:nth-child(4) {
   grid-column: 3 / 5;
  grid-row: 2 / 3;
}
.contact-office-card:nth-child(5) {
   grid-column: 5 / 7;
  grid-row: 2 / 3;
}

.contact-office-card {
    background: linear-gradient(
  180deg,
  rgba(182, 33, 39, 0) 0%,
  rgba(182, 33, 39, 0.05) 100%
);
    border-radius:16px;
    border: 1px solid #E0E0E0; 
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.contact-office-card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-office-city {
    margin: 0;
    color: #111111; 
}

.contact-office-country {
    margin: 0;
    color: #B62127; 
}

.contact-office-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    justify-content: space-between;
}

.contact-office-location-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-office-icon {
width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E0E0E0;
    flex-shrink: 0;
    border-radius: 12px;
    margin-bottom: 25px;
}

.contact-office-icon img {
    max-width: 16px;
    height: auto;
    display: block;
}

.contact-office-address {
    margin: 0;
    color: #404040;
    line-height: 1.5;
    word-break: break-word;
}

.contact-office-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin-top: 4px;
    border: none;
    background: none;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
}

 

.contact-office-map-link svg {
    display: block;
}
.contact-map{
    padding: 80px 0;
}
.contact-map-wrapper{
    border-radius: 16px;
    overflow: hidden;
}
.contact-map-wrapper iframe{
    width: 100%;
    height: 540px;
    border: none;
    border-radius: 16px;
}
/* ========================================
   THE CHALLENGE SECTION
   ======================================== */

.the-challenge {
    padding: 80px 0;
    background-color: #000;
}

.the-challenge-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 40px;
    align-items: center;
}
 

/* ----- The Challenge Tag Badge ----- */
.the-challenge-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: 1px solid var(--white);
    border-radius: var(--radius-smd);
    padding: 8px 18px;
    margin-bottom: 25px;
    width: fit-content;
}

.the-challenge-tag-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.the-challenge-tag-bullet svg {
    display: block;
}

.the-challenge-tag-text {
    font-size: var(--font-size-large-body);
    font-weight: var(--regular);
    color: var(--white);
}

/* ----- The Challenge Title ----- */
.the-challenge-title {
    color: var(--primary-color-red);
    line-height: 1.3;
    margin-bottom: 20px;
}

/* ----- The Challenge Description ----- */
.the-challenge-description {
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ----- The Challenge List ----- */
.the-challenge-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.the-challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 10px 20px;
    transition: var(--transition);
}

.the-challenge-item:hover {
    transform: translateX(5px);
}

.the-challenge-item-bullet {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-top: 11px;
}

.the-challenge-item-bullet svg {
    display: block;
    width: 32px;
    height: 8px;
}

.the-challenge-item-text {
    color: var(--dark-gray);
    line-height: 1.6;
    flex: 1;
}

/* ----- The Challenge Image ----- */
.the-challenge-image {
    position: relative;
}

.the-challenge-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* ----- Challenge Experience Overlay ----- */
.challenge-experience-overlay-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #000;
    padding: 20px 0 0 20px;
    border-top-left-radius: 20px;
    z-index: 2;
}

/* curve shape */
.challenge-experience-overlay-wrapper::after {
    content: '';
    position: absolute;
    right: 1px;
    bottom: 119px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-right-radius: 22px;
    box-shadow: 20px 20px 0 0px #000;
}

/* curve shadow */
.challenge-experience-overlay-wrapper::before {
    content: '';
    position: absolute;
    left: -40px;
    bottom: 0px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-right-radius: 22px;
    box-shadow: 20px 20px 0 0px #000;
}

.challenge-experience-overlay {
    position: relative;
    background-color: var(--primary-color-red);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.challenge-experience-number { 
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.challenge-experience-label { 
    font-weight: var(--regular);
    color: var(--white);
    line-height: 1.3;
}

/* ----- The Challenge Responsive ----- */
/* ========================================
   OUR APPROACH SECTION
   ======================================== */

.our-approach {
    padding: 80px 0;
    background-color: #fff;
}

/* ----- Our Approach Header ----- */
.our-approach-header {
    text-align: center;
    margin-bottom: 60px;
}

.our-approach-grid{
    display: grid; 
    grid-template-columns:   1fr 0.8fr;
    gap: 30px;
    
}

/* ----- Our Approach Tag Badge ----- */
.our-approach-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    border: 1px solid var(--primary-color-red);
    border-radius: var(--radius-smd);
    padding: 8px 18px;
    margin-bottom: 25px;
    width: fit-content;
}

.our-approach-tag-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.our-approach-tag-arrow svg {
    display: block;
}

.our-approach-tag-text {
    font-size: var(--font-size-large-body);
    font-weight: var(--regular);
    color: #000;
}

/* ----- Our Approach Title ----- */
.our-approach-title {
    color: var(--primary-color-red);
    line-height: 1.3;
    margin-bottom: 20px;
}

/* ----- Our Approach Description ----- */
.our-approach-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 100%; 
}

 
/* ----- Our Approach Items ----- */
.our-approach-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.our-approach-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #E0E0E0;
}

.our-approach-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* ----- Our Approach Item Icon ----- */
.our-approach-item-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background-color: var(--primary-color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-approach-item-icon svg {
    display: block;
}

/* ----- Our Approach Item Content ----- */
.our-approach-item-content {
    flex: 1;
}

.our-approach-item-title {
    color: var(--primary-color-red);
    line-height: 1.3;
    margin-bottom: 8px;
}

.our-approach-item-text {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* ----- Our Approach Image ----- */
.our-approach-image {
    position: relative; 
}

.our-approach-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block; 
}

/* ----- Happy Clients Overlay ----- */
.happy-clients-overlay-wrapper{
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: #fff;
    padding: 20px  20px 0 0 ;
    border-top-right-radius: 20px;
}
.happy-clients-overlay-wrapper::before{
    content: '';
    position: absolute;
    right: -40px;
    bottom: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-left-radius: 22px;
    box-shadow: -20px 20px 0 0px #ffffff;
}
.happy-clients-overlay-wrapper::after{
    content: '';
    position: absolute;
    left: 0px;
    bottom: 131px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-left-radius: 22px;
    box-shadow: -20px 20px 0 0px #ffffff;
}
.happy-clients-overlay {
    background-color: #000;
    border: 1px solid var(--white);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
    position: relative;
}

.happy-clients-profiles {
    display: flex;
    align-items: center;
    margin-right: 2px;
}

.happy-clients-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--white);
    object-fit: cover;
    display: block;
    margin-left: -10px;
    position: relative;
    background-color: var(--white);
}

.happy-clients-avatar:first-child {
    margin-left: 0;
    z-index: 2;
}

.happy-clients-avatar:nth-child(2) {
    z-index: 1;
}

.happy-clients-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.happy-clients-number { 
    color: var(--white);
    line-height: 1;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.happy-clients-label {
    font-size: 13px;
    font-weight: var(--regular);
    color: var(--white);
    line-height: 1.3;
    opacity: 0.95;
}

/* ----- Our Approach Responsive ----- */
/* ========================================
   PARTNERS LOGO MARQUEE SECTION
   ======================================== */

.partners-marquee {
    padding: 80px 0;
    background-color: #000;
    overflow: hidden;
}

.partners-marquee-wrapper {
    width: 100%;
}

/* ----- Partners Marquee Header ----- */
.partners-marquee-header {
    text-align: center;
    margin-bottom: 50px;
}

/* ----- Partners Marquee Tag Badge ----- */
.partners-marquee-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    border: 1px solid #000;
    border-radius: var(--radius-smd);
    padding: 8px 18px;
    margin-bottom: 25px;
    width: fit-content;
}

.partners-marquee-tag-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.partners-marquee-tag-arrow svg {
    display: block;
}

.partners-marquee-tag-text {
    font-size: var(--font-size-large-body);
    font-weight: var(--regular);
    color: #000;
}

/* ----- Partners Marquee Title ----- */
.partners-marquee-title {
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

/* ----- Partners Marquee Description ----- */
.partners-marquee-description {
    color: var(--white);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 900px;
}

.partners-marquee-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

/* Fade edges */
.partners-marquee-track-container::before,
.partners-marquee-track-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee-track-container::before {
    left: 0;
    background: linear-gradient(to right, #3d3d3d 0%, transparent 100%);
}

.partners-marquee-track-container::after {
    right: 0;
    background: linear-gradient(to left, #3d3d3d 0%, transparent 100%);
}

.partners-marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
    padding: 0 40px;
}

/* Pause on hover */
.partners-marquee-track-container:hover .partners-marquee-track {
    animation-play-state: paused;
}

.partners-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 196px;
    height: 80px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 15px 25px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.partners-logo-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
}

.partners-logo-item img {
    max-height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partners-logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* Responsive */
/* ========================================
   HEALTHCARE IT LANDSCAPE SECTION
   ======================================== */

.healthcare-landscape {
    padding: 80px 0;
    background-color: var(--white);
}

.healthcare-landscape-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* ----- Healthcare Header (Top Section) ----- */
.healthcare-landscape-header {
    text-align: center;
    margin-bottom: 50px;
}

/* ----- Healthcare Tag ----- */
.healthcare-landscape-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid var(--primary-color-red);
    border-radius: var(--radius-smd);
    padding: 10px 20px;
    margin-bottom: 20px;
}

.healthcare-tag-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.healthcare-tag-dot svg {
    display: block;
}

.healthcare-tag-text {
    font-size: var(--font-size-large-body);
    font-weight: var(--regular);
    color: var(--primary-color-red);
}

/* ----- Healthcare Title ----- */
.healthcare-landscape-title {
    color: var(--primary-color-red);
    line-height: 1.3;
    margin-bottom: 20px;
}

/* ----- Healthcare Description ----- */
.healthcare-landscape-description {
    max-width: 1200px;
    margin: 0 auto;
}

.healthcare-landscape-description p {
    color: var(--black);
    line-height: 1.6;
    margin: 0; 
}

/* ----- Healthcare Image Wrapper ----- */
.healthcare-landscape-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 20px;
}

.healthcare-landscape-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.healthcare-man-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ----- Healthcare Stats Cards ----- */
.healthcare-stats-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 30px;
}

.healthcare-stat-card {
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.healthcare-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.healthcare-stat-card-white {
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.healthcare-stat-card-black {
    background-color: var(--black);
    border: 1px solid var(--black);
}

.healthcare-stat-number {
    line-height: 1.2;
    margin-bottom: 10px;
}

.healthcare-stat-card-white .healthcare-stat-number {
    color: var(--primary-color-red);
}

.healthcare-stat-card-black .healthcare-stat-number {
    color: var(--white);
}

.healthcare-stat-label {
    font-size: var(--font-size-large-body);
    line-height: 1.4;
    margin: 0;
    font-weight: var(--regular);
}

.healthcare-stat-card-white .healthcare-stat-label {
    color: var(--black);
}

.healthcare-stat-card-black .healthcare-stat-label {
    color: var(--white);
}

/* ----- Healthcare Responsive ----- */
/* ========================================
   KEY IT CHALLENGES SECTION
   ======================================== */

.it-challenges {
    padding: 80px 0;
    background-color: var(--white);
}

.it-challenges-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* ----- IT Challenges Header ----- */
.it-challenges-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ----- IT Challenges Tag ----- */
.it-challenges-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid var(--primary-color-red);
    border-radius: var(--radius-smd);
    padding: 10px 20px;
    margin-bottom: 20px;
}

.it-challenges-tag-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.it-challenges-tag-dot svg {
    display: block;
}

.it-challenges-tag-text {
    font-size: var(--font-size-large-body);
    font-weight: var(--regular);
    color: var(--primary-color-red);
}

/* ----- IT Challenges Title ----- */
.it-challenges-title {
    color: var(--primary-color-red);
    line-height: 1.3;
    margin-bottom: 20px;
}

/* ----- IT Challenges Description ----- */
.it-challenges-description {
    max-width: 900px;
    margin: 0 auto;
}

.it-challenges-description p {
    color: var(--black);
    line-height: 1.6;
    margin: 0; 
}

/* ----- IT Challenges Cards (Left Side) ----- */
.it-challenges-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.it-challenge-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 100px;
}

.it-challenge-card:hover {
    border-color: var(--primary-color-red);
    box-shadow: 0 4px 12px rgba(182, 33, 39, 0.1);
}

.it-challenge-card-active {
    border-color: var(--primary-color-red); 
    background-color: rgba(182, 33, 39, 0.02);
}

.it-challenge-card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color-red);
}

.it-challenge-card-icon svg {
    display: block;
}

.it-challenge-card-content {
    flex: 1;
}

.it-challenge-card-title {
    font-size: var(--font-size-heading3);
    color: var(--black);
    margin: 0;
    line-height: 1.4;
}

.it-challenge-card-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.it-challenge-card-active .it-challenge-card-arrow {
    opacity: 1;
}

.it-challenge-card-arrow svg {
    display: block;
}

/* ----- IT Challenges Details (Right Side) ----- */
.it-challenges-details {
    padding: 20px;
    background: #F5F5F5;
    border-radius: 32px;
}

.it-challenges-details-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    max-height: 200px;
}

.it-challenges-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.it-challenges-img-active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* ----- IT Challenges Details Content ----- */
.it-challenges-details-content {
    position: relative;
    min-height: 200px;
}

.it-challenge-detail-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    background-color: var(--black);
    border-radius: var(--radius-lg);
    padding: 30px 35px;
    min-height: 200px;
}

.it-challenge-detail-item-active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.it-challenge-detail-title {
    font-size: var(--font-size-heading3);
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.it-challenge-detail-text {
    font-size: var(--font-size-large-body);
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

/* ----- IT Challenges Responsive ----- */
/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose-us {
    padding: 80px 0;
    background-color: var(--white);
}

/* ----- Why Choose Us Header ----- */
.why-choose-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-us-header .section-tag {
    margin-bottom: 20px;
}

/* ----- Why Choose Us Title ----- */
.why-choose-us-title {
    color: var(--primary-color-red);
    line-height: 1.3;
    margin-bottom: 15px;
}

/* ----- Why Choose Us Subtitle ----- */
.why-choose-us-subtitle { 
    color: var(--black);
    line-height: 1.6;
    margin: 0;
}

/* ----- Why Choose Us Grid ----- */
.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ----- Why Choose Us Card ----- */
.why-choose-us-card {
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    transition: all 0.3s ease;
}

.why-choose-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-us-card-white {
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.why-choose-us-card-black {
    background-color: var(--black);
    border: 1px solid var(--black);
}

/* ----- Why Choose Us Card Icon ----- */
.why-choose-us-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.why-choose-us-card-icon svg {
    display: block;
}

/* ----- Why Choose Us Card Title ----- */
.why-choose-us-card-title {
    font-size: var(--font-size-heading3);
    color: var(--primary-color-red);
    margin-bottom: 15px;
    line-height: 1.3;
}

/* ----- Why Choose Us Card Text ----- */
.why-choose-us-card-text {
    font-size: var(--font-size-large-body);
    line-height: 1.6;
    margin: 0;
}

.why-choose-us-card-white .why-choose-us-card-text {
    color: var(--black);
}

.why-choose-us-card-black .why-choose-us-card-text {
    color: var(--white);
}

/* ----- Why Choose Us Responsive ----- */
/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* ----- FAQ Header ----- */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header .section-tag {
    margin-bottom: 20px;
}

/* ----- FAQ Title ----- */
.faq-title {
    color: var(--primary-color-red);
    line-height: 1.3;
    margin-bottom: 15px;
}

/* ----- FAQ Subtitle ----- */
.faq-subtitle { 
    color: var(--black);
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- FAQ Accordion ----- */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

/* ----- FAQ Item ----- */
.faq-item {
    background-color: #F5F5F5;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ----- FAQ Question ----- */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-text {
    font-size: var(--font-size-heading3);
    font-weight: var(--bold);
    color: var(--black);
    margin: 0;
    flex: 1;
    padding-right: 20px;
    line-height: 1.4;
}

/* ----- FAQ Icon ----- */
.faq-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
}

.faq-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* Icon states */
.faq-icon-minus {
    opacity: 0;
}

.faq-icon-plus {
    opacity: 1;
}

.faq-item-active .faq-icon-minus {
    opacity: 1;
}

.faq-item-active .faq-icon-plus {
    opacity: 0;
}

.faq-item:not(.faq-item-active) .faq-icon-minus {
    opacity: 0;
}

.faq-item:not(.faq-item-active) .faq-icon-plus {
    opacity: 1;
}

/* ----- FAQ Answer ----- */
.faq-answer {
    padding: 0 30px 25px 30px;
    display: none;
    overflow: hidden;
}

.faq-item-active .faq-answer {
    display: block;
}

/* First item expanded by default */
.faq-item:first-child.faq-item-active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: var(--font-size-body);
    color: var(--black);
    line-height: 1.6;
    margin: 0;
}

/* ----- FAQ Responsive ----- */
/* ========================================
   OUR SERVICES SECTION
   ======================================== */

.our-services {
    padding: 80px 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

/* ----- Our Services Header (Left Side - Container) ----- */
.our-services-header {
    text-align: center;
    margin-bottom: 50px;
}

/* ----- Our Services Tag ----- */
.our-services-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: 1px solid var(--white);
    border-radius: var(--radius-smd);
    padding: 10px 20px;
    margin-bottom: 20px;
}

.our-services-tag .section-tag-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.our-services-tag .section-tag-arrow svg {
    display: block;
}

.our-services-tag .section-tag-text {
    font-size: var(--font-size-large-body);
    font-weight: var(--regular);
    color: var(--white);
}

/* ----- Our Services Title ----- */
.our-services-title { 
    color: var(--primary-color-red);
    line-height: 1.3;
    margin-bottom: 15px;
}

/* ----- Our Services Subtitle ----- */
.our-services-subtitle { 
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

/* ----- Our Services Slider Wrapper (Right Side - Full Width) ----- */
.our-services-slider-wrapper {
    width: 100%;
    margin-top: 40px;
}

.our-services-slider-container {
    width: 100%;
    padding-left: calc((100% - 1200px) / 2);
    padding-right: 0;
}

/* ----- Our Services Swiper ----- */
.our-services-swiper {
    width: 100%;
    overflow: visible;
}

.our-services-swiper .swiper-slide {
    width: auto;
    height: auto;
}

/* ----- Our Services Card ----- */
.our-services-card {
    background-color: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    padding-bottom: 0;
}

.our-services-card:hover {
    border-color: rgba(182, 33, 39, 0.3);
    box-shadow: 0 8px 24px rgba(182, 33, 39, 0.15);
}

/* ----- Our Services Card Icon ----- */
.our-services-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.our-services-card-icon svg {
    display: block;
}

/* ----- Our Services Card Content ----- */
.our-services-card-content {
    flex: 1;
    margin-bottom: 25px;
}

.our-services-card-title {
    font-size: var(--font-size-heading3);
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.our-services-card-text {
    font-size: var(--font-size-large-body);
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

/* ----- Our Services Card Image ----- */
.our-services-card-image {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
    flex-shrink: 0;
}

.our-services-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ----- Our Services Navigation ----- */
.our-services-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.our-services-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-smd);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    background-color: var(--primary-color-red);
    color: var(--white);
}

.our-services-nav-btn:hover {
    background-color: #d41e2a;
    transform: scale(1.05);
}

.our-services-nav-btn:active {
    transform: scale(0.95);
}

.our-services-nav-btn svg {
    display: block;
}

.our-services-nav-btn.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.our-services-nav-btn.swiper-button-disabled:hover {
    transform: none;
    background-color: var(--primary-color-red);
}

/* ----- Our Services Responsive ----- */
/* ========================================
   CAPABILITIES SECTION (Service Page)
   ======================================== */

.capabilities {
    padding: 80px 0;
    background-color: #1a1a1a;
    overflow: hidden;
}
.capabilities .section-tag { 
    border: 1px solid #fff; 
}

.capabilities-wrapper {
    position: relative;
}

/* ----- Capabilities Header ----- */
.capabilities-header {
    text-align: center;
    margin-bottom: 50px;
}

.capabilities-header .section-tag {
    margin-bottom: 20px;
}

.capabilities-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.capabilities-subtitle {
    font-size: var(--font-size-large-body);
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

/* ----- Capabilities Slider ----- */
.capabilities-slider-container {
    overflow: visible;
}

.capabilities-swiper {
    overflow: visible;
    padding: 10px 0;
}

.capabilities-swiper .swiper-slide {
    width: 380px;
    height: auto;
    transition: all 0.4s ease;
}

/* ----- Capabilities Card ----- */
.capabilities-card {
    background-color: #2a2a2a;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
}

.capabilities-swiper .swiper-slide-active .capabilities-card {
    background-color: var(--white);
}

/* Card Icon */
.capabilities-card-icon {
    width: 72px;
    height: 72px;
    background-color: var(--primary-color-red); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.capabilities-card-icon img,
.capabilities-card-icon svg {
    width: 32px;
    height: 32px;
}

.capabilities-card-icon svg path {
    transition: all 0.4s ease;
}
 

/* Card Title */
.capabilities-card-title { 
    color: var(--white);
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.swiper-slide-active .capabilities-card-title {
    color: var(--dark-gray);
}

/* Card Text */
.capabilities-card-text { 
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.swiper-slide-active .capabilities-card-text {
    color:var(--dark-gray);
}

/* Card Image */
.capabilities-card-image {
    border-radius: 12px;
    overflow: hidden;
}

.capabilities-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* ----- Capabilities Navigation ----- */
.capabilities-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.capabilities-nav-btn {
    width: 60px;
    height: 60px;
    border-radius : var(--radius-smd);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    background-color: var(--primary-color-red);
    color: var(--white);
}

.capabilities-nav-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.capabilities-nav-btn.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ----- Capabilities Responsive ----- */
/* ========================================
   PROCESS SECTION (Service Page)
   ======================================== */

.process {
    padding: 80px 0;
    background-color: #f5f5f5;
    position: relative;
    background-image: url('../images/process-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

 

.process .container {
    position: relative;
    z-index: 1;
}

/* ----- Process Header ----- */
.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header .section-tag {
    margin-bottom: 20px;
}

.process-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.process-subtitle {
    font-size: 15px;
    color: var(--text-gray);
}

/* ----- Process Steps ----- */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    padding-top: 30px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    background-color: var(--white);
    border-radius: 16px;
    padding: 36px 20px; 
    min-height: 195px;
}

/* Step Icon */
.process-step-icon {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background-color: var(--primary-color-red);
    border-color: var(--primary-color-red);
    border: 7px solid #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    margin-top: -110px;
}

.process-step-icon svg {
    width: 32px;
    height: 32px;
}

/* Step Number Badge */
.process-step-number {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 36px;
    height: 36px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #f6f6f6;
}

/* Step Arrow */
.process-step-arrow {
    position: absolute;
    top: -45px;
    right: -45px;
    width: 60px;
    z-index: 2;
}

.process-step-arrow svg {
    width: 60px;
    height: auto;
}
 
/* Last step has no arrow */
.process-step:last-child .process-step-arrow {
    display: none;
}

/* Step Title */
.process-step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

/* Step Text */
.process-step-text {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 227px;
    margin: 0 auto;
}

/* ----- Process Responsive ----- */
/* ========================================
   BENEFITS SECTION (Service Page)
   ======================================== */

.benefits {
    padding: 80px 0;
    background-color: var(--white);
}
.benefits .row{
    align-items: end;
}
/* ----- Benefits Content ----- */
.benefits-content {
    padding-right: 40px;
}

.benefits-content .section-tag {
    margin-bottom: 15px;
}

.benefits-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.benefits-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 450px;
}

/* ----- Benefits Grid ----- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ----- Benefits Card ----- */
.benefits-card {
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefits-card-dark {
    background-color: #1a1a1a;
    color: var(--white);
}

.benefits-card-light {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--dark-gray);
}

/* Card Icon */
.benefits-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.benefits-card-dark .benefits-card-icon {
    background-color:var(--primary-color-red);
    color: var(--white);
}

.benefits-card-light .benefits-card-icon {
    background-color: var(--primary-color-red);
    color: var(--white);
}

/* Card Title */
.benefits-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefits-card-dark .benefits-card-title {
    color: var(--white);
}

.benefits-card-light .benefits-card-title {
    color: var(--dark-gray);
}

/* Card Text */
.benefits-card-text {
    font-size: 13px;
    line-height: 1.6;
}

.benefits-card-dark .benefits-card-text {
    color: rgba(255,255,255,0.7);
}

.benefits-card-light .benefits-card-text {
    color: var(--text-gray);
}

/* ----- Benefits Image ----- */
.benefits-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.benefits-image-frame {
    position: relative;
    width: 100%;
    max-width: 560px;
}
 
.benefits-image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ----- Benefits Responsive ----- */
/* ========================================
   TESTIMONIALS SECTION (Service Page)
   ======================================== */

.testimonials {
    padding: 80px 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

/* ----- Testimonials Header ----- */
.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header .section-tag {
    margin-bottom: 20px;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.testimonials-subtitle { 
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ----- Testimonials Slider ----- */
.testimonials-slider-container {
    overflow: visible;
}

.testimonials-swiper {
    overflow: visible;
    padding: 10px 0;
}

.testimonials-swiper .swiper-slide {
    width: 300px;
    height: auto;
}

/* ----- Testimonials Card ----- */
.testimonials-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Card Rating */
.testimonials-card-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonials-card-rating i {
    color: #FFB800;
    font-size: 14px;
}

/* Card Text */
.testimonials-card-text {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

/* Card Author */
.testimonials-card-author {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}
.testimonials-card-info{
    padding-top: 5px;
}
.testimonials-card-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials-card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 2px;
}

.testimonials-card-position {
    font-size: 12px;
    color: var(--text-gray);
}

/* Card Video Button */
.testimonials-card-video {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color-red);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonials-card-video:hover {
    color: var(--primary-dark);
}

.testimonials-card-video-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonials-card-video-icon i {
    margin-left: 2px;
}

.testimonials-card-video:hover .testimonials-card-video-icon {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

/* Video Popup */
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.video-popup {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-popup iframe {
    width: 100%;
    height: 100%;
}

.video-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-popup-close:hover {
    background-color: var(--primary-color-red);
    color: var(--white);
}

/* ----- Testimonials Navigation ----- */
.testimonials-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonials-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-smd);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    background-color: var(--primary-color-red);
    color: var(--white);
}

.testimonials-nav-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.testimonials-nav-btn.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ----- Testimonials Responsive ----- */
/* ----- 4.4 Hero Image ----- */
.hero-image-wrapper {
    position: relative;
    padding-left: 30px;
    animation: fadeInRight 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

/* ----- 4.5 Hero Floating Badge ----- */
.hero-floating-badge {
    position: absolute;
    bottom: 30px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transform: translateX(-20px);
    animation: floatBadge 3s ease-in-out infinite;
}

.hero-floating-badge-logo {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-floating-badge-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hero-floating-badge-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-gray);
}
 

/* ========================================
   5. TRUSTED BY SECTION
   ======================================== */

/* ----- 5.1 Trusted Base ----- */
.trusted {
    background-color: transparent;
    padding: 60px 0;
    overflow: hidden;
}

.trusted-wrapper {
    background-color: #3d3d3d;
    border-radius: var(--radius-lg);
    padding:   30px;
    overflow: hidden;
}

.trusted-title {
    text-align: center; 
    color: var(--white); 
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* ----- 5.2 Marquee Animation ----- */
.trusted-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.trusted-marquee::before,
.trusted-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.trusted-marquee::before {
    left: 0;
    background: linear-gradient(to right, #3d3d3d 0%, transparent 100%);
}

.trusted-marquee::after {
    right: 0;
    background: linear-gradient(to left, #3d3d3d 0%, transparent 100%);
}

.trusted-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

/* Pause on hover */
.trusted-marquee:hover .trusted-marquee-track {
    animation-play-state: paused;
}

.trusted-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.trusted-logo-item img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: var(--transition);
}

.trusted-logo-item:hover img {
    opacity: 1;
}

/* ========================================
   6. STATS SECTION
   ======================================== */
.stats {
    padding: 0 0 50px;
    background-color: transparent;
    margin-top: -60px;
    z-index: 2;
    position: relative;
}

.stats-wrapper {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.stats-wrapper .row {
    align-items: center;
}

.stats-item {
    text-align: center;
    padding: 35px 20px;
    position: relative;
}

/* Center border between items */
.stats-item-bordered::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background-color: var(--border-color);
}

.stats-number {
    line-height: 1;
    margin-bottom: 8px;
}

.stats-plus {
    color: var(--primary-color-red);
}

.stats-label {
   font-size: var(--font-size-large-body);
    margin: 0;
    font-weight: var(--regular);
}

/* ========================================
   7. SOLUTIONS & SERVICES SECTION
   ======================================== */

/* ----- 7.1 Services Base ----- */
.services {
    padding: 60px 0;
    background-color: var(--white);
}

/* ----- 7.2 Section Tag (Reusable) ----- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid var(--primary-color-red);
    border-radius: var(--radius-smd);
    padding: 10px 20px;
    margin-bottom: 20px;
}

.section-tag-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.section-tag-arrow svg {
    display: block;
}

.section-tag-text {
    font-size: var(--font-size-large-body);
    font-weight: var(--regular);
    color:var(--primary-color-red);
}

/* ----- 7.3 Services Header ----- */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-title { 
    color: var(--primary-color-red);
    margin-bottom: 15px;
}

.services-description { 
    color: var(--black); 
    margin: 0 auto;
    line-height: 1.5;
}

/* ----- 7.4 Services Cards ----- */
.services-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    height: 100%;
    width: 100%;
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

.services-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
    text-decoration: none;
    color: inherit;
}

.services-card:focus {
    outline: 2px solid var(--primary-color-red);
    outline-offset: 2px;
    text-decoration: none;
    color: inherit;
}

/* Ensure service cards in columns display properly */
.services-grid .col-lg-4 .services-card,
.services-grid .col-md-6 .services-card {
    display: block;
    width: 100%;
}

.services-card-icon {
    width: 100%;
    height: 143px;
    background-color: rgba(196, 30, 58, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background-image: url('../images/solution-background.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.services-card-icon i {
    font-size: 24px;
    color: var(--primary-color-red);
}

.services-card-title {
    font-size:var(--font-size-heading3);
    font-weight: var(--extra-bold);
    color: var(--primary-color-red);
    margin-bottom: 12px;
}

.services-card-text {  
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   8. WHY US SECTION
   ======================================== */

/* ----- 8.1 Why Us Base ----- */
.whyus {
    padding: 60px 0;
    background-color: var(--white);
}

.whyus-wrapper {
    background-color: #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 60px;
    overflow: hidden;
    background-image: url('../images/why-us-background.png');
    background-size: cover;
    background-repeat: no-repeat;
}

/* ----- 8.2 Why Us Content (Left Side) ----- */
.whyus-content {
    padding-right: 30px;
}

.whyus-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: var(--radius-smd);
    padding: 8px 16px;
    margin-bottom: 20px;
}

.whyus-tag-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.whyus-tag-arrow svg {
    display: block;
}

.whyus-tag-text {
    font-size: var(--font-size-large-body);
    font-weight: var(--regular);
    color: var(--white);
}

.whyus-title { 
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 15px;
}

.whyus-description { 
    color: var(--white);
    line-height: 1.5;
    margin: 0;
}

/* ----- 8.3 Why Us Stats (Right Side) ----- */
.whyus-stats {
    padding-left: 30px;
}

.whyus-stat-item {
    padding: 25px 0;
    text-align: center;
}

.whyus-stat-number {
    font-size: var(--font-size-heading1);
    font-weight: var(--extra-bold);
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.whyus-stat-plus,
.whyus-stat-percent {
    color: var(--primary-color-red);
}

.whyus-stat-slash {
    color: var(--primary-color-red);
    font-weight: 400;
}

.whyus-stat-label { 
    color: var(--white);
    margin: 0;
}

/* ========================================
   IMPACT & RESULTS SECTION
   ======================================== */

.impact-results {
    padding: 80px 0;
    background-color: var(--white);
}

/* ----- Impact & Results Header ----- */
.impact-results-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ----- Impact & Results Tag Badge ----- */
.impact-results-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    border: 1px solid var(--primary-color-red);
    border-radius: var(--radius-smd);
    padding: 8px 18px;
    margin-bottom: 25px;
    width: fit-content;
}

.impact-results-tag-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.impact-results-tag-arrow svg {
    display: block;
}

.impact-results-tag-text {
    font-size: var(--font-size-large-body);
    font-weight: var(--regular);
    color: #000;
}

/* ----- Impact & Results Title ----- */
.impact-results-title {
    color: var(--primary-color-red);
    line-height: 1.3;
    margin-bottom: 20px;
}

/* ----- Impact & Results Description ----- */
.impact-results-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 900px;
}

/* ----- Impact & Results Grid ----- */
.impact-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* ----- Impact & Results Image ----- */
.impact-results-image {
    position: relative;
}

.impact-results-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ----- Impact & Results Cards Grid ----- */
.impact-results-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* ----- Impact & Results Card ----- */
.impact-results-card { 
    padding: 30px 25px;
    transition: var(--transition);
    border: none;
    position: relative;
}

.impact-results-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.impact-results-card-dark {
    background-color: #000;
}

.impact-results-card-light {
    background-color: var(--white);
    border: 1px solid #E0E0E0;
}
.impact-results-cards-grid div:nth-child(1){
    border-top-left-radius: var(--radius-lg); 
}
.impact-results-cards-grid div:nth-child(2){
    border-top-right-radius: var(--radius-lg); 
}
.impact-results-cards-grid div:nth-child(3){
    border-bottom-left-radius: var(--radius-lg); 
}
.impact-results-cards-grid div:nth-child(4){
    border-bottom-right-radius: var(--radius-lg); 
}
/* ----- Impact & Results Card Icon ----- */
.impact-results-card-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.impact-results-card-icon svg {
    display: block;
    width: 32px;
    height: 32px;
}

/* ----- Impact & Results Card Title ----- */
.impact-results-card-title {
    font-size: 24px;
    font-weight: var(--bold);
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
}

.impact-results-card-light .impact-results-card-title {
    color: var(--dark-gray);
}

/* ----- Impact & Results Card Text ----- */
.impact-results-card-text {
    font-size: 14px;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

.impact-results-card-light .impact-results-card-text {
    color: var(--dark-gray);
}

/* ----- Impact & Results Responsive ----- */
/* ========================================
   9. INDUSTRIES SECTION
   ======================================== */

/* ----- 9.1 Industries Base ----- */
.industries {
    padding: 60px 0;
    background-color: var(--white);
}

/* ----- 9.2 Industries Header ----- */
.industries-header {
    text-align: center;
    margin-bottom: 50px;
}

.industries-header .section-tag {
    margin-bottom: 16px;
}

.industries-title { 
    color: var(--primary-color-red);
    margin-bottom: 15px;
}

.industries-description { 
    color: var(--dark-gray);
    margin: 0 auto;
    max-width: 640px;
    font-size: var(--font-size-body);
    line-height: 1.6;
}

/* ----- 9.3 Industries Grid ----- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* ----- 9.4 Industries Cards (floating card style) ----- */
.industries-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.industries-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.industries-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    gap: 10px;
    flex-shrink: 0;
}

.industries-card-title { 
    font-size: var(--font-size-large-body);
    font-weight: 500;
    color: var(--black);
    line-height: 1.3;
}

.industries-card-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    opacity: 0.85;
}

.industries-card:hover .industries-card-arrow {
    transform: translateX(4px);
}

.industries-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-top: 0;
}

.industries-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.industries-card:hover .industries-card-image img {
    transform: scale(1.05);
}

/* ========================================
   RELATED SERVICES SECTION
   ======================================== */

.related-services {
    padding: 80px 0;
    background-color: var(--white);
}

/* ----- Related Services Header ----- */
.related-services-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ----- Related Services Tag Badge ----- */
.related-services-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f5f5f5;
    border: 1px solid var(--primary-color-red);
    border-radius: var(--radius-smd);
    padding: 8px 18px;
    margin-bottom: 25px;
    width: fit-content;
}

.related-services-tag-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.related-services-tag-arrow svg {
    display: block;
}

.related-services-tag-text {
    font-size: var(--font-size-large-body);
    font-weight: var(--regular);
    color: #000;
}

/* ----- Related Services Title ----- */
.related-services-title {
    color: var(--primary-color-red);
    line-height: 1.3;
    margin-bottom: 20px;
}

/* ----- Related Services Description ----- */
.related-services-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 900px;
}

/* ----- Related Services Grid ----- */
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.related-services-grid > div:nth-child(2),.related-services-grid > div:nth-child(3){
background-color: #000;
}
/* ----- Related Service Card ----- */
.related-service-card { 
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #F6F6F6;
    padding: 20px;
    background-color: #F6F6F6;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

 

.related-service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}
 

/* ----- Related Service Card Image ----- */
.related-service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
}

.related-service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-service-card:hover .related-service-card-image img {
    transform: scale(1.1);
}

/* ----- Related Service Card Content ----- */
.related-service-card-content {
    padding: 25px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 24px;
}

/* ----- Related Service Card Icon ----- */
.related-service-card-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.related-service-card-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

/* ----- Related Service Card Title ----- */
.related-service-card-title {
    color: var(--primary-color-red);
    line-height: 1.3;
    margin-bottom: 10px;
}

/* ----- Related Service Card Text ----- */
.related-service-card-text {
    color: #9E9E9E;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* ----- Related Services Responsive ----- */
/* ========================================
   10. CASE STUDIES SECTION
   ======================================== */

/* ----- 10.1 Case Studies Base ----- */
.casestudies {
    padding: 60px 0;
    background-color: var(--light-gray);
    overflow: hidden;
}

/* ----- 10.2 Case Studies Header ----- */
.casestudies-header {
    text-align: center;
    margin-bottom: 40px;
}

.casestudies-title { 
    color: var(--primary-color-red);
    margin-bottom: 15px;
}

.casestudies-description { 
    color:var(--black); 
    margin: 0 auto;
    line-height: 1.5;
    font-size: var(--font-size-large-body);
}

/* ----- 10.3 Slider Wrapper - Overflow Right ----- */
.casestudies-slider-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.casestudies-slider-container {
    overflow: visible;
    margin-right: calc(-50vw + 50%);
    padding-right: calc(50vw - 50%);
}

.casestudies-swiper {
    overflow: visible;
}

/* ----- 10.4 Case Studies Cards ----- */
.casestudies-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.casestudies-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.casestudies-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.casestudies-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.casestudies-card:hover .casestudies-card-image img {
    transform: scale(1.05);
}

.casestudies-card-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 2;
}

.casestudies-card-btn img {
    width: 16px;
    height: 16px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.casestudies-card-btn:hover {
    background-color: var(--primary-color-red);
    transform: scale(1.1);
}

.casestudies-card-btn:hover img {
    filter: brightness(0) invert(1);
    transform: rotate(0deg);
}

/* ----- 10.5 Case Studies Card Content ----- */
.casestudies-card-content {
    padding: 30px 20px 20px;
    position: relative;
}

.casestudies-card-title { 
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.4;
}

.casestudies-card-text { 
    color:var(--dark-gray);
    line-height: 1.5;
    margin-bottom: 15px;
}

/* ----- 10.6 Case Studies Tags ----- */
.casestudies-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.casestudies-tag {
    display: inline-block;
    padding: 6px 12px;  
    color: var(--dark-gray);
    background-color: var(--light-gray); 
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.casestudies-tag:hover {
    border-color: var(--primary-color-red);
    color: var(--primary-color-red);
}

/* ----- 10.7 Case Studies Navigation ----- */
.casestudies-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.casestudies-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-smd);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.casestudies-nav-prev {
    background-color: var(--primary-color-red);
    color: var(--white);
}

.casestudies-nav-next {
    background-color: var(--primary-color-red);
    color: var(--white);
}

.casestudies-nav-btn:hover {
    transform: scale(1.1);
}

.casestudies-nav-btn.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   11. RESOURCES SECTION
   ======================================== */

/* ----- 11.1 Resources Base ----- */
.resources {
    padding: 60px 0;
    background-color: var(--white);
}

/* ----- 11.2 Resources Header ----- */
.resources-header {
    text-align: center;
    margin-bottom: 30px;
}

.resources-title { 
    color: var(--primary-color-red);
    margin-bottom: 15px;
}

.resources-description { 
    color: var(--dark-gray); 
    margin: 0 auto;
    line-height: 1.5;
    font-size: var(--font-size-large-body);
}

/* ----- 11.3 Resources Tabs ----- */
.resources-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.resources-nav {
    display: inline-flex;
    background-color: var(--light-gray);
    border-radius: var(--radius-full);
    padding: 5px;
}

.resources-nav .nav-item {
    margin: 0;
}

.resources-nav .nav-link {
    padding: 10px 25px;
    font-size: var(--font-size-large-body);
    font-weight: --regular;
    color: var(--dark-gray);
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: none;
}

.resources-nav .nav-link:hover {
    color: var(--primary-color-red);
}

.resources-nav .nav-link.active {
    background-color: var(--primary-color-red);
    color: var(--white);
}

/* ----- 11.4 Resources Cards ----- */
.resources-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.resources-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.resources-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.resources-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.resources-card:hover .resources-card-image img {
    transform: scale(1.05);
}

/* ----- 11.5 Resources Card Content ----- */
.resources-card-content {
    padding: 20px;
}

.resources-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.resources-card-category {
    font-size: var(--font-size-body);
    font-weight: 500;
    color: var(--dark-gray);
    padding: 5px 12px;
    background-color: var(--light-gray);
    border-radius: var(--radius-smd);
}

.resources-card-date {
    font-size: var(--font-size-body);
    font-weight: 500;
    color: var(--dark-gray);
    padding: 5px 12px;
    background-color: var(--light-gray);
    border-radius: var(--radius-smd);
}

.resources-card-title { 
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.4;
}
.resources-card-title a{
    color: var(--black);  
}

.resources-card-text { 
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.resources-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color-red);
    transition: var(--transition);
}

.resources-card-link img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.resources-card-link:hover {
    color: var(--primary-dark);
}

.resources-card-link:hover img {
    transform: translateX(5px);
}

/* Featured Blog Card */
.resources-card-featured {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--white);
    height: 100%;
}

.resources-card-featured .row.no-gutters {
    height: 100%;
    min-height: 400px;
}

.resources-card-featured .resources-card-image-featured {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.resources-card-featured .resources-card-image-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.resources-card-featured .resources-card-content-featured {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.resources-card-featured .resources-card-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.resources-card-featured .resources-card-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Resources Filters */
.resources-filters {
    background-color: var(--light-gray);
    padding: 30px 30px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

/* Blog Posts Container */
.blog-posts-container {
    min-height: 200px;
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.25em;
}

/* ========================================
   SINGLE POST SECTION
   ======================================== */

/* Blog Single Hero Section */
.blog-single-hero {
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #2d0000 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.blog-single-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(182, 33, 39, 0.3) 100%);
    z-index: 1;
}

.blog-single-hero .container {
    position: relative;
    z-index: 2;
}

.blog-single-breadcrumbs {
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--white);
}

.blog-single-breadcrumbs a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.blog-single-breadcrumbs a:hover {
    color: var(--primary-color-red);
}

.breadcrumb-separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.6);
}

.blog-single-hero-title {
    font-size: 48px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 900px;
}

.blog-single-hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--white);
}

.blog-single-hero-date {
    color: var(--white);
}

.blog-single-hero-separator {
    color: rgba(255, 255, 255, 0.6);
}

.blog-single-hero-reading-time {
    color: var(--white);
}

.blog-single-hero-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-single-share-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color-red);
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    flex-shrink: 0;
}

.blog-single-share-icon svg {
    width: 20px;
    height: 20px;
}

.blog-single-share-icon:hover {
    background-color: var(--white);
    transform: translateY(-3px);
}

.blog-single-share-icon:hover svg path {
    fill: var(--primary-color-red);
}

.blog-single-hero-vector {
    position: absolute;
    right: -127px;
    bottom: -266px;
    z-index: 1;
    pointer-events: none;
    max-width: 650px;
}

.blog-single-hero-vector-img {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
}

/* Single Post Section */
.single-post-section {
    padding: 60px 0;
    background-color: var(--white);
}

.single-post-content {
    padding-right: 0;
}

.blog-image-wrapper img{
    border-radius: 32px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-bottom: 1.5em;
}
/* Single Post Meta */
.single-post-meta {
    margin-bottom: 15px;
}

.single-post-date {
    display: inline-block;
    padding: 6px 15px;
    background-color: var(--light-gray);
    border-radius: 20px;
    font-size: var(--font-size-body);
    font-weight: 500;
    color: var(--dark-gray);
}

/* Single Post Title */
.single-post-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--black);
}

/* Single Post Image */
.single-post-image {
    margin-bottom: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.single-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Single Post Entry Content */
/* Author Biography Section */
.author-bio-section {
    margin-bottom: 40px;
    max-width: fit-content;
}

.author-bio-card {
    background-color: #FBF4F4;
    border-radius: 16px;
    padding: 16px;
}

/* Top Bar: Avatar and Name */
.author-bio-topbar {
    display: flex;
    align-items: center;
    gap: 15px;
    /* margin-bottom: 20px; */
}

.author-bio-avatar {
    flex-shrink: 0;
}

.author-bio-avatar .author-avatar-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.author-bio-name-wrapper {
    flex: 1;
}

.author-bio-label {
    font-size: 12px;
    font-weight: 500;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.author-bio-name {
    font-size: 24px;
    color: var(--black);
    margin: 0;
    line-height: 1.3;
}

/* Description Section */
.author-bio-description-wrapper {
    margin-bottom: 20px;
}

.author-bio-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Button Section */
.author-bio-button-wrapper {
    margin-top: 0;
}

.author-bio-linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid var(--primary-color-red);
    border-radius: 8px;
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    background-color: #FFF5F5;
}

.author-bio-linkedin-btn:hover {
    background-color: var(--primary-color-red);
    color: var(--white);
    border-color: var(--primary-color-red);
}

.author-bio-linkedin-btn:hover .linkedin-icon path {
    fill: var(--white);
}

.author-bio-linkedin-btn:hover .linkedin-arrow {
    color: var(--white);
}

.linkedin-icon-wrapper {
    width: 20px;
    height: 20px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 5px;
}

.linkedin-icon {
    width: 10px;
    height: 10px;
    display: block;
}

.author-bio-linkedin-btn:hover .linkedin-icon-wrapper {
    background-color: var(--white);
}

.author-bio-linkedin-btn:hover .linkedin-icon path {
    fill: var(--primary-color-red);
}

.linkedin-icon {
    flex-shrink: 0;
}

.linkedin-text {
    flex: 1;
}

.linkedin-arrow {
    flex-shrink: 0;
    color: var(--black);
    transition: var(--transition);
}

/* Quote Section */
.single-post-quote-section {
    margin: 60px 0;
    padding-left: 68px;
    border-left: 4px solid var(--primary-color-red);
    position: relative;
}

.quote-wrapper {
    position: relative;
}

.quote-marks {
    position: absolute;
    top: 20px;
    left: -50px;
    z-index: 1;
}

.quote-marks svg {
    width: 28px;
    height: 22px;
    display: block;
}

.quote-content {
    padding-left: 0;
    padding-top: 30px;
}

.quote-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
    font-style: normal;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-author-avatar {
    flex-shrink: 0;
}

.quote-author-avatar .quote-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.quote-author-info {
    flex: 1;
}

.quote-author-name {
    font-size: 18px;
    color: #333333;
    margin-bottom: 4px;
}

.quote-author-title {
    font-size: 14px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Key Takeaways Section */
.key-takeaways-section {
    margin: 60px 0;
}

.key-takeaways-card {
    background-color:#F5F5F5;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.key-takeaways-title {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 25px;
}

.key-takeaways-list {
    counter-reset: item;
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.key-takeaways-item {
    list-style: none;
    counter-increment: item;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
}

.key-takeaways-item::before {
    content: counter(item) ".";
    font-weight: 600;
    min-width: 20px;
    flex-shrink: 0;
}

.key-takeaways-item:last-child {
    margin-bottom: 0;
}

.key-takeaways-item strong {
    font-weight: 600;
    color: var(--black);
}

/* CTA Section */
.single-post-cta-section {
    margin: 60px 0;
}

.single-post-cta-wrapper {
    background-color: #000000;
    border-radius: 16px;
    padding: 56px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-vector-left,
.cta-vector-right {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.cta-vector-left {
    bottom: 0;
    left: 0;
}

.cta-vector-right {
    top: 0;
    right: 0;
}

.cta-vector-img {
    max-width: 100%;
    height: auto;
    display: block; 
}

.single-post-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.single-post-cta-text {
    flex: 1;
}

.single-post-cta-title {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.single-post-cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.single-post-cta-button {
    flex-shrink: 0;
}

.single-post-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: var(--primary-color-red);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.single-post-cta-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(182, 33, 39, 0.3);
}

.cta-arrow-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.single-post-cta-btn:hover .cta-arrow-icon {
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-section {
    margin: 60px 0;
}

.newsletter-wrapper {
    background-color: #F5F5F5;
    border-radius: 16px;
    overflow: hidden;
    padding: 32px;
}

.newsletter-image {
    width: 100%;
    height: 100%; 
    overflow: hidden;
    position: relative;
}

.newsletter-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.newsletter-content {
   padding-left: 24px;
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.newsletter-title {
    font-size: 32px;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.newsletter-description {
    font-size: 16px;
    color: #666666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.newsletter-form {
    width: 100%;
    max-width: 500px;
}

.newsletter-form-group {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px !important;
    border: 1px solid #E0E0E0;
    border-radius: 8px!important;
    font-size: 16px;
    color: var(--black);
    background-color: var(--white);
    transition: var(--transition);
    min-width: 0;
    border-bottom-right-radius: 0!important;
    border-top-right-radius: 0!important;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color-red);
    box-shadow: 0 0 0 3px rgba(182, 33, 39, 0.1);
}

.newsletter-input::placeholder {
    color: #999999;
}

.newsletter-submit-btn {
    padding: 16px 32px;
    background-color: var(--primary-color-red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.5px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.newsletter-submit-btn:hover {
    background-color: var(--primary-dark); 
    box-shadow: 0 4px 12px rgba(182, 33, 39, 0.3);
}

.single-post-entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.single-post-entry-content h2,
.single-post-entry-content h3,
.single-post-entry-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 700;
}

.single-post-entry-content h2 {
    font-size: 32px;
}

.single-post-entry-content h3 {
    font-size: 28px;
}

.single-post-entry-content h4 {
    font-size: 24px;
}

.single-post-entry-content p {
    margin-bottom: 20px;
}

.single-post-entry-content ul,
.single-post-entry-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.single-post-entry-content li {
    margin-bottom: 10px;
}

.single-post-entry-content a {
    color: var(--primary-color-red);
    text-decoration: none;
}

.single-post-entry-content a:hover {
    text-decoration: underline;
}

.single-post-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 30px 0;
}

.single-post-entry-content blockquote {
    border-left: 4px solid var(--primary-color-red);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--dark-gray);
}

/* Social Share Section */
.single-post-share {
    background-color: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.share-text {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    flex: 1;
    min-width: 200px;
}

.share-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.share-icon:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

.share-icon i {
    line-height: 1;
}

/* Table of Contents */
.toc-sidebar-wrapper {
    top: 120px;
    position: sticky;
    height: fit-content;
}

.single-post-toc {
    position: relative;
}

.toc-wrapper {
    background-color: #F5F5F5; 
    padding: 24px;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 10;
    will-change: transform;
}

.toc-title {
    color: var(--black);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 16px;
}

.toc-list {
    list-style: none;
    counter-reset: toc-counter;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 15px;
    padding-left: 0;
    position: relative;
    counter-increment: toc-counter;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.toc-list li::before {
    content: counter(toc-counter) ".";
    color: #363636;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    flex-shrink: 0;
    min-width: 20px;
}

.toc-list a {
    color: #363636;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
    display: block;
    transition: var(--transition);
    flex: 1;
}

.toc-list a:hover {
    color: var(--primary-color-red);
}

.toc-list a.active {
    color: var(--primary-color-red);
    font-weight: 600;
}

/* TOC Scrollbar Styling */
.toc-wrapper::-webkit-scrollbar {
    width: 6px;
}

.toc-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.toc-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color-red);
    border-radius: 10px;
}

.toc-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Recent Posts Sidebar Section */
.recent-posts-sidebar {
    margin-top: 24px;
}
 

.recent-posts-title {
    color: var(--black);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 16px;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-item {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.recent-posts-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #363636;
    border-radius: 50%;
}

.recent-posts-item:last-child {
    margin-bottom: 0;
}

.recent-posts-link {
    color: #363636;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
    display: block;
    transition: var(--transition);
}

.recent-posts-link:hover {
    color: var(--primary-color-red);
}

/* ========================================
   RECENT INSIGHTS SECTION
   ======================================== */

.recent-insights-section {
    padding: 80px 0;
    background-color: var(--white);
}

.recent-insights-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background-color: var(--light-gray);
    border: 1px solid var(--primary-color-red);
    border-radius: 25px;
    margin: 0 auto 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.recent-insights-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recent-insights-section .row {
    width: 100%;
}

.recent-insights-tag-icon {
    color: var(--primary-color-red);
    font-size: 12px;
}

.recent-insights-tag-text {
    color: var(--black);
}

.recent-insights-header {
    text-align: center;
    margin-bottom: 50px;
}

.recent-insights-title {
    font-size: 42px;
    color: var(--primary-color-red);
    margin-bottom: 20px;
}

.recent-insights-description {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Pagination */
.blog-pagination-wrapper {
    margin-top: 50px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
}

.blog-pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 10px;
}

.blog-pagination-item {
    margin: 0;
    padding: 0;
}

.blog-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    height: 55px;
    padding: 0 15px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-body);
    transition: var(--transition);
    border: 1px solid transparent;
    color: var(--black);
    background-color: var(--white);
}

.blog-pagination-link:hover {
    background-color: var(--light-gray);
    color: var(--black);
    text-decoration: none;
}

.blog-pagination-link.blog-pagination-active {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--primary-color-red);
    cursor: default;
}

.blog-pagination-link.blog-pagination-prev,
.blog-pagination-link.blog-pagination-next {
    background-color: var(--primary-color-red);
    color: var(--white);
    border: none;
}

.blog-pagination-link.blog-pagination-prev:hover,
.blog-pagination-link.blog-pagination-next:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
}

.blog-pagination-link.blog-pagination-disabled {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    cursor: not-allowed;
    opacity: 0.5;
}

.blog-pagination-link.blog-pagination-disabled:hover {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

/* Show filters only in Blogs, News, and Events tabs */
#blogs .resources-filters {
    display: block;
}

#news .resources-filters {
    display: block;
}

#events .resources-filters {
    display: block;
}

.resources-search-form {
    margin-bottom: 0;
}

.resources-search-group {
    position: relative;
    gap: 10px;
}

.resources-search-icon-wrapper {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: center;
}
.resources-search-group input{
    height: 55px;
    border-radius: 16px!important;
    padding-left: 50px;
}
.resources-search-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.resources-search-input {
    border: 1px solid var(--border-color);
    border-radius: 16px 0 0 16px;
    padding: 12px 15px 12px 50px;
    font-size: var(--font-size-body);
}

.resources-search-input:focus {
    border-color: var(--primary-color-red);
    outline: none;
    box-shadow: 0 0 0 2px rgba(182, 33, 39, 0.1);
}

.resources-search-btn {
    background-color: var(--primary-color-red);
    color: var(--white);
    border: none;
    border-radius: 16px!important;
    padding: 12px 20px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.resources-search-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.resources-search-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transform: rotate(90deg);
}

.resources-filter-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.resources-filter-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.resources-filter-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.resources-filter-dropdown .form-control {
    padding-left: 50px;
    padding-right: 50px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-smd);
    font-size: var(--font-size-body);
    appearance: none;
    background-image: none;
    cursor: pointer;
    width: 100%;
    height: 55px;
}
 
.resources-filter-dropdown .form-control:focus {
    border-color: var(--primary-color-red);
    outline: none;
    box-shadow: 0 0 0 2px rgba(182, 33, 39, 0.1);
}

/* ========================================
   BROCHURE LISTING SECTION
   ======================================== */
.brochure-listing {
    padding: 60px 0;
    background-color: var(--white);
}

.brochure-listing-header {
    margin-bottom: 40px;
    text-align: center;
}

.brochure-listing-header .section-tag {
    margin-bottom: 16px;
}

.brochure-listing-title {
    color: var(--black);
    margin-bottom: 16px;
}

.brochure-listing-description {
    color: var(--dark-gray);
    font-size: var(--font-size-body);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.brochure-listing-inner {
    background-color: var(--light-gray);
    border-radius: var(--radius-md);
    padding: 30px;
}

.brochure-listing-filters {
    margin-bottom: 30px;
}

.brochure-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.brochure-no-results-wrap {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
}

.brochure-no-results {
    color: var(--dark-gray);
    font-size: var(--font-size-body);
    margin: 0;
}

.brochure-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brochure-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.brochure-card-pdf-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.brochure-card-title {
    font-size: var(--font-size-large-body);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.4;
}

.brochure-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
}

.brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-smd);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.brochure-btn-download {
    background-color: var(--primary-color-red);
    color: var(--white);
    border: none;
}

.brochure-btn-download:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.brochure-btn-view {
    background-color: transparent;
    color: var(--primary-color-red);
    border: 2px solid var(--primary-color-red);
}

.brochure-btn-view:hover {
    background-color: var(--primary-color-red);
    color: var(--white);
}
/* ========================================
   ERROR 404 PAGE
   ======================================== */
.error-404-section {
    padding: 80px 0 100px;
    background-color: var(--white);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-404-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-404-number {
    font-size: clamp(80px, 18vw, 160px);
    font-weight: 800;
    line-height: 1;
    color: var(--light-gray);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.error-404-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.error-404-tag .section-tag-text {
    font-size: var(--font-size-body);
    font-weight: 500;
    color: var(--primary-color-red);
}

.error-404-title {
    color: var(--black);
    margin-bottom: 16px;
}

.error-404-description {
    color: var(--dark-gray);
    font-size: var(--font-size-body);
    line-height: 1.6;
    margin-bottom: 32px;
}

.error-404-search {
    margin-bottom: 32px;
}

.error-404-search .search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
}

.error-404-search label {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 320px;
    margin: 0;
}

.error-404-search .search-field {
    width: 100%;
    min-width: 200px;
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-smd);
    font-size: var(--font-size-body);
}

.error-404-search .search-field:focus {
    border-color: var(--primary-color-red);
    outline: none;
    box-shadow: 0 0 0 2px rgba(182, 33, 39, 0.1);
}

.error-404-search .search-submit {
    background-color: var(--primary-color-red);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-smd);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.error-404-search .search-submit:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.error-404-actions {
    margin-bottom: 40px;
}

.error-404-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    font-size: var(--font-size-body);
}

.error-404-links a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition);
}

.error-404-links a:hover {
    color: var(--primary-color-red);
}
/* ========================================
   SEARCH RESULTS PAGE (blog-style)
   ======================================== */
.resources-search .resources-header {
    margin-bottom: 30px;
}

.resources-search .search-query-term {
    color: var(--primary-color-red);
}

.resources-search .resources-filters {
    margin-bottom: 40px;
}

.search-no-results {
    text-align: center;
    padding: 50px 20px;
}

.search-no-results-title {
    font-size: var(--font-size-heading2);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.search-no-results-text {
    color: var(--dark-gray);
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.search-no-results-form {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.search-no-results-form .search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.search-no-results-form .search-field {
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-smd);
    font-size: var(--font-size-body);
    min-width: 220px;
}

.search-no-results-form .search-submit {
    background-color: var(--primary-color-red);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-smd);
    font-weight: 500;
    cursor: pointer;
}

.search-pagination-wrapper {
    margin-top: 40px;
}

/* ========================================
   12. CTA SECTION
   ======================================== */

/* ----- 12.1 CTA Base ----- */
.cta {
    padding: 60px 0;
    background-color: var(--white);
}

.cta-wrapper {
    background-color: #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('../images/cta-background.png');
    background-size: cover;
    background-repeat: no-repeat;
}

 

/* ----- 12.2 CTA Content ----- */
.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title { 
    color: var(--white);
    margin-bottom: 15px;
}

.cta-description { 
    color: var(--white);
    margin-bottom: 25px; 
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color-red);
    color: var(--white);
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--white);
}

.cta-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* ========================================
   13. FOOTER SECTION
   ======================================== */

/* ----- 13.1 Footer Base ----- */
.footer { 
    padding: 60px 0;
}

.footer-wrapper { 
    background-color: #F4F4F5;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #E4E4E7;
}

.footer-main {
    margin-bottom: 20px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.footer-main-col {
    min-width: 0;
}

.footer-main-col-brand {
    border-right: 1px solid var(--border-color);
    padding-right: 32px;
}

.footer-head-office {
    margin-top: 20px;
}

.footer-head-office-location {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-head-office-text {
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 16px;
}

.footer-head-office-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.footer-follow-label {
    font-size: var(--font-size-large-body); 
    color: var(--black);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1.44px;
}

.footer-follow-icons {
    display: flex;
    gap: 10px;
}

.footer-follow-icons a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8E8E93;
    font-size: 13px;
    transition: var(--transition);
}

.footer-follow-icons a:hover { 
    color: #B62127;
}
/* ----- 13.2 Footer Brand ----- */
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 96px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    color: #3F3F46 ;
    line-height: 1.7;
    margin: 0 0 20px;
}

/* ----- 13.3 Footer Columns ----- */
.footer-column {
    margin-bottom: 0;
}

.footer-title {
    font-size: var(--font-size-large-body);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1.44px;
}

.footer-column-stacked {
    margin-top: 24px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    display: block;
    margin-bottom: 8px;
}

.footer-list li img {
    width: 14px;
    height: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-list li a {
    font-size: var(--font-size-body);
    color: var(--dark-gray);
    transition: var(--transition);
    line-height: 1.5;
}

.footer-list li a:hover {
    color: var(--primary-color-red);
}

/* ----- 13.4 Footer Top ----- */
.footer-top {
    padding-bottom: 30px; 
    margin-bottom: 30px;
}

/* ----- 13.5 Footer Middle ----- */
.footer-middle {
    padding-bottom: 0;
}

.footer-middle .footer-title {
    margin-bottom: 15px;
}
 

.footer-office-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    padding-right: 30px;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item p {
    font-size: var(--font-size-body);
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
}

.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-body);
    color: var(--dark-gray);
    transition: var(--transition);
    padding: 4px 0;
    border-left: 0;
}

.footer-contact-link img {
    width: 18px;
    height: 18px;
}

.footer-contact-link:hover {
    color: var(--primary-color-red);
}

/* ----- 13.6 Footer Bottom / Copyright ----- */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    margin-top: 12px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-left p {
    font-size: 14px;
    color: #363636;
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-right a {
    font-size: 14px;
    color: #363636;
    transition: var(--transition);
}

.footer-bottom-right a:hover {
    color: var(--primary-color-red);
}

/* ========================================
   14. ANIMATIONS & KEYFRAMES
   ======================================== */

/* Marquee Scroll Animation */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Right Animation */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Float Badge Animation */
@keyframes floatBadge {
    0%, 100% {
        transform: translateX(-20px) translateY(0);
    }
    50% {
        transform: translateX(-20px) translateY(-10px);
    }
}

/* ========================================
   8. RESPONSIVE STYLES
   ======================================== */

/* ----- 8.1 Large Devices (1199px) ----- */
/* Desktop: hide mobile right group (search + hamburger wrapper) */
.header-right-mobile {
    display: none;
}

/* ----- 8.2 Medium Devices (991px) ----- */
/* ----- 8.3 Small Devices (767px) ----- */
/* ----- 8.4 Extra Small Devices (575px) ----- */


.about-global-map {
    max-width: 850px;
    margin: auto;
    padding-top: 50px;
    position: relative;
}

.about-global-map-image {
    position: relative;
    width: 100%;
    line-height: 0;
}

.about-global-map-image > img {
    vertical-align: middle;
}

.about-global-map-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-global-map-markers {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-global-map-marker {
    position: absolute;
    width: 48px;
    height: 48px;
    margin-left: -24px;
    margin-top: -24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    z-index: 2;
    transition: transform 0.2s ease;
}

.about-global-map-marker:hover {
    transform: scale(1.1);
}

.about-global-map-marker-pin {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.about-global-map-marker-pin svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.about-global-map-marker.active .about-global-map-marker-pin {
    background-color: var(--white);
    box-shadow: 0 4px 16px rgba(182, 33, 39, 0.25);
    outline: 2px solid var(--primary-color-red);
    outline-offset: 2px;
}

.about-global-map-marker.active .about-global-map-marker-pin path {
    stroke: var(--primary-color-red); 
}

.about-global-map-popup {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 10;
    pointer-events: none;
}

.about-global-map-marker.active .about-global-map-popup {
    opacity: 1;
    visibility: visible;
}

.about-global-map-popup-line {
    display: block;
    width: 2px;
    height: 35px;
    background-color: var(--primary-color-red);
    margin: 0 auto;
    position: relative;
}
.about-global-map-popup-line::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width:13px;
    height:13px;
    border-radius: 50%;
    background-color: var(--primary-color-red);   
    transform: translateX(-40%);
}

.about-global-map-popup-box {
    background-color: var(--white);
    border-radius:24px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    min-width: 280px;
    max-width: 380px;
    text-align: left;
}

.about-global-map-popup-title {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 6px;
}

.about-global-map-popup-address {
    font-size: var(--font-size-small-body);
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
}