/*
Theme Name: My CygniSoft
Theme URI: http://example.com/my-custom-theme
Author: Rabia
Author URI: http://example.com
Description: A custom theme based on my static HTML/CSS design.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/

/*
==================================================
1. GLOBAL VARIABLES
==================================================
*/

:root {
    /* --- OLD THEME VARS (DARK) --- */
    --color-bg-body: #222;
    --color-bg-surface: #1a1a1a;
    --color-text-primary: #fff;
    --color-text-secondary: #ccc;
    --color-accent: #f7941e;
    --color-shadow: rgba(0,0,0,0.2);

    /* --- NEW HOMEPAGE VARS (DARK) --- */
    --brand-gold: #D4AF37;
    --brand-teal: #008080;
    --color-bg: #1A1A1A;
    --color-bg-secondary: #2C2C2C;
    --color-text-dark: #F8F9FA;
    --color-text-muted: #ADB5BD;
    --color-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(44, 44, 44, 0.6);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --color-input-bg: rgba(255, 255, 255, 0.08); 
    --color-input-text: #F8F9FA;
	
	/* --- STAFFING SOLUTIONS DARK VARS --- */
    --brand-orange: #ff8c00; 
    --pure-black: #000000;    
    --dark-gray: #1a1a1a;     /* Content Section Background */
    --text-light: #e0e0e0;   /* White/Light text on dark backgrounds */
    --text-muted: #888888;   
    --nav-bg: #0a0a0a;        
    --border-orange-subtle: rgba(255, 140, 0, 0.8); 
    --border-gray-subtle: rgba(224, 224, 224, 0.4); 
    --border-orange-hover: rgba(255, 140, 0, 0.4);

    /* --- LIGHT MODE VARIABLE DEFINITIONS --- */
    /* This block ensures your custom variables get inverse values in light mode */
    --light-bg: #ffffff;      
    --light-content: #f5f5f5; 
    --dark-text: #222222;     
    --light-muted: #555555;
	
}
    html {
        scroll-behavior: smooth !important;
        scroll-padding-top: 100px;
    }
/* Light Mode Variables */
html.light-mode {
    /* --- OLD THEME VARS (LIGHT) --- */
    --color-bg-body: #f4f4f4;
    --color-bg-surface: #ffffff;
    --color-text-primary: #333;
    --color-text-secondary: #555;
    --color-accent: #f7941e;
    --color-shadow: rgba(0,0,0,0.1);

    /* --- NEW HOMEPAGE VARS (LIGHT) --- */
    --brand-gold: #D4AF37;
    --brand-teal: #008080;
    --color-bg: #F8F9FA;
    --color-bg-secondary: #E9ECEF;
    --color-text-dark: #212529;
    --color-text-muted: #6C757D;
    --color-border: rgba(33, 37, 41, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.6);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --color-input-bg: rgba(0, 0, 0, 0.2);
    --color-input-text: #F8F9FA;
	

    --pure-black: var(--light-bg);      /* Black becomes White */
    --dark-gray: var(--light-content);  /* Dark gray becomes Light Content Background */
    --text-light: var(--dark-text);     /* Light text becomes Dark text */
    --nav-bg: var(--light-content);     /* Dark Nav becomes Light Content Background */
}

/*
==================================================
2. GLOBAL BASE STYLES
==================================================
*/

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
html { 
overflow-x: hidden;
    scroll-behavior: smooth; 
    margin-top: 0 !important;
	overflow-x: hidden;
}
/* --- END FIX --- */

body {
    display: block;
    margin: 0px;
    background-color: var(--color-bg-body);
    color: var(--color-text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}
html, body {
    height: 100%;
	width: 100%;
    max-width: 100%;
    overflow-x: clip; /* Force browser to cut off side-scroll */
    position: relative;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.site-content {
    flex: 1;
    padding-top: 100px;
}

/* --- Reusable Components --- */
.container {  width: 100%; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2;}
.section {
    padding: 120px 0; 
    position: relative;
}
.section-heading { font-family: var(--font-heading); font-size: 3rem; text-align: center; margin-bottom: 20px; }
.section-subheading { text-align: center; max-width: 700px; margin: 0 auto 80px auto; color: var(--color-text-muted); line-height: 1.7; font-size: 1.1rem; }
.btn { display: inline-block; padding: 12px 32px; border-radius: 50px; text-decoration: none; font-weight: 500; font-family: var(--font-heading); transition: all 0.3s ease; border: 1px solid transparent; cursor: pointer;}
.btn-primary { background: var(--brand-gold); color: var(--color-text-dark); box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3); }
.glass-card { background: var(--glass-bg);  backdrop-filter: blur(12px); transition: all 0.4s ease; }
.glass-card:hover { border-color: rgba(0, 128, 128, 0.5); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); transform: translateY(-8px); }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }


/*
==================================================
3. GLOBAL HEADER & FOOTER
==================================================
*/
.menu-toggle .icon-close {
    display: none; 
}

.menu-toggle.toggled .icon-open {
    display: none;
}

.menu-toggle.toggled .icon-close {
    display: block;
}


#site-header {
    background-color: var(--color-bg-surface);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px var(--color-shadow);
	transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease !important;
}

body.admin-bar #site-header {
    top: 32px; 
}

#site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: min(1440px, 100%);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

#site-header.header-scrolled {
    padding: 10px 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
#site-header.header-scrolled .site-logo img {
	max-width: 80px !important;
    max-height: 50px !important;
    transition: max-height 0.3s ease !important;
}
#site-header.header-scrolled .main-navigation li {
    margin-top: 0;
    margin-bottom: 0;
}

#site-header.header-scrolled .header-cta-button a{
	padding: 6px 9px !important;
	font-size:12px;
}

#site-header.header-scrolled .container{
	max-width: 70% !important;
}

.site-logo {
    display: flex;
    align-items: center;
}
.site-logo img {
    max-height: 77px;
    max-width: 143px;
}
.site-logo a {
    color: var(--color-text-primary);
    text-decoration: none;
}
.site-title {
    color: var(--color-text-primary);
    font-size: 24px;
    font-weight: 600;
}
.site-logo h1 {
    font-size: 24px;
    margin: 0;
}
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.main-navigation li {
    margin-left: 30px;
}
.main-navigation a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.main-navigation a:hover {
    color: var(--color-accent);
}
.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}
.menu-toggle {
    display: none; 
    cursor: pointer;
    color: var(--color-text-primary);
    font-size: 24px;
    font-weight: bold;
}
.theme-toggle {
    background: none;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
    font-size: 20px;
    padding: 0;
    line-height: 1;
}
.theme-toggle .icon-moon {
    display: none;
}
html.light-mode .theme-toggle .icon-sun {
    display: none;
}
html.light-mode .theme-toggle .icon-moon {
    display: inline;
}
/* ==================================================
BUTTON STYLING & ALIGNMENT (FINAL - Muted Green)
==================================================
*/
:root {
    --primary-green: #4D7C75; 
    --hover-green: #36615B;  
    --text-color: #FFFFFF;   
}

.main-navigation ul {
    display: flex; 
    align-items: center;
    width: 100%;
    flex-wrap: nowrap; 
}
.header-cta-button {
	margin-left: auto;
    padding-left: 40px; 
    
    order: 10;
    display: flex;  
    align-items: center;
}

.header-cta-button a {
    /* --- Muted Green Appearance --- */
    background-color: var(--primary-green);
    color: var(--text-color) !important; 
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600; /* Professional weight */
    text-transform: uppercase;
    text-decoration: none; 
    border: none; /* Keep it clean */
    
    /* Subtle initial shadow for the "Silk" lift */
    box-shadow: 0 4px 6px rgba(77, 124, 117, 0.3); 
    
    /* Apply CALM, professional transition */
    transition: all 0.2s ease-in-out; 
}


/* 4. CALM HOVER ANIMATION (The "Pressed Silk" effect) */
.header-cta-button a:hover {
    /* Darken the background color */
    background-color: var(--hover-green); 
    
    /* Remove the lift shadow for the 'press down' look */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); 
    
    /* Shift down 1 pixel for the secure press feel */
    transform: translateY(1px); 
    
    /* Stop any lingering pulse/bouncy animation */
    animation: none; 
}

/* Cleanup - Remove the old pulse keyframes, as we are going for calm */
/* If you still have them in your CSS file, you can remove the @keyframes pulse-effect {} block entirely. */

/* --- Footer Styling --- */
#site-footer {
    background-color: var(--color-bg-surface);
    color: var(--color-text-primary);
    padding: 40px 0;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.footer-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin-bottom: 20px;
}
.footer-navigation li a {
    color: var(--color-text-primary);
    text-decoration: none;
}
.footer-navigation li a:hover {
    color: var(--color-accent);
}
.footer-widgets {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}
.footer-widgets .widget {
    flex: 1 1 200px;
}
/* 1. Turn the column into a grid */
.footer-col.footer-image-gallery {
    display: grid;
   
    gap: 15px; 
    align-items: center;
}

.footer-col.footer-image-gallery h4,
.footer-col.footer-image-gallery .widget:nth-of-type(1) {
    grid-column: 1 / -1; /* Stretch across the whole area */
    width: 100%;
    margin-bottom: 15px;
}

.footer-col.footer-image-gallery .widget img {
    width: 57%; /* Force image to fill the slot */
    height: auto; 
    object-fit: contain; /* Ensure logo text stays sharp */
    display: block;
}

/* --- OPTIONAL: REMOVE PADDING THAT MIGHT BE SHRINKING THEM --- */
.footer-col.footer-image-gallery .widget {
    padding: 0;
    margin: 0;
    border: none;
}
.site-info p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

.main-footer .custom-logo-link img{
	width: 158px;
    height: 83px;
}


/*
==================================================
4. PAGE & SECTION STYLES
==================================================
*/

/*
--------------------------------------------------
4A. HOMEPAGE (page-template-page-home)
--------------------------------------------------
*/

body.page-template-page-home .site-content {
    padding-top: 0; /* Removes 100px padding from old theme */
}

body.page-template-page-home {
    /* Overrides default body to use NEW homepage variables */
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-dark);
}

/* --- Digital Aurora Background --- */
.aurora-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; overflow: hidden; z-index: -1;
}
.aurora-bg::before, .aurora-bg::after {
    content: ''; position: absolute; border-radius: 50%;
    filter: blur(150px); opacity: 0.1;
    animation: moveGradient 30s infinite alternate;
}
.aurora-bg::before { background: var(--brand-teal); width: 800px; height: 800px; top: -10%; left: -10%; }
.aurora-bg::after { background: var(--brand-gold); width: 900px; height: 900px; bottom: -15%; right: -10%; animation-delay: 15s; }
@keyframes moveGradient {
    from { transform: translate(0, 0) scale(1) rotate(0deg); } to { transform: translate(70px, -70px) scale(1.1) rotate(15deg); }
}

/* --- Homepage Header --- */
.main-header { position: fixed; top: 0; left:0; width: 100%; z-index: 100; padding: 20px 0; transition: all 0.4s ease; }
.main-header.scrolled { background: rgba(248, 249, 250, 0.8); backdrop-filter: blur(15px); padding: 15px 0; border-bottom: 1px solid var(--color-border); }
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px;}
.header-logo img { height: 45px; }
.main-nav a { text-decoration: none; color: var(--color-text-dark); margin-left: 40px; font-weight: 500; font-size: 1rem; }
.main-nav a:hover { color: var(--brand-gold); }

/* --- Homepage Hero Section --- */
.page-template-home .hero { 
    min-height: 100vh; 
    display: flex; align-items: center; text-align: center; position: relative; 
    padding-top: 60px; /* Internal top padding */
    padding-bottom: 150px; 
}
#hero-orb-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.7; }
.hero-content { position: relative; z-index: 2; }
.hero-content h1 { font-family: var(--font-heading); font-size: 4.5rem; font-weight: 700; line-height: 1.15; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero-content p { font-size: 1.2rem; color: var(--color-text-muted); margin: 0 auto 40px auto; max-width: 600px; }
.hero-focus-cards { display: flex; justify-content: center; gap: 25px; margin-bottom: 50px; }
.hero-card { padding: 25px; border-radius: 16px; text-decoration: none; color: var(--color-text-muted); width: 280px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 15px; border: 1px solid transparent; background: transparent; backdrop-filter: blur(0px); transition: all 0.4s ease; }
.hero-card:hover { transform: translateY(-8px); background: var(--glass-bg); border-color: var(--color-border); color: var(--color-text-light); backdrop-filter: blur(10px); }
.hero-card .icon { font-size: 2.5rem; color: var(--color-text-muted); transition: color 0.4s ease; height: 40px; }
.hero-card:hover .icon { color: var(--brand-gold); }
.hero-card h4 { font-family: var(--font-heading); font-weight: 500; font-size: 1.2rem; color: var(--color-text-dark); }
.hero-card p { font-size: 0.9rem; line-height: 1.6; margin: 0; color: var(--color-text-muted); }
.see-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}
.see-more:hover {
    color: var(--brand-teal);
    transform: translateX(3px);
}

/* --- Job Search Section --- */
.job-search-section {
    padding: 60px 0 120px 0; 
    background-color: var(--color-bg-secondary); 
    position: relative;
    z-index: 5; 
}
.job-search-card {
    padding: 50px 40px; 
    text-align: center;
    max-width: 900px; 
    margin: 0 auto; 
}
.job-search-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 40px; 
    color: var(--color-text-dark);
    line-height: 1.3;
}
.rotating-text-wrapper {
    color: var(--brand-gold);
    display: inline-block;
    vertical-align: top;
    height: calc(2.5rem * 1.3); 
    overflow: hidden;
    margin-left: 10px;
}
.rotating-text-wrapper span {
    display: block;
    height: calc(2.5rem * 1.3); 
    line-height: calc(2.5rem * 1.3); 
    animation: slide-up 9s infinite;
}
@keyframes slide-up { 
    0%, 11% { transform: translateY(0); }
    33%, 44% { transform: translateY(calc(-2.5rem * 1.3)); }
    66%, 77% { transform: translateY(calc(-2.5rem * 1.3 * 2)); }
    100% { transform: translateY(calc(-2.5rem * 1.3 * 3)); }
}
.job-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: var(--color-input-bg);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    padding: 15px;
    margin-bottom: 30px; 
}
.form-field {
    flex: 1;
    position: relative;
    min-width: 200px;
}
.form-field .fa-solid {
    position: absolute; top: 50%; left: 15px; transform: translateY(-50%);
    color: var(--color-text-muted);
}
.job-search-form input {
    width: 100%; background: transparent; border: none;
    padding: 15px 15px 15px 45px;
    font-family: var(--font-body); font-size: 1rem; color: var(--color-input-text);
}
.job-search-form input::placeholder { color: var(--color-text-muted); }
.job-search-form input:focus { outline: none; }
.job-search-form button {
    flex-shrink: 0; display: flex; align-items: center; gap: 10px;
}
.job-search-form button .fa-solid { font-size: 1rem; }
.popular-searches {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 10px 15px; 
    color: var(--color-text-muted); font-size: 0.9rem;
}
.popular-searches span {
    margin-right: 5px; 
}
.popular-searches a {
    text-decoration: none; color: var(--color-text-dark);
    background: rgba(255, 255, 255, 0.05); border: 1px solid var(--color-border);
    padding: 5px 12px; border-radius: 20px; transition: all 0.3s ease;
}
.popular-searches a:hover {
    background: var(--glass-bg); border-color: var(--brand-gold); color: var(--brand-gold);
}

