:root {
    --primary-color: #0056b3; /* Trust Blue */
    --secondary-color: #00a8cc; /* Medical Teal */
    --accent-color: #fca311; /* Action Orange */
    --dark-text: #1a1a1a;
    --light-text: #666666;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --orange-btn: #f08300;
    --cookie-bg: #1a1f24;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* --- Layout Utility --- */
.container {
    max-width: 95%; /* Changed from 1200px to 95% to fill the screen */
    margin: 0 auto;
    padding: 0 40px; /* Added slightly more padding so text doesn't touch the edges */
}

/* Keep it readable on very large screens (optional cap) */
@media (min-width: 1920px) {
    .container {
        max-width: 1800px; 
    }
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 20px; /* Keep standard padding on mobile */
    }
}

.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: #f0f0f0;
}

.btn-block { width: 100%; }

/* --- Top Bar --- */
.top-bar {
    background-color: #091D3E; /* Dark Navy */
    color: #e0e0e0;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .contact-info span { margin-right: 20px; }
.top-bar .contact-info i { color: var(--secondary-color); margin-right: 5px; }

.top-bar .top-links a {
    color: #e0e0e0;
    margin-left: 20px;
    font-size: 0.85rem;
}

.top-bar .login-link {
    color: var(--secondary-color) !important;
    font-weight: 600;
}

/* --- Header --- */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================================
   UPDATED LOGO WITH BLUE GLOW
   ========================================= */

.logo {
    margin-left: -10px; 
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0; 
    text-decoration: none;
    padding-left: 0; 
}

.logo img {
    height: 75px; 
    width: auto;
    display: block;
    margin-right: -35px; 
    
    /* --- GLOW EFFECT ADDED HERE --- */
    /* The values are: X-offset, Y-offset, Blur Radius, Color */
    filter: drop-shadow(0 0 15px rgba(0, 86, 179, 0.7)); 
    
    /* Smooth animation if you hover */
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* Optional: Make the glow stronger when you hover over the logo */
.logo a:hover img {
    filter: drop-shadow(0 0 25px rgba(0, 86, 179, 1));
    transform: scale(1.02); /* Slight zoom for effect */
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #0056b3; 
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    
    /* Optional: Add a subtle text shadow to match */
    text-shadow: 0 0 20px rgba(0, 86, 179, 0.1);
}

.logo-text .highlight {
    color: #00a8cc; 
    font-weight: 800;
}

.nav-list { display: flex; gap: 30px; }
.nav-list a { font-weight: 500; color: var(--dark-text); transition: var(--transition); }
.nav-list a:hover, .nav-list a.active { color: var(--primary-color); }
.mobile-menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- Hero Section --- */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    gap: 30px; /* Reduced gap to bring image closer to text */
    width: 100%;
}

/* CONTENT SIDE: Takes up less space now (approx 40%) */
.hero-content { 
    flex: 0.8; 
    max-width: 45%; 
}

.hero-content .badge {
    background-color: rgba(51, 185, 203, 0.1);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.hero-content .highlight { color: var(--primary-color); }

.hero-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons { display: flex; gap: 15px; margin-bottom: 30px; }

.trust-badges { font-size: 0.9rem; color: var(--light-text); font-weight: 500; }
.trust-badges span { margin-right: 20px; }
.trust-badges i { color: var(--secondary-color); margin-right: 5px; }

/* IMAGE SIDE: Takes up more space now (approx 60%) */
.hero-image {
    flex: 1.3; 
    display: flex;
    justify-content: flex-end; 
    min-width: 600px; /* Forces image to be large on desktop */
}

/* Ensure the wrapper fills the space */
.hero-image .image-container {
    width: 100%;
    position: relative;
}

/* Force the image to stretch and fill the container */
.hero-image img {
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.2), 
        0 0 100px rgba(51, 185, 203, 0.6), /* Brighter Teal Color */
        0 0 40px rgba(0, 86, 179, 0.5);    /* Deep Blue Base */
    
    transition: box-shadow 0.5s ease;
}

/* Make it super bright on hover */
.hero-image img:hover {
    transform: translateY(-5px); /* Slight lift */
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.3), 
        0 0 120px rgba(51, 185, 203, 0.8), 
        0 0 60px rgba(0, 86, 179, 0.6); 
}