/* --- Stats Section --- */
.stats-section { padding: 80px 0; background-color: var(--color-bg); } 
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-item .stat-number { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; color: var(--brand-gold); }
.stat-item .stat-label { color: var(--color-text-muted); }

/* --- Client Logos Section --- */
.logos-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    border-radius: 20px;
}
.logo-slider {
    overflow: hidden;
    position: relative;
}
.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 35s linear infinite;
}
.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo-item img {
    max-height: 55px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease, filter 0.3s ease;
}
.logo-item:hover img {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- Contact CTA Section --- */
.page-template-contact .container{
	margin-left:114px;
}
.contact-cta {
    background-color: var(--color-bg-secondary);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-cta-wrapper {
    max-width: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-card {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 15px 40px var(--color-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}
.contact-title {
    font-size: 3rem;
    color: var(--brand-gold);
    margin-bottom: 20px;
}
.contact-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}
.contact-btn {
    font-size: 1rem;
    font-weight: 600;
    background: var(--brand-gold);
    color: var(--color-text-dark);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.contact-btn:hover {
    background: #ffca55; 
    transform: translateY(-3px);
}
.contact-btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.contact-btn:hover .arrow {
    transform: translateX(5px);
}

.sticky-services-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start; 
    position: relative;
	padding: 100px 0;
}

.sticky-visual {
    position: -webkit-sticky;
    position: sticky;
    top: 35vh; 
    height: auto; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    z-index: 10;
}

.visual-content .icon { 
    font-size: 8rem;
    color: var(--brand-teal); 
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    filter: drop-shadow(0 0 20px rgba(0, 128, 128, 0.2)); 
}
.scroll-content {
    display: flex;
    flex-direction: column;
}
.scroll-content .service-panel { 
    padding: 40px; 
    background: var(--glass-bg);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    margin-bottom: 20vh;   
    opacity: 0.3; 
    filter: blur(5px); 
    transform: scale(0.95);
    transition: all 0.8s ease; 
}

.scroll-content .service-panel.active { 
    opacity: 1; 
    filter: blur(0); 
    transform: scale(1);
}
.container {
    max-width: 1200px; 
    margin-left: auto !important;
    margin-right: auto !important;   
    padding-left: 20px !important;
    padding-right: 20px !important;   
    width: 100%;
    box-sizing: border-box;
}

.scroll-content .service-panel:last-child { 
    margin-bottom: 0; 
}

.service-panel h3 { 
    font-family: var(--font-heading); 
    font-size: 2rem; 
    margin-bottom: 15px; 
    color: var(--brand-gold); 
}

.service-panel p { 
    color: var(--color-text-muted); 
    font-size: 1.1rem; 
    line-height: 1.8; 
}

.grid-3-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.info-card { padding: 40px; }
.info-card .icon { font-size: 2.5rem; color: var(--brand-teal); margin-bottom: 20px; }
.info-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 15px; }
.info-card p { color: var(--color-text-muted); line-height: 1.7; }

.process-timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline-line { position: absolute; top: 0; left: 24px; width: 2px; height: 100%; background: var(--color-border); }
.timeline-line-progress { width: 100%; height: 0%; background: linear-gradient(to bottom, var(--brand-gold), var(--brand-teal)); transition: height 1s ease-out; }
.timeline-item { position: relative; padding-left: 80px; margin-bottom: 80px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; top: 5px; left: 15px; width: 20px; height: 20px; background: var(--color-bg-secondary); border: 2px solid var(--color-border); border-radius: 50%; transition: all 0.5s ease; }
.timeline-content .step-number { font-family: var(--font-heading); font-size: 1rem; color: var(--brand-gold); margin-bottom: 10px; }
.timeline-content h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 15px; }
.timeline-content p { color: var(--color-text-muted); line-height: 1.8; }
.timeline-item.active .timeline-dot { border-color: var(--brand-gold); transform: scale(1.2); }

.approach-section {
    padding: 100px 0;
    background: var(--color-bg-secondary);
    text-align: center;
}
.approach-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}
.approach-card {
    background: var(--glass-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px 30px;
    flex: 1 1 250px;
    transition: all 0.3s ease;
}
.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.approach-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--brand-teal);
}
.approach-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brand-gold);
}
.approach-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}
.cta-wrapper {
    margin-top: 50px;
}

/* --- Testimonials Section --- */
//* ==================================================
5. INFINITE SCROLL & DESIGN FIXES (FINAL)
================================================== */

/* 1. SWIPER CONTAINER & OVERFLOW FIXES */
.testimonials-slider {
    overflow-x: hidden; 
    position: relative;
    width: 100%;
	max-width: 1400px; /* Constrains the width to your standard site container */
    margin: 0 auto;
    padding: 0; 
	max-width: 100vw;
	box-sizing: border-box;
}
.testimonials-section .container {
    /* Ensure the parent container doesn't allow overflow either */
    overflow: hidden; 
    width: 100%;
}
/* 2. SLIDE & CARD STYLING (The core of the repeating design) */
.testimonials-slider .swiper-slide {
    /* CRITICAL: Allows slidesPerView: 'auto' to work and sets the fixed card width */
    width: auto; 
    min-width: 250px; /* Adjust this value to match the width in your image */
    max-width: 350px; 
    height: auto; 
    box-sizing: border-box; 
    display: flex; /* Ensures card content fills slide height */
}

/* 3. ENSURE SMOOTH, CONTINUOUS MOVEMENT */
.testimonials-slider .swiper-wrapper {
    max-width: 1200px; 
    margin: 0 auto;   
    transition-timing-function: linear !important; 
}

.testimonials-slider .swiper-button-prev,
.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-pagination {
    display: none !important; 
}
.review-rating{
	margin:7px;
}
/* 5. Styling the testimonial card itself (based on your image design) */
.testimonial-card {
    /* Ensure the card maintains the dark background and strong border-radius */
    background-color: var(--color-bg-surface);
    border-radius: 12px; 
    padding: 30px; 
    /* Keep any specific box-shadow or lift styles you already had here */
}
.testimonials-section { background-color: var(--color-bg-secondary); } 
.testimonial-card { padding: 40px; position: relative; }
.testimonial-card .quote-icon { position: absolute; top: 30px; left: 30px; font-size: 3rem; color: var(--color-border); }
.testimonial-card p { font-size: 1.1rem; line-height: 1.8; margin-top: 50px; font-style: italic; }
.testimonial-card .author { margin-top: 25px; font-weight: 700; }
.testimonial-card .author span { display: block; font-weight: 400; color: var(--color-text-muted); font-style: normal; } /* --- FIX: "norm" to "normal;" --- */

/* --- Homepage Footer --- */
.main-footer {
    background-color: var(--color-bg); padding: 80px 0 30px 0; font-size: 0.95rem;
    border-top: 1px solid var(--color-border); 
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 2fr 1.5fr; gap: 50px; margin-bottom: 60px;
}
.footer-col .footer-logo { height: 40px; margin-bottom: 20px; }
.footer-col p { color: var(--color-text-muted); line-height: 1.7; max-width: 300px; text-align: center; margin: 0 auto; }
.footer-col h4 {
    font-family: var(--font-heading); font-size: 1.2rem;
    color: var(--color-text-dark); margin-bottom: 25px;
}
.footer-col ul { list-style: none; padding: 0; } 
.footer-col ul li { margin-bottom: 15px; color: var(--color-text-muted); }
.footer-col ul a { text-decoration: none; color: var(--color-text-muted); transition: color 0.3s ease; }
.footer-col ul a:hover { color: var(--brand-gold); }
.social-links { margin-top: 25px; display: flex; gap: 20px;  justify-content: center; align-items: center;  }
.social-links a { color: var(--color-text-muted); font-size: 1.5rem; transition: color 0.3s ease; }
.social-links a:hover { color: var(--brand-gold); }
.footer-bottom {
    text-align: center; padding-top: 30px; border-top: 1px solid var(--color-border);
    color: var(--color-text-muted); font-size: 0.9rem;
}

/* --- Global Services Section (Duplicate) --- */
/* This section is defined twice. We will use the first one. */
.services-section {
    background-color: var(--color-bg-secondary);
    padding: 80px 0;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;       /* allow cards to wrap to next row */
    gap: 2rem;             /* space between cards */
    justify-content: center; /* center the rows */
}

.services-row {
    display: grid;
    gap: 2rem; /* space between cards */
}

.services-row:first-child {
    grid-template-columns: repeat(2, 1fr); /* first row 2 cards */
}

.services-row:last-child {
    grid-template-columns: repeat(3, 1fr); /* second row 3 cards */
}

.service-card {
    position: relative; 
    padding: 30px 20px;
    text-align: left; 
    border-radius: 16px;
    transition: all 0.4s ease;
    cursor: default;

    /* Fixed width */
    width: 280px;          /* set your desired width */
    flex: 0 0 auto;        /* prevent stretching */
}
.service-card .icon {
    font-size: 3rem;
    color: var(--brand-teal);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}
.service-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 10px;
}
.service-card:hover {
    transform: translateY(-8px);
    border: 1px solid var(--brand-gold);
    background: var(--glass-bg);
}
.service-card:hover .icon {
    color: var(--brand-gold);
}
a.learn-more {
    position: absolute;
    bottom: 20px; 
    right: 20px; 
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}
a.learn-more i {
    transition: transform 0.3s ease;
}
a.learn-more:hover {
    color: var(--brand-teal); 
}
a.learn-more:hover i {
    transform: translateX(4px); 
}


/* --- ABOUT PAGE STYLES --- */
/*
** Variable Definitions:** These map the localized variables (like --bg-primary)
to your global theme variables (--color-bg, --brand-teal, etc.)
*/

.page-template-about {
    /* --- DARK MODE DEFAULTS (Mapped to global backgrounds/text) --- */
    --bg-primary: var(--color-bg);           /* #1A1A1A (Dark BG) */
    --bg-secondary: var(--color-bg-secondary); /* #2C2C2C (Dark Secondary BG) */
    --text-primary: var(--color-text-dark);  /* #F8F9FA (Light Text) */
    --text-secondary: var(--color-text-muted); /* #ADB5BD (Muted Text) */
    
    /* --- FORCED ORANGE ACCENTS (Override Teal/Gold mapping) --- */
    --accent-primary: #FF9800; /* Amber/Orange for primary elements */
    --accent-secondary: #FF5722; /* Deeper Orange for hover/secondary elements */
    
    --shadow-color: rgba(255, 152, 0, 0.25); /* Orange tinted shadow */
    --spotlight: rgba(255, 152, 0, 0.4); 	/* Orange tint for banner effect */

    /* Base Typography and Transition setup */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    font-size: 16px;
    transition: 0.4s;
}

/* Light Mode Override for About Page - Triggered by the global html.light-mode class */
html.light-mode .page-template-about {
    /* Re-map backgrounds/text to light versions of global colors (inherited from html.light-mode) */
    --text-primary: var(--color-text-dark); /* #212529 */
    --text-secondary: var(--color-text-muted); /* #6C757D */
    
    /* --- FORCED ORANGE ACCENTS (Light Mode version) --- */
    --accent-primary: var(--brand-gold);   /* Primary Orange for Light Mode */
    --accent-secondary: #FF9800; /* Amber/Secondary Orange for Light Mode */
    
    --shadow-color: rgba(0, 0, 0, 0.15); /* Soft shadow */
    --spotlight: rgba(255, 152, 0, 0.3);
}

/* IMPORTANT: This applies the scoped colors to the body tag, overriding defaults */
body.page-template-about {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    margin: 0;
}
/* --------------------------------------------------------------------------------- */

.page-template-about h1 { font-size: 2em; margin-bottom: 15px; line-height:1.3; }
.page-template-about h2 { font-size: 1.8em; margin-bottom: 15px; line-height:1.4; grid-column: 1 / -1; padding-bottom:15px;}
.page-template-about .synthesis-grid h2 { text-align:center;}
.page-template-about h3 { font-size: 1.3em; margin-bottom: 8px; line-height:1.4; }
.page-template-about p { font-size: 0.95em; margin-bottom: 18px; line-height:1.7; }

.page-template-about .section-padding { padding: 60px 5%; max-width: 1400px; margin: auto; background-color:var(--bg-primary)}

.page-template-about .values-section {background-color:var(--bg-secondary)}


/* --- THEME TOGGLE (Fixed version using global theme classes) --- */
/* You need this basic definition if the button is present in the header */
#theme-toggle {
    position: fixed;
    top: 20px; right: 20px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    cursor: pointer;
    z-index: 1000;
    font-size: 1.5em;
}

.page-template-about .icon { position: absolute; top:50%; left:50%; transform: translate(-50%, -50%); transition: 0.3s; }
/* Note: The visibility/display of sun/moon icons is handled by the global theme-toggle classes (lines 405-413) */


/* --- DYNAMIC SPOTLIGHT BANNER --- */
.page-template-about #dynamic-banner {
    position: relative;	
    height: 70vh;	
    min-height: 500px;	
    display: flex; justify-content:center; align-items:center; text-align:center;
    overflow:hidden; background: var(--bg-primary);
    --spotlight-x: 50%;
}
.page-template-about #dynamic-banner::before {
    content:''; position:absolute; top:0; left:0; width:100%; height:100%; z-index:2;
    pointer-events:none;
    background: radial-gradient(circle 400px at var(--spotlight-x) 50%, var(--spotlight), transparent 70%);
}
.page-template-about .banner-text-wrapper { position:relative; z-index:5; max-width:800px; }
.page-template-about #dynamic-banner h1 { font-size: 2em; margin-bottom: 10px; }
.page-template-about #dynamic-banner p { font-size: 1.1em; }

/* --- GRID SECTIONS --- */
.page-template-about .values-grid, .page-template-about .why-list {	
    display:grid;	
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));	
    gap:30px;	
}
.page-template-about .value-card, .page-template-about .why-card {	 	
    padding: 25px 20px;
    border-radius: 12px;
    background: var(--bg-primary);
    box-shadow:0 4px 15px var(--shadow-color);
    transition: transform 0.3s;
    position: relative;
}
.page-template-about .value-card:hover, .page-template-about .why-card:hover { transform: translateY(-5px); }
.page-template-about .value-card::before, .page-template-about .why-card::before {
    content:''; position:absolute; top:0; left:0; width:100%; height:100%;
    pointer-events:none; z-index:2; opacity:0; transition:0.3s;
    background: radial-gradient(circle 200px at var(--mouse-x) var(--mouse-y), rgba(255,152,0,0.25), transparent 70%);
}
.page-template-about .value-card:hover::before, .page-template-about .why-card:hover::before { opacity:1; }
.page-template-about .value-card h3 { color: var(--accent-primary); }