.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e1e8ed;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-placeholder i { font-size: 5rem; color: #cbd5e0; }

.floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.floating-card strong { color: var(--primary-color); font-size: 1.5rem; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- Responsive Adjustments --- */

@media (max-width: 1200px) {
    .hero-image {
        min-width: auto; /* Stop forcing width on smaller laptops */
    }
}

@media (max-width: 991px) {
    .hero-container { flex-direction: column; text-align: center; }
    
    .hero-content { 
        flex: 1; 
        max-width: 100%; 
    }
    
    .hero-content p { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    
    .hero-image {
        width: 100%;
        margin-top: 30px;
        justify-content: center;
    }
    
    .hero-content h1 { font-size: 2.8rem; }
    
    .floating-card {
        left: 0; 
        right: 0; 
        margin: auto; 
        width: max-content;
        bottom: -20px;
    }
}

/* --- Features Section --- */
.features-section { padding: 80px 0; }

.section-header { margin-bottom: 50px; }
.section-header h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--primary-color); margin-bottom: 10px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 { margin-bottom: 15px; font-family: var(--font-heading); }
.feature-card p { color: var(--light-text); font-size: 0.95rem; margin-bottom: 20px; }
.learn-more { color: var(--primary-color); font-weight: 600; font-size: 0.9rem; }

/* --- Stats Section --- */
.stats-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item h3 { font-size: 3rem; font-weight: 700; display: inline-block; }
.stat-item span { font-size: 3rem; font-weight: 700; color: var(--secondary-color); }
.stat-item p { font-size: 1.1rem; opacity: 0.9; margin-top: 5px; }

/* --- CTA Section --- */
.cta-section {
    padding: 80px 0;
    background: url('../images/cta-bg.jpg') no-repeat center center/cover;
    background-color: #0d2b5b; /* Fallback */
    text-align: center;
    color: var(--white);
}

.cta-content h2 { font-size: 2.5rem; margin-bottom: 15px; }
.cta-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

/* --- Footer --- */
.site-footer {
    background-color: #0b162a;
    color: #b0b0b0;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 { color: var(--white); margin-bottom: 20px; font-family: var(--font-heading); }
.footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { transition: var(--transition); font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--secondary-color); padding-left: 5px; }

.contact-list i { margin-right: 10px; color: var(--secondary-color); width: 20px; text-align: center; }

.social-links { margin-top: 20px; }
.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover { background-color: var(--primary-color); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* --- Responsive General --- */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 2.8rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-list, .header-actions .btn { display: none; }
    .mobile-menu-toggle { display: block; }
    
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    
    .stats-grid { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    
    /* Active Mobile Menu Styles (handled by JS) */
    .nav-list.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .logo { margin-left: -5px; }
    .logo img { height: 50px; margin-right: -5px; }
    .logo-text { font-size: 1.8rem; }
}

/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */

/* --- Page Header (Internal Pages) --- */
.page-header {
    background: linear-gradient(rgba(9, 29, 62, 0.8), rgba(9, 29, 62, 0.8)), url('../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    background-color: var(--primary-color); /* Fallback */
}

.page-header h1 {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb li a {
    color: var(--secondary-color);
    font-weight: 600;
}

.breadcrumb li::after {
    content: '/';
    margin-left: 10px;
    color: #ccc;
}

.breadcrumb li:last-child::after { content: ''; }

/* --- About Story Section --- */
.about-story-section { padding: 80px 0; }

.story-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,86,179,0.3);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text { font-size: 0.9rem; }

.story-content { flex: 1; }

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.story-content h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

.story-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.s-feature { display: flex; gap: 15px; align-items: flex-start; }
.s-feature i {
    font-size: 2rem;
    color: var(--secondary-color);
}
.s-feature h4 { font-size: 1.1rem; margin-bottom: 5px; }
.s-feature p { font-size: 0.9rem; color: var(--light-text); }

/* --- Mission Section --- */
.mission-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}

.mission-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--secondary-color);
}

.mission-card .icon-bg {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card h3 {
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.values-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.values-list li i {
    color: var(--secondary-color);
    font-size: 0.8rem;
    background: rgba(51, 185, 203, 0.1);
    padding: 5px;
    border-radius: 50%;
}

/* --- Team Section --- */
.team-section { padding: 80px 0; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.social-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(9, 29, 62, 0.8);
    padding: 10px;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(100%);
}

.team-card:hover .social-overlay {
    opacity: 1;
    transform: translateY(0);
}

.social-overlay a {
    color: var(--white);
    margin: 0 10px;
    font-size: 1.2rem;
}

.team-info { padding: 25px; text-align: center; }

.team-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-info span {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.5;
}

/* --- Responsive Adjustments for About Page --- */
@media (max-width: 991px) {
    .story-grid {
        flex-direction: column;
    }
    .experience-badge { right: 20px; }
}

/* =========================================
   SERVICES PAGE STYLES
   ========================================= */

.services-intro {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%); /* Soft fade */
    position: relative;
    border-bottom: 1px solid #eee;
}

/* Decorative Top Gradient Line */
.services-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0056b3, #33B9CB); /* Brand Colors */
}

.intro-wrapper {
    max-width: 800px; /* Prevents text from being too wide */
    margin: 0 auto;
    text-align: center;
}

/* The "Pill" Badge */
.intro-badge {
    display: inline-block;
    background-color: rgba(51, 185, 203, 0.1); /* Light Teal */
    color: #0056b3; /* Dark Blue Text */
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(51, 185, 203, 0.2);
}

.intro-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #0b162a; /* Deep Navy */
    line-height: 1.2;
    margin-bottom: 25px;
}

.intro-wrapper p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin: 0 auto;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .services-intro { padding: 60px 0; }
    .intro-wrapper h2 { font-size: 2rem; }
    .intro-wrapper p { font-size: 1rem; }
}

/* --- Service Categories --- */
.service-category { padding: 80px 0; }
.service-category.bg-light { background-color: #f8fbfe; }

.category-header { margin-bottom: 50px; }

.category-header h3 {
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid var(--secondary-color);
}

.category-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    padding-left: 25px;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.s-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.s-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.1);
    border-color: var(--primary-color);
}

/* Decorative top line on hover */
.s-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.s-card:hover::before { width: 100%; }

.s-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 168, 204, 0.1);
    color: var(--primary-color);
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.s-card:hover .s-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.s-card h4 {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--dark-text);
}

.s-card p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* --- Admin Services Banner --- */
.admin-services {
    padding: 60px 0;
    background-color: var(--primary-color);
}

.admin-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    flex-wrap: wrap;
    gap: 30px;
}

.admin-text { flex: 1; }

.admin-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
}

/* --- Process Section --- */
.process-section { padding: 100px 0; background-color: var(--white); }

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

/* Connector Line */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step:hover .step-num {
    background-color: var(--secondary-color);
    color: var(--white);
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step p {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* --- Responsive Adjustments for Services --- */
@media (max-width: 991px) {
    .step:not(:last-child)::after { display: none; }
    .process-steps { flex-direction: column; gap: 50px; }
}

@media (max-width: 768px) {
    .admin-box { flex-direction: column; text-align: center; }
    .admin-text h3 { justify-content: center; }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

.contact-section { padding: 80px 0; background-color: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

/* --- Left Column: Info --- */
.contact-info-wrapper .sub-heading {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.contact-info-wrapper h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin: 10px 0 20px;
    color: var(--dark-text);
}

.contact-info-wrapper > p {
    color: var(--light-text);
    margin-bottom: 40px;
}

.info-cards { display: flex; flex-direction: column; gap: 20px; }

.c-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8fbfe;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.c-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #eee;
    transform: translateX(5px);
}

.c-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.c-card:hover .c-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.c-text h4 { margin-bottom: 5px; color: var(--dark-text); }
.c-text p, .c-text a { font-size: 0.95rem; color: var(--light-text); line-height: 1.5; }
.c-text a:hover { color: var(--secondary-color); }

/* --- Right Column: Form --- */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-top: 5px solid var(--secondary-color);
}

.contact-form h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 10px; }
.contact-form > p { margin-bottom: 30px; font-size: 0.95rem; color: var(--light-text); }

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-text);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #fcfcfc;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
}