/* --- Story Grid --- */
.page-template-about .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;	
    padding: 60px 5%;	 	
    max-width: 1472px;	 	
    margin: auto;
    align-items: start;	 	
}
.page-template-about .story-image {
    min-height: 300px;	 	
    background-color: transparent;	
    border-radius: 0;	
    box-shadow: none;	
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9em;
}
.page-template-about .story-image img{
	max-width:673px;
	border-radius: 20px;
}



@media (max-width: 768px) {
    .page-template-about .story-grid { grid-template-columns: 1fr; }
    .page-template-about .story-image { margin-top: 20px; }
}

/* --- Synthesis Grid --- */
.page-template-about .synthesis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
    background: var(--bg-primary);	 	
    padding: 60px 0;	
    max-width: 1300px;	 	
    margin: 40px auto;	
    border-radius: 15px;	
    box-shadow: 0 10px 30px var(--shadow-color);	
}
.page-template-about .synthesis-column {
    padding: 16px 14%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 400px;
    border-radius: 12px;
    margin: 19px 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: background 0.4s;
    /* max-width: 500px; */
}
.page-template-about .col-left { background: var(--bg-secondary); }	
.page-template-about .col-right { background: var(--bg-primary); }
.page-template-about .mantra-highlight { font-weight:700; font-size:1.1em; color: var(--accent-primary); line-height:1.4; }
@media (max-width:768px) {	
    .page-template-about .synthesis-grid { grid-template-columns:1fr; }	
    .page-template-about .col-left { border-right:none; border-bottom:1px solid var(--text-secondary);}	
}

/* --- Progress Bars --- */
.page-template-about .progress-list { margin-top: 40px; margin-bottom: 40px; }
.page-template-about .progress-item {
    margin-bottom: 25px;
    padding: 15px 20px;
    border-radius: 8px;
    background: var(--bg-primary);
    box-shadow:0 2px 5px var(--shadow-color);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: none;
}
.page-template-about .progress-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--shadow-color);
}
.page-template-about .progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
}
.page-template-about .progress-label { color: var(--text-primary); font-size: 1em; }
.page-template-about .progress-value { color: var(--accent-primary); font-size: 1.2em; }
.page-template-about .progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--accent-secondary);
    border-radius: 4px;
    overflow: hidden;
}
.page-template-about .bar-fill {
    height: 100%;
    background: var(--accent-primary);
    width: 0;	
    transition: width 1s ease-out;
}

/* --- CTA Button --- */
.page-template-about .cta-button {	
    display:inline-block; padding:10px 25px; background: var(--accent-primary); color: var(--bg-primary); border-radius:8px; font-weight:bold; text-decoration:none; margin-top:15px; transition:0.3s;	
}
.page-template-about .cta-button:hover { background: var(--accent-secondary); transform:translateY(-2px); }

/* --- Download Links --- */
.page-template-about .download-link {	
    display:block; margin-bottom:10px; font-size:1.1em; text-decoration:none; color: var(--accent-primary); border-bottom:1px solid var(--text-secondary); position:relative;	
}
.page-template-about .download-link:hover {	
    color: var(--accent-secondary);	
    background-image: linear-gradient(90deg, transparent, var(--accent-primary) 5%, transparent 15%);	
    background-size:100% 100%;	
    animation: stream-data 2s linear infinite;	
}
@keyframes stream-data { from { background-position: -200% 0; } to { background-position:200% 0; } }


/* ---
TECHNOLOGY page
--------------
*/
body.page-template-technology:not(.light-mode) {
    /* This variable is for your cards */
    --color-bg: #0a0f1a;
    /* This is the variable your global <body> rule is listening for */
    --color-bg-body: #0a0f1a;
    --color-surface: #1a202c;
    --color-text: #e0e0e0;
section-text-secondary: #a0a0a0;
    --color-accent: #B87333;
    --color-accent-dark: #3D2610;
}

body.page-template-technology.light-mode {
    /* This variable is for your cards */
    --color-bg: #f4f7f6;
    /* This is the variable your global <body> rule is listening for */
    --color-bg-body: #f4f7f6;
    --color-surface: #ffffff;
    --color-text: #1a202c;
    --color-text-secondary: #555;
    --color-accent: #B87333;
    --color-accent-dark: #F7EFE5;
}

    /* --- Smooth Scrolling (Same) --- */
    /* This is a global property, leaving it is fine */
    html {
        scroll-behavior: smooth;
    }

    /* All styles below are now prefixed with .page-template-technology
     to prevent them from affecting other pages.
    */

    .page-template-technology .container { width: 90%; max-width: 1100px; margin: auto; padding: 3rem 0; }
    .page-template-technology h1, 
    .page-template-technology h2, 
    .page-template-technology h3 { color: var(--color-text); margin-bottom: 1rem; line-height: 1.2; }
    .page-template-technology h1 { font-size: 3rem; }
    .page-template-technology h2 { font-size: 2.2rem; border-bottom: 2px solid var(--color-accent-dark); padding-bottom: 0.5rem; }
    .page-template-technology h3 { font-size: 1.5rem; color: var(--color-accent); }
    .page-template-technology p { font-size: 1.1rem; color: var(--color-text-secondary); max-width: 60ch; }
    .page-template-technology section { margin-bottom: 4rem; }
    
    /* --- HERO SECTION (Same) --- */
    .page-template-technology .hero { position: relative; height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 0 2rem; }
    .page-template-technology .hero-video { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; object-fit: cover; transform: translate(-50%, -50%); z-index: 1; }
    .page-template-technology .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(10, 15, 26, 0.9);;
        z-index: 2;
        overflow: hidden; /* Keep particles inside */
    }
    .page-template-technology .hero-content { position: relative; z-index: 3; 
	transform: translateY(-40px);
	padding-bottom: 70px;}
    .page-template-technology .hero h1 {
        color: #ffffff;
        margin-bottom: 1.5rem;
    }
    .page-template-technology #typing-target {
        color: var(--color-accent); /* Make the dynamic word stand out */
    }
    .page-template-technology #typing-target::after {
        content: '|';
        display: inline-block;
        animation: blink 0.7s infinite;
    }
    /* @keyframes are global, they don't get prefixed */
    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }
    .page-template-technology .hero p { color: #e0e0e0; font-size: 1.2rem; margin-bottom: 2.5rem; }
    .page-template-technology .hero-buttons .cta-button { text-decoration: none; font-size: 1rem; font-weight: bold; padding: 12px 24px; border-radius: 4px; margin: 0 0.5rem; transition: all 0.3s ease; }
    .page-template-technology .hero-buttons .cta-button.primary { background-color: var(--color-accent); color: var(--color-bg); }
    .page-template-technology .hero-buttons .cta-button.primary:hover { 
        transform: translateY(-3px); 
        box-shadow: 0 4px 20px rgba(184, 115, 51, 0.4); 
    }
    .page-template-technology .hero-buttons .cta-button.secondary { background-color: transparent; border: 2px solid var(--color-accent); color: var(--color-accent); }
    .page-template-technology .hero-buttons .cta-button.secondary:hover { background-color: var(--color-accent); color: var(--color-bg); transform: translateY(-3px); }

    /* --- Particle Effect (Same) --- */
    .page-template-technology #particle-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none; 
    }
    .page-template-technology .particle {
        position: absolute;
        background: var(--color-accent);
        border-radius: 50%;
        opacity: 0.6;
        box-shadow: 0 0 8px var(--color-accent);
        animation: float 20s infinite linear;
        bottom: -20px; 
    }
    /* @keyframes are global, they don't get prefixed */
    @keyframes float {
        0% {
            transform: translateY(0) translateX(0);
            opacity: 0.6;
        }
        100% {
            transform: translateY(-110vh) translateX(var(--float-x)); 
            opacity: 0;
        }
    }

    /* --- DELETED: .services CSS block --- */ 

    /* --- NEW/UPDATED: SOLUTION MATCHER (ENHANCED V2) --- */
    .page-template-technology .solution-matcher { 
        background-color: var(--color-surface); 
        border-radius: 8px; 
        padding: 2.5rem;
        border: 1px solid var(--color-accent-dark);
        display: block; 
    }

    .page-template-technology .matcher-options-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3-column layout */
        gap: 1.5rem;
    }

    .page-template-technology .matcher-checkbox-input {
        display: none;
    }

    .page-template-technology .matcher-option-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        background-color: var(--color-bg);
        padding: 1.5rem;
        border-radius: 8px;
        border: 2px solid var(--color-surface);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        transform-style: preserve-3d;
    }

    .page-template-technology .matcher-option-card h3 {
        color: var(--color-text);
        font-size: 1.25rem;
        margin-bottom: 0;
        transition: color 0.3s ease;
    }
    .page-template-technology .matcher-option-card p {
        font-size: 0.95rem;
        color: var(--color-text-secondary);
        margin-bottom: 0;
        max-width: 100%; /* Override global p style */
        transition: color 0.3s ease;
    }

    .page-template-technology .option-icon {
        width: 36px;
        height: 36px;
        stroke: var(--color-accent);
        fill: none;
        stroke-width: 2;
        margin-bottom: 0.5rem;
        transition: all 0.3s ease;
    }

    .page-template-technology .matcher-option-card:hover {
        border-color: var(--color-accent);
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(184, 115, 51, 0.1);
    }
    .page-template-technology .matcher-option-card:hover .option-icon {
        transform: scale(1.1);
    } 

    .page-template-technology .matcher-option-card:has(.matcher-checkbox-input:checked) {
        border-color: var(--color-accent);
        background-color: var(--color-accent-dark);
    }
    .page-template-technology .matcher-option-card:has(.matcher-checkbox-input:checked) h3 {
        color: var(--color-accent);
    }
    .page-template-technology .matcher-option-card:has(.matcher-checkbox-input:checked) p {
        color: var(--color-text);
    } 

    .page-template-technology .matcher-option-card:has(.matcher-checkbox-input:checked)::after {
        content: '✔';
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 1rem;
        font-weight: bold;
        color: var(--color-bg);
        background-color: var(--color-accent);
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-template-technology .matcher-result { 
        background-color: var(--color-bg); 
        border-radius: 6px; 
        padding: 2rem; 
        border: 1px solid var(--color-accent-dark);
        margin-top: 2rem;
        
        animation: fadeInResult 0.5s ease-out;
    }
    .page-template-technology .matcher-result h3 { color: var(--color-accent); }

   .page-template-technology .result-content {
    display: none;
	}
   .page-template-technology .result-content.active {
		display: block;
	}


    /* @keyframes are global, they don't get prefixed */
    @keyframes fadeInResult {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* --- END OF MATCHER STYLES --- */ 

    /* --- PORTFOLIO (Same) --- */
    .page-template-technology .portfolio-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
    .page-template-technology .portfolio-item { 
        position: relative; 
        overflow: hidden; 
        border-radius: 8px; 
        background-color: var(--color-surface); 
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transform-style: preserve-3d;
    }
    .page-template-technology .portfolio-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
    .page-template-technology .portfolio-item-overlay { 
        position: absolute; 
        bottom: 0; 
        left: 0; 
        width: 100%; 
        padding: 1.5rem; 
        background: linear-gradient(to top, rgba(10, 15, 26, 0.95), transparent); 
        opacity: 0; 
        transform: translateY(20px) translateZ(20px); 
        transition: all 0.4s ease;
    }
    .page-template-technology .portfolio-item:hover img { transform: scale(1.05); }
    .page-template-technology .portfolio-item:hover .portfolio-item-overlay { opacity: 1; transform: translateY(0) translateZ(20px); }
    .page-template-technology .portfolio-item-overlay a {
        color: var(--color-accent);
        text-decoration: none;
        font-weight: bold;
    }

    /* --- CAREERS (Same) --- */
    .page-template-technology .careers-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
    .page-template-technology .job-card { background-color: var(--color-surface); border: 1px solid var(--color-accent-dark); border-radius: 8px; padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; }
    .page-template-technology .job-card:hover { 
        border-color: var(--color-accent); 
        transform: translateY(-5px); 
        box-shadow: 0 4px 15px rgba(184, 115, 51, 0.1); 
    }
    .page-template-technology .job-card h3 { margin: 0; color: #fff; }
    .page-template-technology .job-card .cta-button { text-decoration: none; font-size: 0.9rem; font-weight: bold; padding: 8px 16px; border-radius: 4px; background-color: var(--color-accent); color: var(--color-bg); }

    /* --- TIMELINE (Same) --- */
    .page-template-technology .timeline { position: relative; max-width: 600px; margin: 2rem auto; padding: 2rem 0; }
    .page-template-technology .timeline::after { content: ''; position: absolute; width: 4px; background-color: var(--color-accent); top: 0; bottom: 0; left: 50%; margin-left: -2px; z-index: 1; }
    .page-template-technology .timeline-item { padding: 1rem 2.5rem; position: relative; width: 50%; }
    .page-template-technology .timeline-item::after { 
        content: ''; 
        position: absolute; 
        width: 20px; 
        height: 20px; 
        right: -10px; 
        background-color: var(--color-accent); 
        border: 4px solid var(--color-bg); 
        top: 25px; 
        border-radius: 50%; 
        z-index: 2; 
        box-shadow: 0 0 10px rgba(184, 115, 51, 0.5); 
    }
    .page-template-technology .timeline-item.left { left: 0; text-align: right; }
    .page-template-technology .timeline-item.right { left: 50%; }
    .page-template-technology .timeline-item.right::after { left: -10px; }
    .page-template-technology .timeline-content { padding: 1rem; background-color: var(--color-surface); border-radius: 8px; }

    /* --- TECH STACK (Same) --- */
    .page-template-technology .tech-stack-container { background-color: var(--color-surface); border-radius: 8px; padding: 2rem; border: 1px solid var(--color-accent-dark); }
    .page-template-technology .tab-buttons { display: flex; border-bottom: 2px solid var(--color-accent-dark); margin-bottom: 1.5rem; }
    .page-template-technology .tab-button { background: none; border: none; color: var(--color-text-secondary); padding: 1rem 1.5rem; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: all 0.3s ease; }
    .page-template-technology .tab-button.active { color: var(--color-accent); border-bottom: 3px solid var(--color-accent); }
    .page-template-technology .tab-content { display: none; }
    .page-template-technology .tab-content.active { display: block; }
    .page-template-technology .tech-logos {
        display: flex;
        flex-wrap: wrap; 
        align-items: center; 
        gap: 2.5rem; 
        margin-top: 1.5rem; 
    }
 .page-template-technology .tech-logos img{ height: 90px; width: auto; transition: transform 0.3s ease; filter: grayscale(20%); animation: subtle-float 6s ease-in-out infinite;
}
    .page-template-technology .tech-logos img:hover {
        transform: scale(1.15);
        filter: grayscale(0%);
    }

    /* --- FINAL CTA (Same) --- */
   /* --- NEW UPGRADED FINAL CTA --- */
.page-template-technology .final-cta {
    /* Use the accent color for an outer 'glow' */
    box-shadow: 0 0 60px -15px rgba(184, 115, 51, 0.3);
    
    /* Create a radial gradient 'spotlight' effect inside */
    background-image: radial-gradient(circle at 50% 0%, 
                                      var(--color-surface) 0%, 
                                      var(--color-bg) 90%);
                                      
    border: 1px solid var(--color-accent-dark);
    border-radius: 12px; /* Slightly more rounded */
    padding: 4rem; /* Give it more space */
    text-align: center;
    overflow: hidden; /* Contain the glow */
    transition: all 0.3s ease;
}

/* Add a hover effect to make it lift and glow brighter */
.page-template-technology .final-cta:hover {
    box-shadow: 0 0 80px -15px rgba(184, 115, 51, 0.5);
    transform: translateY(-5px);
}

.page-template-technology .final-cta h2 {
    font-size: 2.8rem; /* A bit larger */
    color: var(--color-accent); /* Use the bright accent color */
    border: none;
    margin-bottom: 1rem;
}

/* Style the paragraph text inside the CTA */
.page-template-technology .final-cta p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 50ch;
    margin: 0 auto 2.5rem auto; /* Center the paragraph */
}

.page-template-technology .final-cta .cta-button.primary {
    font-size: 1.2rem;
    padding: 15px 40px; /* Make the button a bit wider */
    text-decoration: none;
    transition: all 0.3s ease;
	background-color: var(--color-accent);
    color: var(--color-bg);
    border-radius: 4px;
}

/* Add the button hover effect from your hero section */
.page-template-technology .final-cta .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(184, 115, 51, 0.4);
}

    /* --- Scroll-Reveal Animation (Same) --- */
    .page-template-technology .reveal-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        will-change: opacity, transform;
    }
    .page-template-technology .reveal-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* --- Modal Styles (Same) --- */
    .page-template-technology .modal-overlay {
        position: fixed;
        z-index: 1000;
        left: 0; top: 0;
        width: 100%; height: 100%;
        background-color: rgba(10, 15, 26, 0.85);
        backdrop-filter: blur(5px);
        display: none;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .page-template-technology .modal-overlay.visible {
        display: flex;
        opacity: 1;
    }
    .page-template-technology .modal-content {
        background-color: var(--color-surface);
        padding: 2.5rem;
        border-radius: 8px;
        border: 1px solid var(--color-accent-dark);
        width: 90%;
        max-width: 600px;
        position: relative;
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }
    .page-template-technology .modal-overlay.visible .modal-content {
        transform: scale(1);
    }
    .page-template-technology .modal-close {
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 2.5rem;
        font-weight: 300;
        color: var(--color-text-secondary);
        background: none;
        border: none;
        cursor: pointer;
        line-height: 1;
    }
    .page-template-technology .modal-close:hover {
        color: var(--color-accent);
    }
    .page-template-technology .modal-content img {
        width: 100%;
        height: auto;
        border-radius: 6px;
        margin-bottom: 1.5rem;
    }
    .page-template-technology .modal-content h2 {
        color: var(--color-accent);
        margin-bottom: 0.5rem;
    }
    .page-template-technology .modal-content p {
        margin-bottom: 2rem;
    } 

    /* --- Back to Top Button (Same) --- */
    .page-template-technology .back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--color-accent);
        color: var(--color-bg);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        text-decoration: none;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    .page-template-technology .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .page-template-technology .back-to-top:hover {
        transform: translateY(-3px); 
    } 
.seemore {
    width: 85%;
    text-align: right;
    margin-top: 20px;
}

.seemore a {
    font-size: 16px;
    font-weight: 600;
    color: #ff6b00; /* your theme’s orange */
    text-decoration: none;
    transition: 0.3s;
}

.seemore a:hover {
    color: #000;
}

.page-template-technology .timeline-icon {
    width: 32px;
    height: 32px;
    stroke: var(--color-accent);
    stroke-width: 2;
    margin-bottom: 0.75rem;
    /* This makes sure icons work with both left and right alignment */
    display: inline-block; 
}
.view-more-container {
    text-align: center;
    margin: 40px 0;
}

.view-more-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6600; /* Change to your brand color */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.view-more-button:hover {
    background-color: #e65c00; /* Slightly darker on hover */
}

/*
==================================================
HEALTHCARE TEMPLATE STYLES (SCOPED)
==================================================
*/

/* --- 1. Global Theme Variables (Must be on body/html for wide use) --- */
body.page-template-healthcare {
    /* --- Define Dark Mode Colors for the Healthcare Page --- */
    --color-bg-h: #102a27;         /* Very Dark Teal */
    --color-surface-h: #193e3a;      /* Dark Teal Surface */
    --color-text-h: #e0e0e0;
    --color-text-secondary-h: #a0a0a0;
    --color-accent-h: #009688;     /* Teal Accent */
    --color-accent-dark-h: #102a27;  /* Dark BG for borders */
    
    /* Map to global variables, setting Dark Mode as default */
    --color-bg: var(--color-bg-h);
    --color-surface: var(--color-surface-h);
    --color-text: var(--color-text-h);
    --color-text-secondary: var(--color-text-secondary-h);
    --color-accent: var(--color-accent-h);
    --color-accent-dark: var(--color-accent-dark-h);

    /* Apply base styles */
    background-color: var(--color-bg);
    color: var(--color-text);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* --- 2. Light Mode Override (Activated by Global JS) --- */
/* This block is triggered when the toggle adds 'light-mode' to the <html> tag */
html.light-mode body.page-template-healthcare {
    /* --- Define Light Mode Colors for the Healthcare Page --- */
    --color-bg-h: #f4f7f6;          /* Off-white/light grey */
    --color-surface-h: #ffffff;
    --color-text-h: #1a202c;
    --color-text-secondary-h: #555;
    --color-accent-h: #009688;     /* Teal Accent */
    --color-accent-dark-h: #E0F2F1; /* Very Light Teal */
    
    /* Overwrite global variables with Light Mode colors */
    --color-bg: var(--color-bg-h);
    --color-surface: var(--color-surface-h);
    --color-text: var(--color-text-h);
    --color-text-secondary: var(--color-text-secondary-h);
    --color-accent: var(--color-accent-h);
    --color-accent-dark: var(--color-accent-dark-h);
}
/* --- 2. Global Base Styles for the Template --- */
.page-template-healthcare * { box-sizing: border-box; margin: 0; padding: 0; }
.page-template-healthcare body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}
.page-template-healthcare .container { width: 90%; max-width: 1100px; margin: auto; padding: 3rem 0; }
.page-template-healthcare h1, .page-template-healthcare h2, .page-template-healthcare h3 { color: var(--color-text); margin-bottom: 1rem; line-height: 1.2; }
.page-template-healthcare h1 { font-size: 3rem; }
.page-template-healthcare h2 { font-size: 2.2rem; border-bottom: 2px solid var(--color-accent-dark); padding-bottom: 0.5rem; }
.page-template-healthcare h3 { font-size: 1.5rem; color: var(--color-accent); }
.page-template-healthcare p { font-size: 1.1rem; color: var(--color-text-secondary); max-width: 60ch; }
.page-template-healthcare .section-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 60ch;
    margin: -0.5rem auto 1.5rem auto; 
    text-align: center;
}
.page-template-healthcare section { margin-bottom: 2rem; }