/* --- Map Section --- */
.map-section {
    line-height: 0; /* Remove gap below iframe */
}

.map-section iframe {
    filter: grayscale(10%);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--light-text);
    padding-left: 28px; /* Align with text not icon */
}

/* --- Responsive Adjustments for Contact --- */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row { flex-direction: column; gap: 0; }
}

@media (max-width: 768px) {
    .contact-form-wrapper { padding: 25px; }
    .faq-grid { grid-template-columns: 1fr; }
}

/* =========================================
   CHATBOT WIDGET STYLES
   ========================================= */

.chat-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: var(--font-body);
}

/* --- Toggle Button --- */
.chat-toggle-btn {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color); /* Trust Blue */
    color: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 86, 179, 0.4);
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

.chat-toggle-btn .close-icon { display: none; }
.chat-widget-container.active .chat-toggle-btn .open-icon { display: none; }
.chat-widget-container.active .chat-toggle-btn .close-icon { display: block; }

/* --- Chat Window --- */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.chat-widget-container.active .chat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* --- Header --- */
.chat-header {
    background: linear-gradient(135deg, var(--primary-color), #004494);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.chat-agent-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.agent-avatar {
    position: relative;
}

.agent-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--white);
    object-fit: cover;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #2ecc71; /* Online Green */
    border-radius: 50%;
    position: absolute;
    bottom: 2px;
    right: 0;
    border: 2px solid var(--primary-color);
}

.agent-text { display: flex; flex-direction: column; }
.agent-name { font-weight: 700; font-size: 1rem; }
.agent-role { font-size: 0.8rem; opacity: 0.9; }

.close-chat {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
}

.close-chat:hover { opacity: 1; }

/* --- Body --- */
.chat-body {
    padding: 20px;
    background-color: #f4f6f8;
    height: 350px;
    overflow-y: auto;
}

.chat-message {
    background-color: var(--white);
    padding: 15px;
    border-radius: 0 15px 15px 15px;
    font-size: 0.95rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    line-height: 1.5;
}

.chat-message p { margin-bottom: 8px; }
.chat-message p:last-child { margin-bottom: 0; }

/* --- Options / Buttons --- */
.chat-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.chat-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.2);
}

/* --- Input Area --- */
.chat-input-area {
    padding: 15px;
    background-color: var(--white);
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    border: none;
    background: #f0f2f5;
    padding: 10px 15px;
    border-radius: 20px;
    outline: none;
    font-family: var(--font-body);
}

.chat-input-area button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
}

/* =========================================
   CHATBOT OPTION BUTTONS
   ========================================= */
.chat-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    animation: fadeIn 0.3s ease;
}

.chat-option-btn {
    background-color: #f0f7fa;
    color: #0056b3; /* Primary Blue */
    border: 1px solid #0056b3;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.chat-option-btn:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.chat-message.bot-message {
    /* Ensure lists/formatting inside bot messages look good */
    line-height: 1.5;
}

@media (max-width: 480px) {
    .chat-window {
        width: 300px;
        right: -15px; /* Adjust alignment on small screens */
    }
}
/* =========================================
   DROPDOWN MENU STYLES (Resources Sub-Tabs)
   ========================================= */

/* Container positioning */
.nav-list li {
    position: relative;
}

.nav-list .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 5px;
    vertical-align: middle;
}

/* The Dropdown Box (Hidden by default) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px; /* Wider to fit "Billing & Coding Guides" */
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 3px solid var(--secondary-color);
    border-radius: 0 0 5px 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block; /* Required for transition */
    padding: 10px 0;
    z-index: 1100;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Links */
.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.95rem;
    color: var(--dark-text);
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: #f8fbfe;
    color: var(--primary-color);
    padding-left: 25px; /* Slight slide effect */
}

/* --- Mobile Dropdown Adjustments --- */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static; /* Stack vertically on mobile */
        width: 100%;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--secondary-color);
        background-color: #f9f9f9;
        display: none; /* Hidden until clicked */
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-list .fa-chevron-down {
        float: right;
        margin-top: 5px;
        transition: transform 0.3s;
    }

    .dropdown.active .fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* =========================================
   RESOURCES PAGES STYLES
   (Articles, Guides, Case Studies, Press, Testimonials)
   ========================================= */

/* Resource Grid Layout */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Generic Resource Card (Articles) */
.res-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.res-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.res-img {
    height: 200px;
    background-color: #f4f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    font-size: 3rem;
    border-bottom: 1px solid #eee;
}

.res-body { padding: 25px; }

.res-date {
    font-size: 0.8rem;
    color: var(--light-text);
    display: block;
    margin-bottom: 10px;
}

.res-body h3 {
    font-size: 1.25rem;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.res-body p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.res-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Download Card (Guides Page) */
.download-card .res-body { text-align: center; padding: 40px 20px; }
.download-card .icon-wrap {
    font-size: 3rem;
    color: #e74c3c; /* PDF Red Color */
    margin-bottom: 20px;
}

/* Case Study Card (Case Studies Page) */
.case-study-card {
    display: flex;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.case-content { padding: 40px; flex: 1.5; }
.case-img { 
    flex: 1; 
    background-color: #f8fbfe; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.case-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.case-stats .stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.case-stats .stat span { font-size: 0.85rem; color: var(--light-text); }

/* Press List (Press Page) */
.press-list { display: flex; flex-direction: column; gap: 30px; }

.press-item {
    display: flex;
    gap: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    align-items: center;
}

.press-date {
    text-align: center;
    background: var(--light-bg);
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 80px;
}

.press-date .day { display: block; font-size: 1.8rem; font-weight: 700; color: var(--primary-color); }
.press-date .month { display: block; font-size: 0.9rem; text-transform: uppercase; color: var(--light-text); }

.press-content .tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    background: var(--primary-color);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: inline-block;
}

.press-content .tag.event { background: var(--accent-color); }

/* Testimonial Card (Testimonials Page) */
.testimonial-card { padding: 30px; border-top: 4px solid var(--secondary-color); }
.quote-icon { font-size: 1.5rem; color: #ddd; margin-bottom: 15px; }
.quote-text { font-style: italic; margin-bottom: 20px; color: var(--dark-text); }
.client-info { display: flex; align-items: center; gap: 15px; }
.client-info img { border-radius: 50%; }
.client-info h4 { font-size: 1rem; margin-bottom: 0; }
.client-info span { font-size: 0.8rem; color: var(--light-text); }

/* Responsive Resources */
@media (max-width: 768px) {
    .case-study-card { flex-direction: column; }
    .case-img { height: 200px; }
    .press-item { flex-direction: column; align-items: flex-start; gap: 15px; }
    .press-date { display: flex; gap: 10px; padding: 5px 15px; align-items: baseline; }
}

/* =========================================
   SPECIALTIES SECTION STYLES
   ========================================= */

.specialties-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #eef4f8 0%, #ddebf5 100%); /* Soft Blue Gradient like image */
}

.specialties-section .section-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--light-text);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive 3-column layout */
    gap: 20px;
    margin-top: 50px;
}