/* --- 3. INTERACTIVE SPLIT HERO STYLES --- */
.page-template-healthcare .hero-split-container {
    display: flex; width: 100%; height: 70vh; min-height: 500px; overflow: hidden; background-color: var(--color-bg);
}
.page-template-healthcare .hero-split-panel {
    position: relative; width: 50%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 2rem; overflow: hidden; transition: width 0.75s cubic-bezier(0.23, 1, 0.32, 1);
}
.page-template-healthcare .hero-split-content { position: relative; z-index: 3; width: 100%; max-width: 500px; }
.page-template-healthcare .hero-split-panel h1 { font-size: 2.8rem; color: var(--color-text); margin-bottom: 1rem; }
.page-template-healthcare .hero-split-panel p { font-size: 1.1rem; color: var(--color-text-secondary); margin-bottom: 2rem; }
.page-template-healthcare .hero-split-panel .cta-button {
    text-decoration: none; font-size: 1rem; font-weight: bold; padding: 12px 24px; border-radius: 4px; transition: all 0.3s ease;
    display: inline-block; transform: scale(0.9); opacity: 0.7;
}
.page-template-healthcare .hero-panel-left { background-color: var(--color-surface); }
.page-template-healthcare .hero-panel-left .cta-button.primary { background-color: var(--color-accent); color: #ffffff; }
.page-template-healthcare .hero-panel-left .cta-button.primary:hover { transform: translateY(-3px) scale(1); box-shadow: 0 4px 20px rgba(0, 150, 136, 0.4); }
.page-template-healthcare .hero-panel-right { background-color: var(--color-accent-dark); }
.page-template-healthcare.dark-mode .hero-panel-right { background-color: var(--color-surface-dark); }
.page-template-healthcare .hero-panel-right h1 { color: var(--color-accent); }
.page-template-healthcare.dark-mode .hero-panel-right h1 { color: var(--color-accent); }
.page-template-healthcare .hero-panel-right .cta-button.secondary { background-color: transparent; border: 2px solid var(--color-accent); color: var(--color-accent); }
.page-template-healthcare .hero-panel-right .cta-button.secondary:hover { background-color: var(--color-accent); color: #ffffff; transform: translateY(-3px) scale(1); }
.page-template-healthcare .hero-split-container:hover .hero-split-panel { width: 40%; }
.page-template-healthcare .hero-split-container:hover .hero-split-panel:hover { width: 60%; }
.page-template-healthcare .hero-split-container:hover .hero-split-panel .cta-button,
.page-template-healthcare .hero-split-container:hover .hero-split-panel p { opacity: 0.7; transform: scale(0.9); }
.page-template-healthcare .hero-split-container:hover .hero-split-panel:hover .cta-button,
.page-template-healthcare .hero-split-container:hover .hero-split-panel:hover p { opacity: 1; transform: scale(1); }
.page-template-healthcare .abstract-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: hidden;
}
.page-template-healthcare .particle {
    position: absolute; background: var(--color-accent); border-radius: 50%; opacity: 0; animation: float 20s infinite linear; bottom: -20px; box-shadow: 0 0 8px var(--color-accent);
}
.page-template-healthcare .hero-panel-right .particle {
    background: var(--color-text-secondary); box-shadow: 0 0 8px var(--color-text-secondary);
}

/* --- 4. Animation Keyframes (Global, but only used here) --- */
@keyframes float {
    0% { transform: translateY(0) translateX(0); opacity: 0.6; }
    100% { transform: translateY(-110vh) translateX(var(--float-x)); opacity: 0; }
}

/* --- 5. "WHY US?" VALUE PROPS --- */
.page-template-healthcare .value-props { background-color: var(--color-surface); border-radius: 8px; padding: 2.5rem; border: 1px solid var(--color-accent-dark); }
.page-template-healthcare .value-props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.page-template-healthcare .value-prop-item { display: flex; flex-direction: column; align-items: center; }
.page-template-healthcare .value-prop-item .option-icon { width: 48px; height: 48px; stroke: var(--color-accent); stroke-width: 2; fill: none; margin-bottom: 1rem; }
.page-template-healthcare .value-prop-item h3 { color: var(--color-text); font-size: 1.25rem; margin-bottom: 0.5rem; }
.page-template-healthcare .value-prop-item p { font-size: 0.95rem; max-width: 100%; }

/* --- 6. "FEATURED JOBS" (Attractive Gallery Design) --- */
.page-template-healthcare .featured-jobs { text-align: center; }
.page-template-healthcare .job-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; text-align: left; }
.page-template-healthcare .job-gallery-card {
    background-color: var(--color-surface); border: 1px solid var(--color-accent-dark); border-radius: 8px; padding: 2rem; 
    transition: all 0.3s ease; transform-style: preserve-3d; display: flex; flex-direction: column;
}
.page-template-healthcare .job-gallery-card:hover { border-color: var(--color-accent); transform: translateY(-5px) translateZ(5px); box-shadow: 0 4px 15px rgba(0, 150, 136, 0.1); }
.page-template-healthcare .job-gallery-card h3 { color: var(--color-text); font-size: 1.35rem; margin-bottom: 0.5rem; }
.page-template-healthcare .job-gallery-card p { font-size: 1rem; color: var(--color-text-secondary); margin-bottom: 1.5rem; flex-grow: 1; }
.page-template-healthcare .job-card-button {
    display: block; text-decoration: none; text-align: center; font-weight: bold; padding: 12px 1rem; border-radius: 4px; 
    background-color: var(--color-accent); color: #ffffff; transition: all 0.3s ease;
}
.page-template-healthcare .job-card-button:hover { color: #ffffff; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0, 150, 136, 0.3); }
.page-template-healthcare .featured-jobs .cta-button-container { margin-top: 2.5rem; }
.page-template-healthcare .featured-jobs .cta-button-container .cta-button {
    text-decoration: none; font-size: 1.1rem; font-weight: bold; padding: 12px 24px; border-radius: 4px; transition: all 0.3s ease;
    background-color: transparent; border: 2px solid var(--color-accent); color: var(--color-accent);
}
.page-template-healthcare .featured-jobs .cta-button-container .cta-button:hover { background-color: var(--color-accent); color: #ffffff; transform: translateY(-3px); }

/* --- 7. "HOW IT WORKS" & "SPECIALTIES" (Tabbed Sections) --- */
.page-template-healthcare .tabbed-section-container { background-color: var(--color-surface); border-radius: 8px; padding: 2rem; border: 1px solid var(--color-accent-dark); }
.page-template-healthcare .tab-buttons { display: flex; border-bottom: 2px solid var(--color-accent-dark); margin-bottom: 1.5rem; }
.page-template-healthcare .tab-button { 
    background: none; border: none; color: var(--color-text-secondary); padding: 1rem 1.5rem; font-size: 1.1rem; 
    font-weight: bold; cursor: pointer; transition: all 0.3s ease; 
}
.page-template-healthcare .tab-button.active { color: var(--color-accent); border-bottom: 3px solid var(--color-accent); }
.page-template-healthcare .tab-content { display: none; }
.page-template-healthcare .tab-content.active { display: block; }
.page-template-healthcare .how-it-works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; margin-top: 2rem; }
.page-template-healthcare .how-it-works-step { display: flex; flex-direction: column; align-items: center; }
.page-template-healthcare .how-it-works-step .step-number {
    font-size: 1.2rem; font-weight: bold; color: var(--color-accent); border: 2px solid var(--color-accent); border-radius: 50%; 
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.page-template-healthcare .how-it-works-step h4 { color: var(--color-text); font-size: 1.1rem; margin-bottom: 0.5rem; }
.page-template-healthcare .how-it-works-step p { font-size: 0.9rem; max-width: 100%; }
.page-template-healthcare .service-list { list-style: none; margin-top: 1.5rem; padding-left: 1.5rem; columns: 2; }
.page-template-healthcare .service-list li { font-size: 1.1rem; color: var(--color-text-secondary); position: relative; margin-bottom: 0.75rem; break-inside: avoid-column; }
.page-template-healthcare .service-list li::before { content: '✓'; color: var(--color-accent); font-weight: bold; position: absolute; left: -1.5rem; }

/* --- 8. "SUCCESS STORIES" (Testimonials) --- */
.page-template-healthcare .success-stories-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.page-template-healthcare .testimonial-card {
    background-color: var(--color-surface); border-radius: 8px; padding: 2.5rem; border: 1px solid var(--color-accent-dark); 
    display: flex; flex-direction: column;
}
.page-template-healthcare .testimonial-card-header { display: flex; align-items: center; margin-bottom: 1.5rem; }
.page-template-healthcare .testimonial-card-header img { width: 60px; height: 60px; border-radius: 50%; margin-right: 1rem; object-fit: cover; }
.page-template-healthcare .testimonial-card-header .author-info { line-height: 1.3; }
.page-template-healthcare .testimonial-card-header .author-info h4 { color: var(--color-text); margin: 0; }
.page-template-healthcare .testimonial-card-header .author-info span { color: var(--color-accent); font-size: 0.9rem; font-weight: bold; }
.page-template-healthcare .testimonial-card-quote { font-size: 1.1rem; font-style: italic; color: var(--color-text-secondary); flex-grow: 1; }

/* --- 9. FINAL CTA --- */
.page-template-healthcare .final-cta { 
    background-color: var(--color-surface); 
    background-image: linear-gradient(45deg, var(--color-accent-dark) 25%, transparent 25%), linear-gradient(-45deg, var(--color-accent-dark) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, var(--color-accent-dark) 75%), linear-gradient(-45deg, transparent 75%, var(--color-accent-dark) 75%); 
    background-size: 20px 20px; 
    border: 1px solid var(--color-accent-dark); 
    border-radius: 8px; 
    padding: 3rem; 
    text-align: center; 
}
.page-template-healthcare.dark-mode .final-cta {
    background-image: linear-gradient(45deg, var(--color-surface-dark) 25%, transparent 25%), linear-gradient(-45deg, var(--color-surface-dark) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, var(--color-surface-dark) 75%), linear-gradient(-45deg, transparent 75%, var(--color-surface-dark) 75%); 
}
.page-template-healthcare .final-cta h2 { font-size: 2.5rem; color: var(--color-text); border: none; }
.page-template-healthcare .final-cta-buttons { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.page-template-healthcare .final-cta-buttons .cta-button { 
    text-decoration: none; font-size: 1.1rem; font-weight: bold; padding: 12px 24px; border-radius: 4px; transition: all 0.3s ease; 
}
.page-template-healthcare .final-cta-buttons .cta-button.primary { background-color: var(--color-accent); color: #ffffff; }
.page-template-healthcare .final-cta-buttons .cta-button.primary:hover { transform: translateY(-3px); box-shadow: 0 4px 20px rgba(0, 150, 136, 0.4); }
.page-template-healthcare .final-cta-buttons .cta-button.secondary { background-color: transparent; border: 2px solid var(--color-accent); color: var(--color-accent); }
.page-template-healthcare .final-cta-buttons .cta-button.secondary:hover { background-color: var(--color-accent); color: #ffffff; transform: translateY(-3px); }

/* --- 10. Scroll-Reveal Animation --- */
.page-template-healthcare .reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; will-change: opacity, transform; }
.page-template-healthcare .reveal-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* --- 11. Back to Top Button --- */
.page-template-healthcare .back-to-top {
    position: fixed; bottom: 20px; right: 20px; background-color: var(--color-accent); color: #ffffff; 
    width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-size: 1.5rem; font-weight: bold; text-decoration: none; z-index: 100; opacity: 0; visibility: hidden; 
    transform: translateY(20px); transition: all 0.3s ease;
}
.page-template-healthcare .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.page-template-healthcare .back-to-top:hover { transform: translateY(-3px); }



@keyframes subtle-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}






/*
==================================================
CONTACT PAGE (page-template-contact) LAYOUT & STYLING
==================================================
*/

/* --- 1. Overall Page Layout & Background --- */
.page-template-contact .contact-page-content {
    padding: 80px 0;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.page-template-contact h1, 
.page-template-contact h2, 
.page-template-contact h3 {
    color: var(--color-text-primary); 
    font-family: var(--font-heading);
}

/* --- Background Effect (Subtle Animation) --- */
.page-template-contact .background-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1; 
    
    /* Subtle geometric pattern using theme colors */
    background-image: radial-gradient(var(--color-accent-dark) 10%, transparent 10%),
                      radial-gradient(var(--color-accent-dark) 10%, transparent 10%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    
    animation: pan-bg 60s infinite linear;
}

/* Keyframes are global */
@keyframes pan-bg {
    to {
        background-position: 400px 400px, 420px 420px;
    }
}

/* --- 2. Two-Column Grid Layout --- */
.page-template-contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info block (1) | Form (1.5) */
    gap: 50px;
    align-items: flex-start;
}

/* --- 3. Contact Information Block Styling --- */
.page-template-contact .contact-info-block {
    padding-top: 20px;
    color: var(--color-text-secondary);
}

.page-template-contact .contact-details h3 {
    font-size: 1.1rem;
    color: var(--color-accent); /* Highlight icons/titles */
    margin-top: 25px;
    margin-bottom: 5px;
    font-weight: 700;
}

.page-template-contact .contact-info-block p {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.4;
    color: var(--color-text-primary);
}

.page-template-contact .contact-link {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s;
}

.page-template-contact .contact-link:hover {
    text-decoration: underline;
}

/* ==================================================
4. GLASS MORPHISM CONTACT FORM STYLING (WPCF7)
==================================================
*/

/* --- 4A. Form Container (Applying Glass Effect) --- */
.page-template-contact .contact-form-wrapper {
    max-width: 600px; /* Max width remains for single column view */
    margin: 0; /* Override auto margin for grid placement */
    padding: 35px;
    border-radius: 16px;
    
    /* Applying the Glassmorphism variables */
    background-color: var(--glass-bg); 
    backdrop-filter: blur(12px); 
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 30px var(--color-shadow); 
}

/* --- 4B. Labels and General Text --- */
.page-template-contact .contact-form-wrapper p {
    margin-bottom: 20px;
    font-size: 1rem; 
    max-width: none; 
}

.page-template-contact .contact-form-wrapper label {
    display: block;
    font-weight: 500;
    color: var(--color-text-primary); 
    margin-bottom: 8px;
    line-height: 1.5;
}

/* --- 4C. Input Fields and Textarea --- */
.page-template-contact .wpcf7-form-control-wrap {
    display: block;
}

.page-template-contact .contact-form-wrapper input:not([type="submit"]),
.page-template-contact .contact-form-wrapper textarea {
    width: 100%; 
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 8px; 
    font-size: 1rem;
    font-family: var(--font-body);

    /* Inputs should be transparent or semi-transparent */
    background-color: rgba(255, 255, 255, 0.05); 
    color: var(--color-text-primary);
    
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.page-template-contact .contact-form-wrapper input:not([type="submit"]):focus,
.page-template-contact .contact-form-wrapper textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 8px rgba(var(--color-accent-rgb, 255, 148, 30), 0.5); 
    background-color: rgba(255, 255, 255, 0.1); 
    outline: none;
}

.page-template-contact .contact-form-wrapper textarea {
    min-height: 120px;
    resize: vertical;
}

/* --- 4D. Submit Button Styling --- */
.page-template-contact .contact-form-wrapper input[type="submit"] {
    display: inline-block;
    width: auto;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    
    background: var(--color-accent); 
    color: var(--color-text-dark); 
    
    transition: all 0.3s ease;
}

.page-template-contact .contact-form-wrapper input[type="submit"]:hover {
    transform: translateY(-3px);
    opacity: 0.95;
    box-shadow: 0 5px 20px var(--color-shadow);
}

/* --- 4E. CF7 Response Output --- */
.page-template-contact .wpcf7-response-output {
    margin-top: 20px;
    padding: 10px 15px;
    border-radius: 4px;
    color: var(--color-text-dark); 
    font-weight: 500;
}




/* ----------------------------------------------------- */
/* --- GLOBAL TEMPLATE WRAPPER: .page-template-staffingsolutions --- */
/* ----------------------------------------------------- */

body.page-template-staffingsolutions {
    /* Base styles use variables defined in :root */
    font-family: 'Roboto', 'Helvetica Neue', sans-serif; 
    background-color: var(--pure-black); 
    color: var(--text-light);
    margin: 0;
    line-height: 1.5; 
    padding: 0;
    overflow-x: hidden; 
}

/* --- NAVIGATION & HERO --- */
body.page-template-staffingsolutions .top-nav {
    position: fixed; width: 100%; background-color: var(--nav-bg); padding: 15px 50px;
    display: flex; justify-content: space-between; align-items: center; z-index: 1000; 
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}
body.page-template-staffingsolutions .logo { font-size: 1.3em; font-weight: 500; color: var(--brand-orange); letter-spacing: 2px; }
body.page-template-staffingsolutions .nav-links a { color: var(--text-muted); margin-left: 25px; font-size: 0.85em; text-decoration: none; transition: color 0.3s; }
body.page-template-staffingsolutions .hero-banner { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background-color: var(--pure-black); position: relative; overflow: hidden; padding: 0 50px; }
body.page-template-staffingsolutions .shapes-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
body.page-template-staffingsolutions .shape { position: absolute; background: none; border-radius: 0; animation: moveShapes 15s infinite ease-in-out alternate; opacity: 1; filter: blur(0); }
@keyframes moveShapes { 0% { transform: translate(0, 0) scale(1) rotate(0deg); } 25% { transform: translate(20vw, 10vh) scale(1.1) rotate(15deg); } 50% { transform: translate(0, 20vh) scale(0.9) rotate(-15deg); } 75% { transform: translate(-20vw, 10vh) scale(1.2) rotate(30deg); } 100% { transform: translate(0, 0) scale(1) rotate(0deg); } }
body.page-template-staffingsolutions .shape:nth-child(1) { width: 100px; height: 100px; left: 10%; top: 20%; border: 2px solid var(--border-orange-subtle); animation-duration: 18s; animation-delay: 0s; }
body.page-template-staffingsolutions .shape:nth-child(2) { width: 150px; height: 80px; right: 15%; bottom: 10%; border: 2px solid var(--border-gray-subtle); animation-duration: 22s; animation-delay: 2s; }
body.page-template-staffingsolutions .shape:nth-child(3) { width: 50px; height: 50px; left: 50%; top: 5%; border: 2px solid var(--border-orange-subtle); animation-duration: 16s; animation-delay: 4s; }
body.page-template-staffingsolutions .shape:nth-child(4) { width: 120px; height: 120px; left: 5%; bottom: 40%; border: 2px solid var(--border-gray-subtle); animation-duration: 20s; animation-delay: 6s; }
body.page-template-staffingsolutions .shape:nth-child(5) { width: 0; height: 0; right: 20%; top: 30%; border-left: 60px solid transparent; border-right: 60px solid transparent; border-bottom: 100px solid var(--border-orange-subtle); opacity: 0.8; animation-duration: 19s; animation-delay: 8s; filter: blur(0); }
body.page-template-staffingsolutions .hero-content { z-index: 1; }
body.page-template-staffingsolutions .dynamic-tagline { font-size: 1.2em; color: var(--text-light); font-weight: 300; letter-spacing: 4px; text-transform: uppercase; overflow: hidden; white-space: nowrap; margin: 0 auto; border-right: 2px solid var(--brand-orange); animation: typing 2s steps(28, end) forwards, blink-caret .75s step-end infinite; }
@keyframes typing { from { width: 0 } to { width: 100% } }
body.page-template-staffingsolutions @keyframes blink-caret { from, to { border-color: transparent } 50% { border-color: var(--brand-orange); } }
body.page-template-staffingsolutions .hero-banner h1 { font-size: 3.5em; color: var(--text-light); margin-top: 30px; margin-bottom: 20px; font-weight: 400; letter-spacing: 0.5px; opacity: 1; }
body.page-template-staffingsolutions .hero-cta { margin-top: 60px; padding: 10px 25px; background-color: var(--brand-orange); color: var(--pure-black); font-weight: 600; font-size: 0.85em; border-radius: 2px; opacity: 1; text-decoration: none; text-transform: uppercase; transition: background-color 0.3s, transform 0.3s; }

/* --- CORE SOLUTIONS SECTION --- */
body.page-template-staffingsolutions .main-content { 
    padding: 60px 0 0 0; 
    background-color: var(--dark-gray); 
    position: relative; z-index: 0; 
    overflow: hidden;
}

body.page-template-staffingsolutions .section-header-wrapper {
    max-width: 1000px; margin: 0 auto; padding: 0 50px; position: relative; z-index: 2; text-align: center;
}
body.page-template-staffingsolutions .section-header h2 { color: var(--brand-orange); font-size: 1.8em; font-weight: 300; letter-spacing: 2px; margin-bottom: 5px; }
body.page-template-staffingsolutions .section-header p { font-size: 0.9em; color: var(--text-muted); }

/* DYNAMIC ICONOGRAPHY FLOW (Slider) */
body.page-template-staffingsolutions .services-grid-wrapper { 
    max-width: 100%; margin: 36px; padding: 20px 0; overflow-x: auto; white-space: nowrap; 
    scrollbar-width: none; scroll-behavior: auto; -webkit-overflow-scrolling: touch; z-index: 1; position: relative;
}
body.page-template-staffingsolutions .services-grid-wrapper::-webkit-scrollbar { display: none; }
body.page-template-staffingsolutions .services-card-track { display: flex; padding: 0 50px; }

/* --- MICRO-PRECISION CARD STYLES --- */
body.page-template-staffingsolutions .service-card {
    width: 260px; height: 250px; margin-right: 15px; background-color: var(--pure-black);
    padding: 20px; border-radius: 4px; border: 1px solid var(--dark-gray); 
    transition: all 0.2s ease-out; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); 
    vertical-align: top; text-align: center; white-space: normal; cursor: pointer; flex-shrink: 0; 
}
body.page-template-staffingsolutions .service-card:last-child { margin-right: 50px; } 
body.page-template-staffingsolutions .service-card:hover { transform: translateY(-3px); box-shadow: 0 0 10px rgba(255, 140, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.7); border: 1px solid var(--border-orange-hover); }
body.page-template-staffingsolutions .service-card.active-card { transform: translateY(0px); border: 2px solid var(--brand-orange); box-shadow: 0 0 0px transparent; background-color: var(--pure-black); }

body.page-template-staffingsolutions .service-icon { font-size: 2.5em; margin-bottom: 5px; color: var(--text-muted); transition: color 0.2s ease-out; display: block; line-height: 1; }
body.page-template-staffingsolutions .service-card:hover .service-icon, body.page-template-staffingsolutions .service-card.active-card .service-icon { color: var(--brand-orange); }
body.page-template-staffingsolutions .service-card h3 { font-size: 1.1em; font-weight: 500; margin-top: 0; margin-bottom: 3px; padding-bottom: 0; }
body.page-template-staffingsolutions .service-card p { font-size: 0.8em; color: var(--text-muted); line-height: 1.3; min-height: 2.5em; }
body.page-template-staffingsolutions .service-card .accent-text { color: var(--brand-orange); font-weight: 500; font-size: 0.9em; display: block; margin-top: 5px; }

/* --- DEDICATED CONTENT AREA (Blurred Moving Bubbles) --- */
body.page-template-staffingsolutions .service-detail-area {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 40px 50px; 
    
    background-color: transparent; 
    
    border: 1px solid var(--dark-gray); 
    border-radius: 8px; 
    box-shadow: none;
    
    min-height: 250px; 
    z-index: 1; 
    position: relative;
    overflow: hidden; 

    flex-direction: column; 
    align-items: flex-start;
	text-align: left !important;
}

/* NEW: Container for the moving bubbles */
body.page-template-staffingsolutions .bubble-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0; 
    filter: blur(2px); 
    opacity: 0.15; 
}

/* **FIXED BASE BUBBLE COLOR** */
body.page-template-staffingsolutions .bubble {
    /* Use light gray for contrast against dark background */
    background-color: rgba(220, 220, 220, 0.4); 
    border-radius: 50%; 
    animation: moveBubbles 30s linear infinite alternate; 
    position: absolute;
}

@keyframes moveBubbles {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -15px) scale(1.1); }
    50% { transform: translate(0, 30px) scale(0.9); }
    75% { transform: translate(-20px, -10px) scale(1.2); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Content Wrapper: Fully transparent background, fixed readability */
body.page-template-staffingsolutions .detail-content { 
    display: none; opacity: 0; transform: translateY(10px); 
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; 
    z-index: 1; position: relative; 
    
    background-color: transparent; 
    padding: 0; 
    text-align: left; 
    width: 100%; 
}
body.page-template-staffingsolutions .detail-content.show { display: block; opacity: 1; transform: translateY(0); }

body.page-template-staffingsolutions .detail-content h3 { 
    color: var(--brand-orange); 
    font-size: 1.5em; margin-bottom: 10px; border-bottom: 1px solid var(--dark-gray); padding-bottom: 8px; 
    text-shadow: 0 0 3px var(--pure-black); 
}

body.page-template-staffingsolutions .detail-content p, body.page-template-staffingsolutions .detail-content ul li { 
    font-size: 0.9em; color: var(--text-light); margin-bottom: 10px; 
 
} 

body.page-template-staffingsolutions .detail-content ul { list-style: none; padding-left: 0; margin-top: 15px; }
body.page-template-staffingsolutions .detail-content ul li {
    font-size: 0.9em; color: var(--text-light); margin-bottom: 8px; padding-left: 1.5em; position: relative;
}
body.page-template-staffingsolutions .detail-content ul li:before {
    content: '•'; color: var(--brand-orange); font-weight: bold; display: inline-block; 
    width: 1em; margin-left: -1.5em;
}

/* --- NEW: Download Button Style (Prominent Secondary CTA) --- */
body.page-template-staffingsolutions .download-button {
    display: block;
	width: fit-content;
    margin-top: 30px; 
    padding: 10px 20px;
    font-size: 0.9em;
    font-weight: 700;
    color: var(--pure-black); 
    background-color: #a46619;
    text-decoration: none;
    border-radius: 4px; 
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    z-index: 2; 
    position: relative;
}

body.page-template-staffingsolutions .download-button:hover {
    background-color: #ffaa33; 
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}


/* ----------------------------------------------------- */
/* --- LIGHT MODE OVERRIDES for StaffingSolutions Template --- */
/* ----------------------------------------------------- */

body.light-mode.page-template-staffingsolutions {
    background-color: var(--light-bg);
    color: var(--dark-text);
}

/* Navigation & Hero */
body.light-mode.page-template-staffingsolutions .top-nav {
    background-color: var(--nav-bg); 
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}
body.light-mode.page-template-staffingsolutions .nav-links a {
    color: var(--dark-text);
}
body.light-mode.page-template-staffingsolutions .hero-banner {
    background-color: var(--pure-black); 
}
body.light-mode.page-template-staffingsolutions .dynamic-tagline { 
    color: var(--dark-text);
}
body.light-mode.page-template-staffingsolutions .hero-banner h1 { 
    color: var(--dark-text);
}
body.light-mode.page-template-staffingsolutions .hero-cta {
    /* CTA button remains orange/black for contrast */
}

/* Core Solutions Section */
body.light-mode.page-template-staffingsolutions .main-content { 
    background-color: var(--dark-gray); 
}
body.light-mode.page-template-staffingsolutions .section-header h2 { 
    color: var(--brand-orange); 
}
body.light-mode.page-template-staffingsolutions .section-header p {
    color: var(--light-muted);
}


/* Micro-Precision Cards */
body.light-mode.page-template-staffingsolutions .service-card {
    background-color: var(--pure-black); 
    border: 1px solid rgba(0, 0, 0, 0.1); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
}
body.light-mode.page-template-staffingsolutions .service-card h3 {
    color: var(--dark-text);
}
body.light-mode.page-template-staffingsolutions .service-card p {
    color: var(--light-muted);
}
body.light-mode.page-template-staffingsolutions .service-icon {
    color: var(--light-muted);
}
body.light-mode.page-template-staffingsolutions .service-card:hover { 
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3), 0 5px 10px rgba(0, 0, 0, 0.15); 
    border: 1px solid var(--brand-orange); 
}
body.light-mode.page-template-staffingsolutions .service-card.active-card { 
    border: 2px solid var(--brand-orange); 
    background-color: var(--light-content); 
}


/* Detail Area (Transparent Box) */
body.light-mode.page-template-staffingsolutions .service-detail-area {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

body.light-mode.page-template-staffingsolutions .detail-content h3 { 
    color: var(--brand-orange); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); 
    text-shadow: none; 
}
body.light-mode.page-template-staffingsolutions .detail-content p, 
body.light-mode.page-template-staffingsolutions .detail-content ul li { 
    color: var(--dark-text); 
    text-shadow: none; 
}
body.light-mode.page-template-staffingsolutions .detail-content ul li:before {
    color: var(--brand-orange);
}

/* Footer (General) */
body.light-mode.page-template-staffingsolutions .cta-footer {
    background-color: var(--nav-bg); 
}
/*
PRIVACY POLICY*/

.light-mode .elementor-177 .elementor-element-d4f88e1 .elementor-heading-title {
    color: #FFFFFF !important;
}

.light-mode .elementor-element-ef0fe69 .elementor-heading-title,
.light-mode .elementor-element-ef0fe69 .elementor-widget-text-editor,
.light-mode .elementor-element-ef0fe69 p,
.light-mode .elementor-element-ef0fe69 li,
.light-mode .elementor-element-ef0fe69 span {
    color: #000000 !important;
}



/* EMPLOYER HANDBOOK DESIGN */

/* 1. Header Title (White Text) */
.light-mode .elementor-996 .elementor-element-853befe .elementor-heading-title {
    color: #FFFFFF !important;
}

/* 2. Main Content Area (Black Text for Headings, Paragraphs, and Lists) */
.light-mode .elementor-element-046ffe8 .elementor-heading-title,
.light-mode .elementor-element-046ffe8 .elementor-widget-text-editor,
.light-mode .elementor-element-046ffe8 p,
.light-mode .elementor-element-046ffe8 li,
.light-mode .elementor-element-046ffe8 span {
    color: #000000 !important;
}



/* ================================
   GLOBAL GALLERY LAYOUT
=================================== */
.blog-posts-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Container */
.blog-section-container {
    max-width: 1332px;  /* Adjust as needed */
    margin: 0 auto;     /* Center horizontally */
    padding: 0 20px;    /* Horizontal padding */
}

/* Title Style */
.blog-section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin: 40px 0 20px;  /* Remove extra side margin since container handles padding */
    color: #ffffff;
}
/* Light mode title */
html.light-mode .blog-section-title {
    color: #111;
}

/* ================================
   CARD DESIGN
=================================== */

.blog-post-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #1c1c1c;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

html.light-mode .blog-post-card {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Hover effect */
.blog-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* Light mode hover */
html.light-mode .blog-post-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ================================
   Featured Image
=================================== */
.blog-featured-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-bottom: 0;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-featured-image {
    transform: scale(1.05);
}

/* ================================
   Card Content Overlay
=================================== */
.blog-card-overlay {
    padding: 20px 22px;
}

.blog-card-overlay h3.entry-title a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    transition: color 0.3s;
}

html.light-mode .blog-card-overlay h3.entry-title a {
    color: #111;
}

.blog-card-overlay h3.entry-title a:hover {
    color: #ff9800;
}

.entry-meta {
    margin: 8px 0 12px;
    font-size: 14px;
    color: #b5b5b5;
}

html.light-mode .entry-meta {
    color: #666;
}

.entry-summary {
    color: #ccc;
    font-size: 15px;
}

html.light-mode .entry-summary {
    color: #333;
}

/* ================================
   Read More Link
=================================== */
.read-more-link {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    color: #ff9800;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.read-more-link:hover {
    opacity: 0.7;
}

html.light-mode .read-more-link {
    color: #d35400;
}

/* ================================
   PAGINATION
=================================== */
.pagination-links {
    text-align: center;
    margin: 40px 0;
}

.pagination-links a,
.pagination-links span {
    background: #222;
    padding: 10px 16px;
    margin: 4px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.pagination-links span.current {
    background: #ff9800;
}

html.light-mode .pagination-links a,
html.light-mode .pagination-links span {
    background: #eee;
    color: #111;
}

html.light-mode .pagination-links span.current {
    background: #e67e22;
    color: #fff;
}




/* ================================
   SINGLE BLOG PAGE STYLES
=================================== */

.single-blog-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Article Box */
.single-blog-article {
    background: #1c1c1c;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.4);
}

html.light-mode .single-blog-article {
    background: #ffffff;
    box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}

/* Title */
.single-blog-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

html.light-mode .single-blog-title {
    color: #111;
}

/* Meta */
.single-blog-meta {
    font-size: 14px;
    color: #b5b5b5;
    margin-bottom: 25px;
}

html.light-mode .single-blog-meta {
    color: #666;
}

/* Featured Image */
.single-blog-image img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Content */
.single-blog-content {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
}

html.light-mode .single-blog-content {
    color: #333;
}

/* Content links */
.single-blog-content a {
    color: #ff9800;
    font-weight: 600;
    text-decoration: none;
}

html.light-mode .single-blog-content a {
    color: #d35400;
}

.single-blog-content a:hover {
    text-decoration: underline;
}

/* Headings inside blog content */
.single-blog-content h2,
.single-blog-content h3,
.single-blog-content h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #fff;
}

html.light-mode .single-blog-content h2,
html.light-mode .single-blog-content h3,
html.light-mode .single-blog-content h4 {
    color: #111;
}



/* SINGLE POST STYLES */
body.postid-542 .single-blog-container {
    max-width: none;
    margin: 0;
    padding: 0;
}

body.postid-542 .single-blog-article{
	padding: 0px;
}

body.postid-542 .single-blog-title{
	display:none;
}



body.postid-542 .site-content{
	padding-top:0px;
}


body.single .theme-toggle,
body.single #theme-toggle {
    display: none !important;
}