.spec-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
    border-color: rgba(51, 185, 203, 0.3); /* Subtle teal border on hover */
}

.spec-icon {
    width: 50px;
    height: 50px;
    background-color: #f0f7fa; /* Very light teal bg for icon */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.spec-icon i {
    font-size: 1.5rem;
    color: var(--primary-color); /* Trust Blue Icon */
}

/* Hover Effect for Icon */
.spec-card:hover .spec-icon {
    background-color: var(--primary-color);
}

.spec-card:hover .spec-icon i {
    color: var(--white);
}

.spec-card span {
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--dark-text);
    font-size: 1.05rem;
}

/* --- Responsive for Specialties --- */
@media (max-width: 768px) {
    .specialties-grid {
        grid-template-columns: 1fr; /* 1 Column on mobile */
    }
    .spec-card {
        padding: 15px 20px;
    }
}

/* =========================================
   CAREERS PAGE STYLES
   ========================================= */

/* --- Culture Section --- */
.culture-section { padding: 80px 0; }

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.culture-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: var(--transition);
}

.culture-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.culture-card .c-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: #f0f7fa;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.culture-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.culture-card p {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* --- Jobs Section --- */
.jobs-section { padding: 80px 0; }
.jobs-section.bg-light { background-color: #f8fbfe; }

.jobs-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.job-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid var(--secondary-color);
    transition: var(--transition);
}

.job-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.job-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.job-tags { margin-bottom: 15px; }

.job-tags .tag {
    display: inline-block;
    background: #eef4f8;
    color: var(--light-text);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 10px;
    font-weight: 500;
}

.job-tags .tag i { color: var(--secondary-color); margin-right: 5px; }

.job-info p {
    color: var(--light-text);
    font-size: 0.95rem;
    max-width: 600px;
}

/* --- Apply Form --- */
.apply-section { padding: 80px 0; }

.apply-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-color);
}

.file-input {
    padding: 10px;
    background: #f8f9fa;
    border: 1px dashed #ccc;
    width: 100%;
    border-radius: 5px;
}

/* --- Responsive Careers --- */
@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .job-action { width: 100%; }
    .job-action .btn { width: 100%; text-align: center; }
}

/* =========================================
   CALCULATOR SECTION STYLES
   ========================================= */

.calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #091D3E 0%, #0056b3 100%); /* Dark Blue bg */
    color: var(--white);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calc-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.calc-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.calc-points { list-style: none; }
.calc-points li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.calc-points li i {
    color: var(--secondary-color); /* Teal checkmarks */
}

/* Calculator Box */
.calc-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    color: var(--dark-text);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.calc-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.calc-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.calc-result {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px dashed #eee;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.calc-result p { margin-bottom: 5px; font-size: 0.9rem; color: #666; }
.calc-result h3 { font-size: 2rem; color: var(--primary-color); margin-bottom: 15px; }
.calc-result h3.highlight { color: #2ecc71; /* Money Green */ }

.calc-link {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
    .calc-grid { grid-template-columns: 1fr; }
}

/* =========================================
   PARTNERS SLIDER STYLES (UPDATED)
   ========================================= */

.partners-section {
    padding: 60px 0;
    background-color: #ffffff; /* Clean white background */
    overflow: hidden;
    border-top: 1px solid #eee;
}

.slider-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0; /* Space for hover effects */
}

/* Add fading gradient on sides to make it look professional */
.slider-track-container::before,
.slider-track-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.slider-track-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.slider-track-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll 30s linear infinite;
}

/* PAUSE ANIMATION ON HOVER */
.slider-track-container:hover .slider-track {
    animation-play-state: paused;
}

.slide {
    min-width: 200px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.slide h3 {
    font-size: 2rem;
    color: #091D3E; /* Navy Blue - High Contrast */
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.3; /* Subtle by default */
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: -1px;
}

/* INDIVIDUAL HOVER EFFECT */
.slide:hover h3 {
    opacity: 1; /* Fully visible */
    color: #33B9CB; /* Change to Teal */
    transform: scale(1.15); /* Grow bigger */
    text-shadow: 0 10px 20px rgba(51, 185, 203, 0.2); /* Glow effect */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .slide { min-width: 150px; }
    .slide h3 { font-size: 1.5rem; }
}
/* =========================================
   FIX FOR MODAL & COOKIE BANNER
   ========================================= */

/* --- Modal Overlay (The Dark Background) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dimmed background */
    z-index: 10000; /* sits on top of everything */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* IMPORTANT: This hides it by default */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

/* When JS adds this class, the modal appears */
.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* --- Modal Box (The White Box) --- */
.modal-container {
    background-color: #ffffff;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: transform 0.4s ease;
    overflow: hidden;
}

.modal-overlay.show .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    z-index: 5;
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
}

/* --- Modal Left Side (Text) --- */
.modal-text {
    flex: 1;
    padding: 40px;
    min-width: 300px;
}