/*TECHNICAL TRAINING SINGLE POST PAGE */
    body.single-tech_training .course-single-main {
        background-color: var(--bg-black);
        color: var(--text-light);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        min-height: 100vh;
    }

    body.single-tech_training .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* --- Header / Hero --- */
    body.single-tech_training .course-hero {
        padding: 100px 0 60px;
        background: linear-gradient(180deg, #1a1a1a 0%, var(--bg-black) 100%);
        border-bottom: 1px solid var(--border-color);
    }

    body.single-tech_training .course-breadcrumb {
        color: var(--primary-orange);
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    body.single-tech_training .course-hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin: 0 0 20px 0;
        line-height: 1.1;
    }

    body.single-tech_training .hero-underline {
        width: 80px;
        height: 4px;
        background-color: var(--primary-orange);
        border-radius: 2px;
    }

    /* --- Content Grid --- */
    body.single-tech_training .course-grid {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 50px;
        padding: 60px 0;
        align-items: start;
    }

    /* --- Main Content Section --- */
    body.single-tech_training .course-details-area {
        overflow: hidden;
    }

    body.single-tech_training .course-featured-img {
        width: 100%;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        margin-bottom: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    body.single-tech_training .course-content-body {
        font-size: 1.1rem;
        color: #d1d1d1;
    }

    body.single-tech_training .course-content-body h1, 
    body.single-tech_training .course-content-body h2, 
    body.single-tech_training .course-content-body h3, 
    body.single-tech_training .course-content-body h4 {
        color: var(--primary-orange) !important; 
        margin: 40px 0 20px;
        font-weight: 700;
    }

    /* --- Sticky Sidebar --- */
    body.single-tech_training .course-sidebar {
        position: sticky;
        top: 40px;
    }

    body.single-tech_training .pricing-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-top: 4px solid var(--primary-orange);
        padding: 35px;
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    body.single-tech_training .price-option {
        background: #181818;
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 12px;
        border: 2px solid #333;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    body.single-tech_training .price-option:hover {
        border-color: #555;
        background: rgba(255, 255, 255, 0.06);
    }

    body.single-tech_training .price-value {
        display: block;
        font-size: 1.8rem;
        font-weight: 800;
        color: #ffffff;
    }

    body.single-tech_training .price-option.active {
        border-color: var(--primary-orange);
        background: rgba(255, 107, 0, 0.05);
    }

    body.single-tech_training .price-option.active .price-value,
    body.single-tech_training .price-option.active .price-type {
        color: var(--primary-orange);
    }

    body.single-tech_training .price-type {
        display: block;
        font-size: 0.75rem;
        color: var(--text-muted);
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    body.single-tech_training .price-option.active .price-type {
        color: var(--primary-orange);
        opacity: 0.8;
    }

    body.single-tech_training .price-label {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 5px;
    }

    body.single-tech_training .old-price {
        text-decoration: line-through;
        color: #666;
        font-size: 1.1rem;
        margin-right: 10px;
    }

    body.single-tech_training .current-price {
        display: block;
        color: var(--primary-orange);
        font-size: 1.8rem;
        font-weight: 800;
        line-height: 1;
    }

    body.single-tech_training .current-price.secondary {
        color: var(--text-light);
    }

    body.single-tech_training .sidebar-divider {
        border: 0;
        border-top: 1px solid var(--border-color);
        margin: 25px 0;
    }

    /* --- Sidebar Form --- */
    body.single-tech_training .sidebar-form h3 {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    body.single-tech_training .form-input {
        width: 100%;
        padding: 12px 15px;
        background: var(--bg-black);
        border: 1px solid #444;
        border-radius: 6px;
        color: white;
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

    body.single-tech_training .enroll-btn {
        width: 100%;
        padding: 15px;
        background-color: var(--primary-orange);
        color: white;
        border: none;
        border-radius: 6px;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    body.single-tech_training .enroll-btn:hover {
        background-color: var(--primary-dark-orange);
    }

    /* --- Hide Metadata --- */
    body.single-tech_training .entry-meta, 
    body.single-tech_training .post-date, 
    body.single-tech_training .published, 
    body.single-tech_training .updated, 
    body.single-tech_training .author, 
    body.single-tech_training .cat-links, 
    body.single-tech_training .tags-links {
        display: none !important;
    }

    body.single-tech_training .jp-relatedposts-post-title a {
        color: white;
    }

    /* --- Specific Details Row --- */
    body.single-tech_training .specific-details-row {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    body.single-tech_training .detail-small-box {
        flex: 1;
        min-width: 120px;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 15px;
        border-radius: 8px;
        text-align: center;
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    body.single-tech_training .detail-small-box:hover {
        transform: translateY(-3px);
        border-color: var(--primary-orange);
    }

    body.single-tech_training .detail-h {
        display: block;
        color: var(--text-muted);
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }

    body.single-tech_training .detail-v {
        display: block;
        color: var(--primary-orange);
        font-weight: 700;
        font-size: 1.1rem;
    }

    /* --- Accordion Design --- */
    body.single-tech_training .training-accordion-wrapper { 
        margin-top: 50px; 
        clear: both;
    }

    body.single-tech_training .accordion-pre-heading {
        display: block;
        color: var(--primary-orange);
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 2px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    body.single-tech_training .accordion-main-heading { 
        color: var(--text-light); 
        font-size: 2rem;
        margin-bottom: 30px; 
        font-weight: 800;
    }

    body.single-tech_training .custom-accordion { 
        border-radius: 8px; 
        overflow: hidden; 
        border: 1px solid var(--border-color); 
    }

    body.single-tech_training .accordion-item { 
        border-bottom: 1px solid var(--border-color); 
        background: var(--bg-card); 
    }

    body.single-tech_training .accordion-item:last-child { border-bottom: none; }

    body.single-tech_training .accordion-header {
        width: 100%; 
        padding: 22px 25px; 
        background: none; 
        border: none;
        display: flex; 
        justify-content: space-between; 
        align-items: center;
        color: var(--text-light); 
        font-size: 1.15rem; 
        font-weight: 600;
        cursor: pointer; 
        transition: all 0.3s ease;
        text-align: left;
    }

    body.single-tech_training .accordion-header:hover { 
        background: rgba(255, 107, 0, 0.05); 
        color: var(--primary-orange);
    }

    body.single-tech_training .accordion-header .icon { 
        color: var(--primary-orange); 
        font-size: 1.5rem; 
        transition: transform 0.3s ease; 
    }

    body.single-tech_training .accordion-item.active .accordion-header { 
        color: var(--primary-orange); 
        background: rgba(255, 107, 0, 0.03);
    }

    body.single-tech_training .accordion-item.active .icon { 
        transform: rotate(45deg); 
    }

    body.single-tech_training .accordion-content {
        max-height: 0; 
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0, 1, 0, 1); 
        background: #161616;
    }

    body.single-tech_training .accordion-item.active .accordion-content {
        max-height: 2000px;
        transition: max-height 0.4s ease-in;
    }

    body.single-tech_training .content-inner { 
        padding: 10px 25px 30px; 
        color: #d1d1d1; 
        line-height: 1.7; 
    }

    /* --- Responsive Design --- */
    @media (max-width: 992px) {
        body.single-tech_training .course-grid {
            grid-template-columns: 1fr;
        }
        body.single-tech_training .course-sidebar {
            position: static;
            margin-top: 40px;
        }
        body.single-tech_training .course-hero {
            padding: 60px 0 40px;
        }
    }

    @media (max-width: 600px) {
        body.single-tech_training .specific-details-row {
            flex-direction: column;
        }
    }
 /* ---------------------------------------------------------
       BASE STYLES (DARK DEFAULT)
    --------------------------------------------------------- */
	
	html, 
body.page-template-business-strategy {
    height: auto !important; 
    min-height: 100vh;
    overflow-y: auto !important; /* Ensure vertical scroll is allowed */
    scroll-behavior: smooth !important; /* Force smooth scroll */
}

    .page-template-business-strategy #cygnisoft-custom-wrapper {
        font-family: "Inter", sans-serif;
        box-sizing: border-box;
        line-height: 1.5;
        width: 100%;
        background-color: #020617; /* Default Dark */
        color: #ffffff; 
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    
    .page-template-business-strategy #cygnisoft-custom-wrapper *, 
    .page-template-business-strategy #cygnisoft-custom-wrapper *::before, 
    .page-template-business-strategy #cygnisoft-custom-wrapper *::after {
        box-sizing: border-box;
        border-width: 0;
        border-style: solid;
        border-color: #1e293b; 
    }

    .page-template-business-strategy #cygnisoft-custom-wrapper a {
        color: inherit;
        text-decoration: none;
    }

    /* ---------------------------------------------------------
       LIGHT MODE OVERRIDES (Targeting HTML Class)
       Palette: Cool Grays & Off-Whites
    --------------------------------------------------------- */
    
    /* 1. Main Background - Slate 100 (Not pure white) */
    html.light-mode .page-template-business-strategy #cygnisoft-custom-wrapper {
        background-color: #f1f5f9; 
        color: #0f172a; 
    }

    /* 2. Text Colors */
    html.light-mode #cygnisoft-custom-wrapper .text-white { color: #0f172a !important; } /* Dark Text */
    html.light-mode #cygnisoft-custom-wrapper .text-slate-400 { color: #64748b !important; } /* Slate 500 */
    html.light-mode #cygnisoft-custom-wrapper .text-slate-300 { color: #475569 !important; } /* Slate 600 */

    /* 3. Section Backgrounds - Alternating White & Slate */
    /* Hero Section stays transparent (shows main bg #f1f5f9) */
    
    /* Pillars Section -> Pure White to break up the gray */
    html.light-mode #cygnisoft-custom-wrapper #pillars,
    html.light-mode #cygnisoft-custom-wrapper .bg-slate-800 {
        background-color: #ffffff !important;
    }

    /* Sectors/Contact -> Slate 50 (Slightly lighter than main bg) */
    html.light-mode #cygnisoft-custom-wrapper #sectors, 
    html.light-mode #cygnisoft-custom-wrapper #contact,
    html.light-mode #cygnisoft-custom-wrapper .bg-slate-950 {
        background-color: #f8fafc !important; 
    }

    /* 4. Cards & Containers -> Pure White to POP against the gray */
    html.light-mode #cygnisoft-custom-wrapper .bg-slate-900,
    html.light-mode #cygnisoft-custom-wrapper .sector-content .bg-slate-800 {
        background-color: #ffffff !important;
        border: 1px solid #e2e8f0; 
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }
    
    /* Hover effects for cards in light mode */
    html.light-mode #cygnisoft-custom-wrapper .bg-slate-900:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        border-color: #cbd5e1;
    }

    /* 5. UI Elements (Buttons/Toggles) */
    html.light-mode #cygnisoft-custom-wrapper .sector-button-container {
        background: #e2e8f0; /* Slate 200 */
        border: 1px solid #cbd5e1;
    }
    html.light-mode #cygnisoft-custom-wrapper .sector-btn {
        color: #64748b;
    }
    html.light-mode #cygnisoft-custom-wrapper .sector-btn.active {
        color: white; /* Active text stays white on orange button */
    }

    /* 6. Assets & Blobs */
    html.light-mode #cygnisoft-custom-wrapper .kinetic-icon {
        filter: invert(1) hue-rotate(180deg) contrast(0.85); /* Invert icons */
    }
    html.light-mode .dynamic-bg-blob {
        opacity: 0.5;
        mix-blend-mode: multiply; /* Better blending on light bg */
    }

    /* ---------------------------------------------------------
       ANIMATIONS
    --------------------------------------------------------- */
    .page-template-business-strategy .dynamic-bg-container {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        overflow: hidden; z-index: 0; 
        opacity: 0.15; 
        pointer-events: none;
    }
    .page-template-business-strategy .dynamic-bg-blob {
        position: absolute; border-radius: 50%; filter: blur(80px);
        animation: moveBlob 25s infinite alternate ease-in-out;
    }
    .page-template-business-strategy .blob-1 { width: 400px; height: 400px; background-color: #fcd34d; top: 0; left: 0; }
    .page-template-business-strategy .blob-2 { width: 300px; height: 300px; background-color: #38bdf8; bottom: 0; right: 0; animation-delay: 5s; }
    
    @keyframes moveBlob {
        0% { transform: translate(0, 0) scale(1); }
        100% { transform: translate(0, 0) scale(1); }
    }

    .page-template-business-strategy .kinetic-mesh {
        position: relative; width: 100%; height: 100%; aspect-ratio: 1 / 1;
        margin: 0 auto; display: flex; align-items: center; justify-content: center;
        transform-style: preserve-3d; 
    }
    .page-template-business-strategy .kinetic-icon {
        position: absolute; top: 50%; left: 50%;
        transform: translate(-50%, -50%); transition: color 0.5s;
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
        object-fit: contain; max-width: 100%; height: auto;
    }
    .page-template-business-strategy .kinetic-icon.spin-1 { width: 400px; opacity: 0.5; animation: slowSpin 30s linear infinite; }
    .page-template-business-strategy .kinetic-icon.cpu-image { width: 300px; animation: tumble 40s linear infinite; }
    .page-template-business-strategy .kinetic-icon.briefcase-image { width: 220px; opacity: 1; animation: tumble 30s reverse linear infinite; animation-delay: 5s; }
    .page-template-business-strategy .kinetic-icon.pulse-image { opacity: 1; width: 180px; animation: pulse 4s ease-in-out infinite alternate; }

    @keyframes tumble {
        0% { transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg); }
        50% { transform: translate3d(-40px, 40px, -40px) rotateX(180deg) rotateY(180deg); }
        100% { transform: translate3d(0, 0, 0) rotateX(360deg) rotateY(360deg); }
    }
    @keyframes slowSpin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
    @keyframes pulse { from { transform: translate(-50%, -50%) scale(1); } to { transform: translate(-50%, -50%) scale(1.05); } }

    .page-template-business-strategy .sector-button-container {
        display: flex; 
        background: rgba(30, 41, 59, 0.7); 
        backdrop-filter: blur(10px); border-radius: 9999px;
        padding: 4px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
    .page-template-business-strategy .sector-btn {
        flex: 1; padding: 10px 20px; border-radius: 9999px; font-weight: 600;
        transition: all 0.3s; 
        color: #d1d5db; 
        background: transparent; border: none; cursor: pointer;
    }
    .page-template-business-strategy .sector-btn.active {
        color: white; background-color: #f7941e; box-shadow: 0 2px 8px rgba(247, 148, 30, 0.5); transform: scale(1.02);
    }

  /* CYBERSECURITY */
body.page-template-cybersecurity #theme-toggle-button{
	display:none;
}

.page-template-cybersecurity .cygni-wrapper {
    background-color: #020617;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* --- Reveal Animations --- */
.page-template-cybersecurity .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.page-template-cybersecurity .reveal.active { opacity: 1; transform: translateY(0); }

/* --- Utility: Delays --- */
.page-template-cybersecurity .delay-100 { transition-delay: 100ms; }
.page-template-cybersecurity .delay-200 { transition-delay: 200ms; }
.page-template-cybersecurity .delay-300 { transition-delay: 300ms; }
.page-template-cybersecurity .animation-delay-2000 { animation-delay: 2s; }
.page-template-cybersecurity .animation-delay-4000 { animation-delay: 4s; }
.page-template-cybersecurity .animation-delay-1000 { animation-delay: 1s; }

/* --- Utility: Animation Classes --- */
.page-template-cybersecurity .animate-orbit-cw { animation: orbit-cw 20s linear infinite; }
.page-template-cybersecurity .animate-orbit-ccw { animation: orbit-ccw 20s linear infinite; }
.page-template-cybersecurity .animate-orbit-cw-slow { animation: orbit-cw 30s linear infinite; }
.page-template-cybersecurity .animate-orbit-ccw-slow { animation: orbit-ccw 30s linear infinite; }
.page-template-cybersecurity .animate-float { animation: float 6s ease-in-out infinite; }
.page-template-cybersecurity .animate-pulse-ring { animation: pulse-ring 3s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.page-template-cybersecurity .animate-hive-move { animation: hive-scroll 60s linear infinite; }

/* --- Keyframes (Global by definition, do not scope these) --- */
@keyframes orbit-cw { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbit-ccw { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse-ring { 0% { transform: scale(0.8); opacity: 0.5; } 100% { transform: scale(1.3); opacity: 0; } }
@keyframes hive-scroll {
    0% { background-position: 50% 50%, 0 0; }
    100% { background-position: 50% 50%, 0 -104px; }
}

/* --- Backgrounds --- */
.page-template-cybersecurity .bg-hive {
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='104' viewBox='0 0 60 104' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill-opacity='0.03' fill='%23ffffff' fill-rule='evenodd'/%3E%3Cpath d='M30 104l25.98-15V59L30 44 4.02 59v30z' fill-opacity='0.03' fill='%23ffffff' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 100% 100%, 60px 104px;
}

/* --- Scanning Effects --- */
.page-template-cybersecurity .scan-beam {
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.08), transparent);
    transform: translateY(-100%);
    animation: scan-down 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes scan-down {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.page-template-cybersecurity .card-scanner {
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: rgba(6, 182, 212, 0.8);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
    animation: card-scan 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    opacity: 0;
    z-index: 10;
}

@keyframes card-scan {
    0% { top: 0%; opacity: 0; width: 0; left: 50%; }
    10% { opacity: 1; width: 100%; left: 0; }
    90% { opacity: 1; width: 100%; left: 0; }
    100% { top: 100%; opacity: 0; width: 0; left: 50%; }
}

/* --- Glass Cards --- */
.page-template-cybersecurity .glass-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}
.page-template-cybersecurity .glass-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 10px 40px -10px rgba(6, 182, 212, 0.15);
}
.page-template-cybersecurity .glass-card:hover .service-icon {
    animation: wiggle 0.5s ease-in-out;
    color: #22d3ee;
}

/* --- Buttons --- */
.page-template-cybersecurity .btn-shine { position: relative; overflow: hidden; }
.page-template-cybersecurity .btn-shine::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.page-template-cybersecurity .btn-shine:hover::after { left: 100%; transition: 0.7s; }

/* --- FAQ & Misc --- */
.page-template-cybersecurity .faq-answer {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0; opacity: 0; overflow: hidden;
}
.page-template-cybersecurity .faq-answer.open { max-height: 200px; opacity: 1; }
.page-template-cybersecurity .rotate-180 { transform: rotate(180deg); }



body.page-template-candidatetraining #theme-toggle-button{
	display:none;
}




/* RESUME PARSER DESIGN*/
 html.resume-parser-wrapper { scroll-behavior: smooth; }

/* Custom Template Styles */
.resume-parser-wrapper {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; /* brand-light */
    overflow-x: hidden;
    width: 100%;
}

.resume-parser-wrapper .glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.resume-parser-wrapper .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.resume-parser-wrapper .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.resume-parser-wrapper .text-gradient {
    background: linear-gradient(to right, #f7941e, #ffbd69);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.resume-parser-wrapper .step-line::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
    transform: translateX(50%);
}

.resume-parser-wrapper .step-line:last-child::before { display: none; }

body.postid-844 .single-blog-container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.postid-844 main.site-content {
    padding: 0 !important;
    max-width: 100% !important;
}

body.postid-844 .single-blog-article{
	padding:0px !important;
}
/* ==================================================
   CAREERS PAGE - PREMIUM SLIM DESIGN 
   ================================================== */

.page-template-careers .section {
    padding: 60px 0; /* Tighter vertical spacing */
}

/* 1. Grid System: Fits 4 cards across on large screens */
.page-template-careers .careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    align-items: stretch; 
}

/* 2. Smaller Glassmorphism Card */
.page-template-careers .job-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 25px !important; /* Reduced padding for slim look */
    height: 100% !important;
    background: rgba(30, 30, 30, 0.6) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-template-careers .job-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-gold) !important;
}

/* 3. The Spacer: Pushes buttons to the bottom */
.page-template-careers .job-info {
    flex-grow: 1 !important; 
    margin-bottom: 25px !important;
}

.page-template-careers .job-title {
    font-size: 1.3rem !important; /* Scaled down for smaller cards */
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.page-template-careers .job-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

/* 4. Attractive Premium Buttons */
.page-template-careers .cta-button.flowd-apply-btn {
    margin-top: auto !important;
    padding: 12px !important;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%) !important;
    color: #000 !important;
    border-radius: 50px !important;
    text-align: center !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    border: none !important;
}

/* 5. Compact ShiftSure Stats */
.page-template-careers .stats-flex {
    margin-top: auto !important;
    display: flex !important;
    gap: 10px !important;
}

.page-template-careers .stats-flex span {
    flex: 1;
    text-align: center !important;
    padding: 8px 4px !important;
    border-radius: 8px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-template-careers .badge-orders {
    background: rgba(100, 255, 218, 0.08) !important;
    color: #64ffda !important;
}

.page-template-careers .badge-applicants {
    background: rgba(212, 175, 55, 0.08) !important;
    color: #D4AF37 !important;
}

/* ==================================================
   SHIFTSURE PREMIUM BUTTON DESIGN 
   ================================================== */

.page-template-careers .shiftsure-cta-wrapper {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.page-template-careers .shiftsure-description {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-size: 1rem;
}

.page-template-careers .shiftsure-premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    color: #D4AF37 !important; /* Gold text */
    border: 2px solid #D4AF37;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.page-template-careers .shiftsure-premium-btn:hover {
    background: #D4AF37;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(212, 175, 87, 0.4);
    transform: translateY(-3px);
}

.page-template-careers .shiftsure-premium-btn:active {
    transform: translateY(-1px);
}

@keyframes goldPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.page-template-careers .shiftsure-premium-btn {
    animation: goldPulse 2s infinite;
}

================================================
==================================================
6. ALL RESPONSIVE STYLES
==================================================
==================================================
*/

/*
==================================================
A. TABLET STYLES (992px and down)
==================================================
*/

@media (max-width: 1199px) {
	
	  #site-header .container {
        max-width: 100% !important; 
        width: 100%;
        justify-content: flex-start;
        padding: 0 16px;
    }
    .main-menu {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
	.services-row:first-child,
    .services-row:last-child {
        /* Force both rows to be 2 columns to fit tablet screens */
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .service-card {
        /* Remove fixed width so cards can stretch to fill the grid cell */
        width: 100% !important; 
        max-width: 100%;
    }
	
	.resume-parser-wrapper .step-line::before { display: none; }
}



@media (max-width: 992px) {

    /* --- Homepage Responsive --- */
    .section-heading { font-size: 2.5rem; }
    .hero-content h1 { font-size: 3.5rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 50px; }
    .sticky-services-container { grid-template-columns: 1fr; }
    .sticky-visual { display: none; }
    .scroll-content .service-panel { min-height: auto; opacity: 1; padding-bottom: 80px; margin-bottom: 0; }
    .grid-3-col, .testimonials-grid { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-grid { display: grid; grid-template-columns: 1fr 0.6fr 1.6fr !important; }
    .rotating-text-wrapper, .rotating-text-wrapper span { height: calc(2rem * 1.3); line-height: calc(2rem * 1.3);}
    @keyframes slide-up {
        0%, 11% { transform: translateY(0); }
        33%, 44% { transform: translateY(calc(-2rem * 1.3)); }
        66%, 77% { transform: translateY(calc(-2rem * 1.3 * 2)); }
        100% { transform: translateY(calc(-2rem * 1.3 * 3)); }
    }

    /* --- Technology Page Responsive (was 900px) --- */
    .page-template-technology .hero { flex-direction: column; }
    .page-template-technology .tech-services-grid { grid-template-columns: 1fr; }
    .page-template-technology .solution-item, 
    .page-template-technology .solution-item:nth-child(even) { flex-direction: column; }

    /* --- Healthcare Page Responsive (was 900px) --- */
    .page-template-healthcare .hero { flex-direction: column; }
    .page-template-healthcare .services-grid { grid-template-columns: 1fr; }
    .page-template-healthcare .solution-item, 
    .page-template-healthcare .solution-item:nth-child(even) { flex-direction: column; }
	
	   .page-template-contact .contact-grid {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    .page-template-contact .contact-form-wrapper {
        max-width: 100%;
    }
	
	  #site-header .container {
        max-width: 100% !important; 
        width: 100%;
        justify-content: flex-start;
        padding: 0 16px;
    }
	.header-controls{
	   margin-left: 18px;
	}
	.footer-col p{
		margin-left: auto;
        margin-right: auto; 
        text-align: center;
	}
	.social-links{
		justify-content:center;
	}

.header-cta-button {
	padding-left: 20px;
}
.header-cta-button a{
	padding: 1px 4px;
	font-size: 11px;
}
.testimonials-slider .swiper-wrapper {
        transition-timing-function: ease-out !important; 
    }
    
    /* 2. Make cards fill the screen */
    .testimonials-slider .swiper-slide {
        width: 100% !important; 
        max-width: 100% !important;
        min-width: 0 !important;
        display: flex;           /* Ensures content centers */
        justify-content: center;
    }
	.testimonial-card {
        width: 100%;
        max-width: 100%; /* Ensure card doesn't push out */
    }
    
    /* 3. Show Pagination Dots */
    .testimonials-slider .swiper-pagination {
        display: block !important; 
        position: relative;
        margin-top: 20px;
        text-align: center;      /* Centers the dots */
        bottom: 0 !important;
    }

    /* Style the dots */
    .swiper-pagination-bullet {
        background: var(--color-text-muted);
        opacity: 0.5;
        width: 10px; height: 10px;
        margin: 0 5px !important;
    }
    .swiper-pagination-bullet-active {
        background: var(--brand-gold);
        opacity: 1;
    }
	
}


/*
==================================================
B. MOBILE STYLES (768px and down)
==================================================
*/
@media (max-width: 768px) {

    /* --- Global Header/Nav Responsive --- */
    .menu-toggle {
        display: block;
    }
    #site-header .container {
        flex-direction: row;
        flex-wrap: wrap; 
        align-items: center;
        justify-content: space-between;
        max-width: 100% !important; 
        width: 100% !important;
        padding: 0 12px; 
    }
    .main-navigation {
        width: 100%;
        order: 3; 
    }
    .main-navigation ul {
        flex-direction: column;
        width: auto;
        display: none; /* Hidden by default, toggled with JS */
        background-color: var(--color-bg-surface);
        padding: 10px 0;
        margin-top: 15px; 
    }
    .main-navigation ul.toggled-menu {
        display: flex;
    }
    .main-navigation li {
        margin: 10px 0;
        text-align: center;
    }
    body.admin-bar #site-header {
        top: 46px;
    }

    /* --- Global Services Section Responsive --- */
    .services-grid {
        grid-template-columns: 1fr;
    }
    .logo-track {
        gap: 40px;
        animation-duration: 20s;
    }
    .logo-item img {
        max-height: 40px;
    }

    /* --- Homepage Responsive --- */
    .section { padding: 100px 0; }
    .job-search-section { padding: 40px 0 80px 0; }
    .hero { padding-bottom: 100px; padding-top: 40px; }
    .section-heading { font-size: 2rem; }
    .section-subheading { margin-bottom: 60px; }
    .footer-grid { grid-template-columns: 1fr; }
    .popular-searches { justify-content: flex-start; }

    /* --- Homepage Hero Cards Fix --- */
    .hero-content {
        width: 100%; /* Force the content container to fit the screen */
    }
    .hero-focus-cards {
        flex-direction: column; /* Stack the cards vertically */
        align-items: center;    /* Center the cards */
        width: 100%;            /* Ensure the card container fits */
    }
    .hero-card {
        width: 100%;            /* Make cards use the full width */
        max-width: 320px;     /* Set a nice max-width */
        box-sizing: border-box; /* Include padding in the width */
    }

    /* --- Technology Page Responsive (was 700px) --- */
    .page-template-technology .job-listing { flex-direction: column; align-items: flex-start; gap: 15px; }

    /* --- Healthcare Page Responsive (was 700px) --- */
    .page-template-healthcare .job-listing { flex-direction: column; align-items: flex-start; gap: 15px; }
	
	
	
	.page-template-technology h1 { font-size: 2.3rem; } 
    .page-template-technology .portfolio-gallery { grid-template-columns: 1fr; } 
    .page-template-technology .hero-buttons { display: flex; flex-direction: column; gap: 1rem; }
    .page-template-technology .timeline::after { left: 20px; }
    .page-template-technology .timeline-item, 
    .page-template-technology .timeline-item.left, 
    .page-template-technology .timeline-item.right { width: 100%; padding-left: 50px; left: 0; text-align: left; }
    .page-template-technology .timeline-item::after { left: 10px; }
    .page-template-technology .tab-buttons { flex-direction: column; }
    .page-template-technology .job-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
    
    /* --- Stack the 3 matcher cards on mobile --- */
    .page-template-technology .matcher-options-grid { grid-template-columns: 1fr; }

    /* Admin bar fix for mobile */
    body.admin-bar.page-template-technology header {
        top: 46px;
    }
	
	 .page-template-healthcare h1 { font-size: 2.3rem; } 
    .page-template-healthcare .hero-split-container:not(.dark-mode) .hero-panel-right { background-color: var(--color-accent-light-bg); }
    .page-template-healthcare .value-props-grid { grid-template-columns: 1fr; }
    .page-template-healthcare .job-gallery-grid { grid-template-columns: 1fr; } 
    .page-template-healthcare .how-it-works-grid { grid-template-columns: 1fr; }
    .page-template-healthcare .service-list { columns: 1; }
    .page-template-healthcare .success-stories-grid { grid-template-columns: 1fr; }
    .page-template-healthcare .final-cta-buttons { flex-direction: column; }
    .page-template-healthcare .tab-buttons { flex-direction: column; }
    .page-template-healthcare .hero-split-container { min-height: 0; }
    .page-template-healthcare .hero-split-panel { height: 50vh; min-height: 350px; }
	
	
	
	.main-navigation ul .header-cta-button {
    margin-left: 0 !important; 
    margin-right: 0 !important;
    padding-left: 0;
    
    width: 90%; 
    text-align: center;
    justify-content: center;
    margin: 10px auto 10px auto; 
}

.main-navigation ul .header-cta-button a {
    width: 100%;
    animation: none;
}
	
.page-template-business-strategy .kinetic-mesh { width: 300px; height: 300px; }
.page-template-business-strategy .kinetic-icon.spin-1 { width: 280px; }
.page-template-business-strategy .kinetic-icon.cpu-image { width: 200px; }
.page-template-business-strategy .kinetic-icon.briefcase-image { width: 160px; }
.page-template-business-strategy .kinetic-icon.pulse-image { width: 130px; }


.services-row {
        grid-template-columns: 1fr; /* stack on mobile */
    }
.services-row:first-child,
    .services-row:last-child {
        grid-template-columns: 1fr !important; /* 1 Column */
        gap: 20px; /* Reduce gap slightly for mobile */
    }

    .service-card {
        width: 100% !important; /* Fill screen width */
        margin-bottom: 0; /* Let grid gap handle spacing */
    }

    .services-section {
        padding: 60px 20px; /* Reduce vertical padding */
    }
	
	
	
	.main-footer {
        padding: 60px 0 30px 0; /* Reduce top padding */
        text-align: center;     /* Center align text for mobile */
    }

    /* 2. Grid Layout - Force Single Column */
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 40px; /* Space between the widget columns */
    }

    /* 3. Column/Widget Styling */
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center logos and content */
        width: 100%;
    }

    /* 4. Headings */
    .footer-col h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

    /* 5. Logo Styling */
    .footer-col .footer-logo,
    .main-footer .custom-logo-link img {
        margin: 0 auto 20px auto; /* Center the logo */
        max-width: 140px;         /* slightly smaller for mobile */
        height: auto;
    }

    /* 6. Text Paragraphs */
    .footer-col p {
        margin: 0 auto 20px auto;
        max-width: 100%;
        font-size: 0.95rem;
        padding: 0 15px; /* Prevent text touching screen edges */
    }

    /* 7. Links List (Navigation) */
    .footer-col ul {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .footer-col ul li {
        margin-bottom: 12px;
        text-align: center;
    }

    /* Increase touch target size for links */
    .footer-col ul a {
        display: block; 
        padding: 5px 0;
        font-size: 1rem;
    }

    /* 8. Social Icons - Make them bigger and easy to tap */
    .social-links {
        justify-content: center;
        gap: 25px;
        margin-top: 15px;
    }

    .social-links a {
        font-size: 1.8rem; /* Larger icons for thumbs */
        padding: 10px;     /* Larger hit area */
    }

    /* 9. Footer Bottom (Copyright) */
    .footer-bottom {
        margin-top: 30px;
        padding-top: 25px;
        font-size: 0.85rem;
        padding-left: 20px;
        padding-right: 20px;
        line-height: 1.6;
    }
	
	.footer-col.footer-image-gallery {
        justify-items: center !important; 
        justify-content: center !important;
        text-align: center !important;
    }

    /* 2. Force the images to calculate auto margins (centering them) */
    .footer-col.footer-image-gallery .widget img {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        
        /* Optional: Bump up size slightly on mobile if they look too small */
        width: 70% !important; 
    }
    
    /* 3. Ensure the widget container doesn't block centering */
    .footer-col.footer-image-gallery .widget {
        display: flex;
        justify-content: center;
        width: 100%;
    }
	
	
	
	
}




@media (max-width: 578px) {
   #site-header .container {
        padding: 0 8px;
    }
	.story-text{
		width: 381px;
	}
	.page-template-about .story-image img{
		width:400px;
	}
		
}