.modal-subtitle {
    color: #00a8cc; /* Medical Teal */
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.modal-text h2 {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.modal-text p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.btn-orange {
    background-color: #f08300;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.btn-orange:hover { background-color: #d17200; }

/* --- Modal Right Side (Image Area) --- */
.modal-image {
    flex: 1;
    background: linear-gradient(135deg, #0056b3 0%, #00a8cc 100%);
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
    text-align: center;
    flex-direction: column;
}

.modal-image-content h3 { font-size: 2rem; margin-bottom: 10px; font-weight: 800; }
.modal-image-content h3 span { color: #8BE3F0; }
.modal-badge { background-color: #f08300; padding: 5px 15px; border-radius: 4px; font-size: 0.8rem; display: inline-block; font-weight: 600; margin-bottom: 15px; }
.modal-image-content h4 { font-size: 1.5rem; font-weight: 600; }

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1f24; /* Dark background */
    color: #ccc;
    padding: 20px 0;
    z-index: 9998;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
    
    /* IMPORTANT: This hides it by default */
    display: none; 
}

.cookie-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text p { margin: 0; font-size: 0.9rem; }

.btn-cookie {
    background-color: #5c4d3c;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.btn-cookie:hover { background-color: #f08300; }

/* Mobile Fixes for Modal */
@media (max-width: 768px) {
    .modal-body { flex-direction: column; }
    .cookie-flex { flex-direction: column; text-align: center; }
}
/* =========================================
   SKELETON LOADING ANIMATION
   ========================================= */

/* The wrapper holds the grey background */
.skeleton-wrapper {
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

/* The shimmer animation */
.skeleton-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
    transform: translateX(-100%);
    z-index: 1;
}

/* Animation Keyframes */
@keyframes shimmer {
    100% { transform: translateX(100%); }
}

/* Hide the image initially */
.skeleton-wrapper img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Class to reveal image once loaded */
.skeleton-wrapper.loaded img {
    opacity: 1;
}

/* Remove shimmer when loaded */
.skeleton-wrapper.loaded::after {
    display: none;
    animation: none;
}

/* =========================================
   MOBILE STICKY BAR
   ========================================= */
.mobile-sticky-bar {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    z-index: 9990; /* Below Chat Widget (9999) but above content */
    padding: 12px 15px;
    gap: 15px;
    justify-content: space-between;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.sticky-btn:active { transform: scale(0.95); }

.call-btn { 
    background: #e3f2fd; 
    color: #0056b3; 
    border: 1px solid #0056b3;
}

.audit-btn { 
    background: #0056b3; 
    color: white; 
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .mobile-sticky-bar { display: flex; }
    
    /* Add padding to body so content isn't hidden behind bar */
    body { padding-bottom: 80px; } 
    
    /* Push Chat Widget & WhatsApp Button UP so they don't overlap */
    .chat-widget-container, a[href*="wa.me"] { 
        bottom: 90px !important; 
    }
}

/* =========================================
   RPA AUTOMATION SECTION
   ========================================= */
.rpa-section {
    padding: 100px 0;
    background: #0b162a; /* Deep Navy Background */
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Background visual flair (optional) */
.rpa-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,168,204,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.rpa-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.rpa-content { flex: 1; }

.badge-tech {
    background: rgba(0, 168, 204, 0.2);
    color: #33B9CB; /* Cyan */
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    border: 1px solid rgba(0, 168, 204, 0.3);
}

.rpa-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.highlight-text {
    color: #33B9CB; /* Cyan to pop against dark bg */
}

.rpa-content p {
    font-size: 1.1rem;
    color: #b0b8c6;
    margin-bottom: 40px;
}

.rpa-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rpa-item {
    display: flex;
    gap: 20px;
}

.rpa-item .icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #33B9CB;
    flex-shrink: 0;
}

.rpa-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.rpa-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- THE ROBOT TERMINAL UI --- */
.rpa-visual { flex: 1; }

.bot-card {
    background: #152238;
    border-radius: 12px;
    border: 1px solid #2a3b55;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}

.bot-header {
    background: #1c2b45;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2a3b55;
}

.bot-header i { font-size: 0.7rem; margin-right: 5px; }
.bot-status { color: #2ecc71; font-size: 0.8rem; font-weight: bold; }

.bot-body {
    padding: 25px;
    color: #a0aec0;
    font-size: 0.85rem; /* Slightly smaller text to fit more lines */
    position: relative;
    min-height: 420px; /* INCREASED HEIGHT (Was 250px) */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align text to top */
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
}

/* Add this new blink animation for the cursor */
.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0; }
}

.log-line { margin-bottom: 10px; }
.log-line span { color: #5c6b7f; margin-right: 10px; }
.log-line .success { color: #2ecc71; }
.log-line strong { color: #fff; }

/* Cool scanning animation line */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #33B9CB;
    box-shadow: 0 0 10px #33B9CB;
    animation: scan 3s infinite linear;
    opacity: 0.5;
}

@keyframes scan {
    0% { top: 0%; }
    100% { top: 100%; }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .rpa-grid { flex-direction: column; }
    .rpa-content h2 { font-size: 2rem; }
}

/* =========================================
   ABOUT PAGE ENHANCEMENTS
   ========================================= */

/* --- Stats/Advantage Grid --- */
.advantage-section {
    padding: 80px 0;
    background-color: #f8fbfe;
}
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.adv-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}
.adv-card:hover { transform: translateY(-5px); }
.adv-card h3 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 10px; }
.adv-card p { font-size: 1rem; color: #666; font-weight: 500; }

/* --- Global Model Section --- */
/* --- Global Model Section --- */
.global-section {
    padding: 100px 0;
    background: #0b162a; /* Deep Navy */
    color: #fff;
    overflow: hidden; /* Prevents scrollbars if map is wide */
}

.global-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Side: Text Content */
.global-text {
    flex: 1;
    max-width: 500px; /* Stops text from stretching too wide */
}

.global-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.global-text p {
    font-size: 1.1rem;
    color: #b0b8c6; /* Soft grey-blue text */
    margin-bottom: 40px;
    line-height: 1.6;
}

/* The Time Zone Boxes (USA / India) */
.time-zone-box {
    display: flex;
    gap: 20px;
}

.tz-item {
    background: rgba(255, 255, 255, 0.05); /* Very subtle transparent bg */
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 160px;
    transition: transform 0.3s ease;
}

.tz-item:hover {
    transform: translateY(-5px);
    border-color: #33B9CB;
}

.tz-item strong {
    display: block;
    font-size: 1.2rem;
    color: #33B9CB; /* Teal Heading */
    margin-bottom: 5px;
}

.tz-item strong i {
    margin-right: 8px;
}

.tz-item span {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    display: block;
}

/* Right Side: Map Image Container */
.global-img {
    flex: 1.5; /* Gives image more space than text (60/40 split) */
    display: flex;
    justify-content: flex-end;
    position: relative;
}

/* Force Image to Fit perfectly */
.global-img img {
    width: 90%;
    height: auto;
    max-width: 800px; /* Prevents it from becoming absurdly large on 4k screens */
    border-radius: 20px;
    /* Optional: Add a subtle glow/shadow to the map */
    box-shadow: 0 20px 50px rgba(5, 161, 252, 0.729);
    object-fit: contain;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .global-flex {
        flex-direction: column; /* Stack vertically on tablet/mobile */
        text-align: center;
    }

    .global-text {
        max-width: 100%;
    }

    .time-zone-box {
        justify-content: center; /* Center boxes on mobile */
    }

    .global-img {
        width: 100%;
        margin-top: 40px;
    }
}

/* =========================================
   PREMIUM TIMELINE DESIGN
   ========================================= */
.timeline-section {
    padding: 100px 0;
    background-color: #f8fbfe;
    position: relative;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}

/* The Vertical Center Line */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 6px;
    background: #e0e6ed;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
    z-index: 0; /* Keeps line in the background */
}

/* The Items */
.timeline-item {
    padding: 20px 60px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    z-index: 1; /* Lifts the whole item ABOVE the line */
}

/* ICON CIRCLE DESIGN (Replaces the empty dot) */
.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff; /* Solid background is important to hide the line behind it */
    border: 4px solid #0056b3;
    border-radius: 50%;
    z-index: 10; /* Forces icon to be on the very top */
    top: 25px;
    right: -25px; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    font-size: 1.2rem;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 1), 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Positioning for Right Side */
.right { left: 50%; }
.right .timeline-icon {
    left: -25px; /* Center on line for Right items */
}

/* Hover Effect on Icon */
.timeline-item:hover .timeline-icon {
    background: #0056b3;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(0, 86, 179, 0.2);
}

/* The "Pulsing" Effect for the Last Item (Today) */
.timeline-item.pulse .timeline-icon {
    background: #33B9CB; /* Teal */
    border-color: #33B9CB;
    color: white;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(51, 185, 203, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(51, 185, 203, 0); }
    100% { box-shadow: 0 0 0 0 rgba(51, 185, 203, 0); }
}

/* Content Card */
.t-content {
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-left: 5px solid #0056b3; /* Blue Accent Left */
    transition: transform 0.3s ease;
    position: relative;
}

.timeline-item:hover .t-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

/* Connector Arrows */
.t-content::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 35px;
    width: 0;
    z-index: 1;
    border: medium solid white;
}

.left .t-content::before {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #0056b3; /* Matches border color */
}

.right .t-content::before {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #0056b3 transparent transparent;
}

/* Override Arrow Color to match card background white, just keeping the tip colored looks odd, 
   let's fix arrow to be white to blend with card */
.left .t-content::after {
    content: ''; position: absolute; top: 35px; right: -9px;
    border-width: 10px 0 10px 10px; border-style: solid;
    border-color: transparent transparent transparent #fff;
}
.right .t-content::after {
    content: ''; position: absolute; top: 35px; left: -9px;
    border-width: 10px 10px 10px 0; border-style: solid;
    border-color: transparent #fff transparent transparent;
}

/* Text Styling */
.t-content span {
    color: #33B9CB; 
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.t-content h4 {
    margin: 5px 0 10px;
    color: #0b162a;
    font-size: 1.5rem;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .timeline-container::after { left: 30px; }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
    }
    
    .timeline-icon {
        left: 5px !important; /* Move icon to left */
        right: auto;
    }
    
    .left::after, .right::after { left: 20px; }
    .left, .right { left: 0; }
    
    /* Fix Arrows for Mobile */
    .t-content::before, .t-content::after {
        left: -10px !important;
        right: auto !important;
        border-width: 10px 10px 10px 0 !important;
        border-color: transparent #0056b3 transparent transparent !important;
    }
    .t-content::after {
        border-color: transparent #fff transparent transparent !important;
    }
}

/* =========================================
   SERVICES PAGE ENHANCEMENTS
   ========================================= */

/* Process Flow Section */


.process-flow-section { padding: 80px 0; background: #fff; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
    position: relative;
}

.process-step {
    position: relative;
    z-index: 2;
}

.p-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0056b3, #33B9CB);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
    border: 4px solid #fff;
}

.process-step h4 { font-size: 1.1rem; color: #0b162a; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: #666; }

/* Connecting Line (Desktop Only) */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e0e6ed;
    z-index: 1;
}

@media (max-width: 768px) {
    .process-grid::before { display: none; }
    .process-grid { gap: 50px; }
}

/* Service Detail Bullets */
.service-list {
    list-style: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
    text-align: left;
}

.service-list li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.service-list li i {
    color: #33B9CB;
    margin-top: 4px;
    font-size: 0.8rem;
}

/* Tech/RPA Strip */
.tech-strip {
    background: #0b162a;
    padding: 60px 0;
    color: white;
    text-align: center;
}
.tech-strip h2 { font-size: 2rem; margin-bottom: 15px; }
.tech-strip span { color: #33B9CB; }
.tech-strip p { color: #b0b8c6; max-width: 700px; margin: 0 auto; }

/* =========================================
   CAREERS PAGE ENHANCEMENTS
   ========================================= */

/* --- Culture Section --- */
.culture-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.culture-card {
    background: #f8fbfe;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid #eef4f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #33B9CB;
}

.culture-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #0056b3;
    font-size: 1.8rem;
}

.culture-card h4 { font-size: 1.2rem; margin-bottom: 10px; color: #0b162a; }
.culture-card p { font-size: 0.95rem; color: #666; }

/* --- Enhanced Job Cards --- */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 5px solid #33B9CB;
    transition: transform 0.2s;
}

.job-card:hover { transform: translateX(5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }

.job-info h3 { font-size: 1.3rem; margin-bottom: 8px; color: #0b162a; }
.job-tags { display: flex; gap: 10px; margin-bottom: 10px; }
.tag {
    background: #eef4f8;
    color: #555;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}
.tag i { margin-right: 5px; color: #33B9CB; }

/* Apply Box improvements */
.apply-box {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
    border-top: 5px solid #0056b3;
}

@media (max-width: 768px) {
    .job-card { flex-direction: column; align-items: flex-start; gap: 20px; }
    .job-action { width: 100%; }
    .job-action .btn { width: 100%; text-align: center; }
    .apply-box { padding: 30px 20px; }
}

/* =========================================
   CONTACT PAGE ENHANCEMENTS
   ========================================= */

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8fbfe;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #0b162a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 i {
    color: var(--primary-color);
    font-size: 1rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
}

/* =========================================
   ARTICLES / BLOG PAGE STYLES
   ========================================= */

/* Featured Article */
.featured-section { padding: 60px 0 30px; }
.featured-card {
    display: flex;
    background: #0b162a;
    border-radius: 15px;
    overflow: hidden;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.featured-img { flex: 1; min-height: 300px; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-content { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.featured-badge { 
    background: #33B9CB; color: white; padding: 5px 12px; 
    border-radius: 4px; font-size: 0.8rem; font-weight: 600; 
    display: inline-block; margin-bottom: 15px; width: fit-content;
}
.featured-content h2 { font-size: 2rem; margin-bottom: 15px; line-height: 1.3; }
.featured-content p { color: #b0b8c6; margin-bottom: 25px; }

/* Blog Layout (Grid + Sidebar) */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Articles take 2/3, Sidebar takes 1/3 */
    gap: 40px;
    margin-top: 40px;
}

/* Article Card */
.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    margin-bottom: 30px;
}
.article-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.article-thumb { height: 220px; overflow: hidden; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.article-card:hover .article-thumb img { transform: scale(1.05); }

.article-body { padding: 25px; }
.meta-info { font-size: 0.85rem; color: #888; margin-bottom: 10px; display: flex; gap: 15px; }
.meta-info i { color: #33B9CB; margin-right: 5px; }
.article-body h3 { font-size: 1.4rem; margin-bottom: 12px; color: #0b162a; line-height: 1.4; }
.article-body p { font-size: 0.95rem; color: #666; margin-bottom: 20px; }
.read-more { color: #0056b3; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* Sidebar Widgets */
.sidebar-widget {
    background: #f8fbfe;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eef4f8;
    margin-bottom: 30px;
}
.widget-title { font-size: 1.2rem; margin-bottom: 20px; border-left: 4px solid #33B9CB; padding-left: 15px; color: #0b162a; }

/* Search Box */
.search-form { display: flex; }
.search-form input { flex: 1; padding: 10px; border: 1px solid #ddd; border-radius: 4px 0 0 4px; outline: none; }
.search-form button { background: #0056b3; color: white; border: none; padding: 0 15px; border-radius: 0 4px 4px 0; cursor: pointer; }

/* Categories List */
.cat-list li { margin-bottom: 12px; border-bottom: 1px dashed #ddd; padding-bottom: 12px; }
.cat-list li a { display: flex; justify-content: space-between; color: #555; font-size: 0.95rem; }
.cat-list li a:hover { color: #0056b3; }
.cat-count { background: #eef4f8; padding: 2px 8px; border-radius: 10px; font-size: 0.8rem; }

/* Responsive */
@media (max-width: 991px) {
    .blog-layout { grid-template-columns: 1fr; }
    .featured-card { flex-direction: column; }
    .featured-img { min-height: 200px; }
}

/* =========================================
   GUIDES PAGE STYLES
   ========================================= */

/* Guide Card Design */
.guide-card {
    background: #fff;
    border: 1px solid #eef4f8;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #33B9CB;
}

/* Icon (PDF/Excel) */
.guide-icon-box {
    width: 60px;
    height: 60px;
    background: #fff0f0; /* Light Red for PDF */
    color: #dc3545;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.guide-icon-box.excel {
    background: #f0fff4; /* Light Green for Excel */
    color: #28a745;
}

.guide-meta {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

.guide-card h3 {
    font-size: 1.3rem;
    color: #0b162a;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1; /* Pushes button to bottom */
}

.guide-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
}

/* Download Button */
.download-btn {
    background: #f8fbfe;
    color: #0056b3;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #eef4f8;
    transition: all 0.2s;
}

.download-btn:hover {
    background: #0056b3;
    color: #fff;
    border-color: #0056b3;
}

/* Grid Layout Adjustment for Guides */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* =========================================
   CASE STUDIES PAGE STYLES
   ========================================= */

/* Aggregate Stats Section */
.impact-stats {
    background: #0b162a;
    padding: 50px 0;
    color: white;
    text-align: center;
}
.impact-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.impact-item h3 { font-size: 2.5rem; color: #33B9CB; margin-bottom: 5px; }
.impact-item p { font-size: 0.9rem; color: #b0b8c6; text-transform: uppercase; letter-spacing: 1px; }

/* Filter Bar */
.filter-bar {
    text-align: center;
    margin: 40px 0;
}
.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 30px;
    margin: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
    background: #0056b3;
    color: white;
    border-color: #0056b3;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}

/* Enhanced Case Study Card */
.case-card-enhanced {
    display: flex;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border: 1px solid #eef4f8;
    transition: transform 0.3s ease;
}
.case-card-enhanced:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

.case-image-col {
    flex: 1;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}
.case-image-col img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.case-card-enhanced:hover .case-image-col img { transform: scale(1.05); }

/* Overlay Tag on Image */
.case-category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 86, 179, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-info-col {
    flex: 1.5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-info-col h3 { font-size: 1.6rem; color: #0b162a; margin-bottom: 15px; }
.case-info-col p { color: #666; margin-bottom: 25px; line-height: 1.6; }

/* Metrics Grid inside Card */
.case-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8fbfe;
    border-radius: 8px;
    border-left: 4px solid #33B9CB;
}
.metric h4 { color: #0056b3; font-size: 1.4rem; margin-bottom: 0; }
.metric span { font-size: 0.8rem; color: #555; }

@media (max-width: 991px) {
    .case-card-enhanced { flex-direction: column; }
    .case-image-col { height: 200px; min-height: 200px; }
}

/* =========================================
   PRESS & EVENTS PAGE STYLES
   ========================================= */

/* Press Card Design */
.press-card-enhanced {
    display: flex;
    background: #fff;
    border: 1px solid #eef4f8;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    align-items: center;
    gap: 25px;
}

.press-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #33B9CB;
}

/* Date Badge */
.date-badge {
    background: #f8fbfe;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    min-width: 90px;
    flex-shrink: 0;
}

.date-badge .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0056b3;
    line-height: 1;
}

.date-badge .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #666;
    margin-top: 5px;
    font-weight: 600;
}

/* Content */
.press-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0b162a;
    line-height: 1.4;
}

.press-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

/* Tags */
.press-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.press-tag.news { background: #e3f2fd; color: #0056b3; }
.press-tag.event { background: #fff3cd; color: #856404; }
.press-tag.award { background: #d4edda; color: #155724; }

/* Sidebar Media Contact */
.media-contact-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eef4f8;
    text-align: center;
    margin-bottom: 30px;
}
.media-contact-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}
.media-contact-box h4 { margin-bottom: 5px; font-size: 1.1rem; }
.media-contact-box span { display: block; color: #888; font-size: 0.9rem; margin-bottom: 15px; }
.contact-link { display: block; color: #0056b3; font-weight: 600; margin-bottom: 5px; text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
    .press-card-enhanced { flex-direction: column; align-items: flex-start; }
    .date-badge { display: flex; gap: 10px; width: 100%; justify-content: center; align-items: baseline; padding: 10px; }
}

/* =========================================
   TESTIMONIALS PAGE STYLES
   ========================================= */

/* Trust Stats Bar */
.trust-stats-section {
    background: #f8fbfe;
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid #eef4f8;
}
.trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.trust-item i { font-size: 2rem; color: #33B9CB; margin-bottom: 10px; }
.trust-item h3 { font-size: 2rem; margin-bottom: 0; color: #0b162a; }
.trust-item p { font-size: 0.9rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }

/* Featured Testimonial (Spotlight) */
.spotlight-section { padding: 80px 0; }
.spotlight-card {
    display: flex;
    background: #0b162a;
    color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.spotlight-img { flex: 1; min-height: 400px; position: relative; }
.spotlight-img img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 70px; height: 70px; background: rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(5px); transition: all 0.3s; cursor: pointer;
}
.play-btn i { font-size: 1.5rem; color: white; margin-left: 5px; }
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: #33B9CB; }

.spotlight-content {
    flex: 1; padding: 60px;
    display: flex; flex-direction: column; justify-content: center;
    background-image: url('assets/images/quote-bg.png'); /* Optional decorative bg */
    background-size: cover;
}
.spotlight-quote { font-size: 1.4rem; font-style: italic; line-height: 1.6; margin-bottom: 30px; opacity: 0.9; }
.spotlight-author h4 { font-size: 1.2rem; color: #33B9CB; margin-bottom: 5px; }
.spotlight-author span { font-size: 0.9rem; opacity: 0.7; }

/* Enhanced Grid Cards */
.testimonial-card-enhanced {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #eef4f8;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-card-enhanced:hover { transform: translateY(-5px); border-color: #33B9CB; box-shadow: 0 15px 40px rgba(0,0,0,0.08); }

.star-rating { color: #fca311; margin-bottom: 15px; font-size: 0.9rem; }
.t-text { font-size: 1rem; color: #555; line-height: 1.6; flex-grow: 1; margin-bottom: 25px; font-style: italic; }

.t-author { display: flex; align-items: center; gap: 15px; border-top: 1px solid #eee; padding-top: 20px; }
.t-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.t-info h5 { font-size: 1rem; margin-bottom: 2px; color: #0b162a; }
.t-info span { font-size: 0.8rem; color: #888; }

/* Result Tag (e.g. "Revenue +20%") */
.result-tag {
    display: inline-block;
    background: #e3f2fd; color: #0056b3;
    padding: 5px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 700;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .spotlight-card { flex-direction: column; }
    .spotlight-img { min-height: 250px; }
    .spotlight-content { padding: 40px; }
}
/* =========================================
   LEGAL LINKS (Footer Bottom)
   ========================================= */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 0.85rem;
    /* Enable Flexbox */
    display: flex; 
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #33B9CB; /* Teal hover */
    text-decoration: underline;
}

/* Mobile: Stack them */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   LEGAL PAGES (Terms & Privacy)
   ========================================= */

/* Legal Header */
.legal-header {
    background: #0b162a; /* Deep Navy */
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.last-updated {
    display: inline-block;
    background: rgba(51, 185, 203, 0.15);
    color: #33B9CB;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Legal Layout Grid */
.legal-container {
    display: grid;
    grid-template-columns: 250px 1fr; /* Sidebar | Content */
    gap: 50px;
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Sticky Sidebar */
.legal-sidebar {
    position: sticky;
    top: 120px; /* Sticks below header */
    height: fit-content;
}

.legal-sidebar h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #0b162a;
    border-bottom: 2px solid #eef4f8;
    padding-bottom: 10px;
}

.legal-nav {
    list-style: none;
}

.legal-nav li {
    margin-bottom: 12px;
}

.legal-nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-nav a:hover {
    color: #33B9CB;
    transform: translateX(5px);
}

.legal-nav a i {
    font-size: 0.8rem;
    color: #ccc;
}

/* Main Content Typography */
.legal-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #0b162a;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef4f8;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p { margin-bottom: 20px; }

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-content li { margin-bottom: 10px; }

.highlight-box {
    background: #f8fbfe;
    border-left: 4px solid #33B9CB;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .legal-container { grid-template-columns: 1fr; }
    .legal-sidebar { display: none; /* Hide TOC on mobile to save space */ }
}

/* =========================================
   TOAST NOTIFICATIONS
   ========================================= */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #fff;
    color: #333;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.3s ease-out;
    border-left: 5px solid #33B9CB; /* Default Teal */
}

.toast.show {
    transform: translateX(0);
}

.toast.success { border-left-color: #2ecc71; }
.toast.error { border-left-color: #e74c3c; }

.toast i { font-size: 1.2rem; }
.toast.success i { color: #2ecc71; }
.toast.error i { color: #e74c3c; }

.toast-message { font-size: 0.95rem; font-weight: 500; }

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */
#backToTop {
    position: fixed;
    bottom: 90px; /* Above the mobile sticky bar */
    right: 20px;
    width: 45px;
    height: 45px;
    background: #0056b3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

#backToTop:hover {
    background: #33B9CB;
    transform: translateY(-3px);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    #backToTop { bottom: 100px; right: 15px; width: 40px; height: 40px; }
}