:root {
    --primary-color: #0068A4;
    --secondary-color: #00B1F6;
    --light-blue: #D0EEFF;
    --white: #FFFFFF;
    --dark-text: #1a1a1a;
    --light-text: #6b7280;
    --border-color: #e5e7eb;
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-light: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--light-text);
}

/* Blog Styles */
.blog-categories {
    margin-bottom: 2rem;
}

.blog-categories .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-categories .btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-card.featured {
    border: 2px solid var(--primary-color);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-card.featured .blog-image {
    height: 300px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Blog Hero Image */
.blog-hero-image {
    text-align: center;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    margin-top: 2rem;
}

.blog-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-hero-image img:hover {
    transform: scale(1.02);
}

/* Mobile responsive for blog hero */
@media (max-width: 768px) {
    .blog-hero-image img {
        height: 250px;
    }
    
    .blog-title {
        font-size: 2rem;
    }
}

.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--light-text);
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card.featured .blog-title {
    font-size: 1.5rem;
}

.blog-excerpt {
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: var(--light-blue);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.newsletter-section {
    background: var(--gradient-light);
}

.newsletter-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.newsletter-card h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.newsletter-card p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border-radius: 25px 0 0 25px;
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.5rem;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 0.75rem 1.5rem;
}

/* Blog Post Styles */
.blog-header {
    background: var(--gradient-light);
    padding: 80px 0 60px;
    margin-bottom: 3rem;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.blog-subtitle {
    font-size: 1.125rem;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.blog-content {
    line-height: 1.8;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 2.5rem 0 1rem 0;
    padding-top: 1rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 2rem 0 1rem 0;
}

.blog-content p {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content li {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.blog-content strong {
    font-weight: 600;
    color: var(--primary-color);
}

.blog-cta {
    border-left: 4px solid var(--primary-color);
}

.blog-cta h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.blog-cta p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.related-articles {
    background: var(--gradient-light);
}

.related-articles h3 {
    color: var(--dark-text);
    font-weight: 700;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background-color: var(--light-blue);
}

/* Remove blue background from dropdown toggles */
.nav-link.dropdown-toggle:focus,
.nav-link.dropdown-toggle:active {
    background-color: transparent !important;
    color: var(--dark-text) !important;
}

.nav-link.dropdown-toggle.show {
    background-color: var(--light-blue) !important;
    color: var(--primary-color) !important;
}

/* Page Headers */
.page-header {
    background: var(--gradient-light);
    padding: 120px 0 80px;
    text-align: center;
}

.page-badge {
    display: inline-block;
    background: rgba(0, 104, 164, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-light);
    padding-top: 100px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--secondary-color) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 177, 246, 0.1);
    border: 1px solid rgba(0, 177, 246, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.badge-text {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--light-text);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.floating-card-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.card-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.hero-main-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.hero-robot-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    filter: none;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.hero-robot-image:hover {
    transform: scale(1.02);
    animation-play-state: paused;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Tech Stack Slider */
.tech-stack-section {
    background-color: var(--light-blue);
    padding: 2rem 0;
    overflow: hidden;
}

.tech-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 1rem 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.tech-track {
    display: flex;
    width: max-content;
    gap: 1.5rem;
    padding: 0 1rem;
}

/* Directional Animations */
.tech-track-left {
    animation: scrollLeft 60s linear infinite;
}

.tech-track-right {
    animation: scrollRight 60s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Enhanced Tech Items */
.tech-item {
    flex: 0 0 140px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 104, 164, 0.1);
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-item:hover::before {
    transform: scaleX(1);
}

.tech-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 12px 25px rgba(0, 104, 164, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.tech-item img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
}

.tech-item:hover img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.tech-item i {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.tech-item:hover i {
    transform: scale(1.1);
}

.tech-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-text);
    text-align: center;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.tech-item:hover span {
    color: var(--primary-color);
}

/* Fallback icon colors for inline styles */
.tech-item .fas.fa-database {
    color: #f9d423 !important;
}

.tech-item .fas.fa-wind {
    color: #17a2b8 !important;
}

.tech-item .fas.fa-random {
    color: #6c63ff !important;
}

.tech-item .fas.fa-mobile-alt {
    color: #00bcd4 !important;
}

/* Tech Stack Categories - Enhanced Styling */
.tech-stack-categories {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.tech-stack-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.tech-stack-categories .container {
    position: relative;
    z-index: 1;
}

.tech-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.category-title i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Section Styling */
.section-badge {
    display: inline-block;
    background: rgba(0, 104, 164, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card-modern h4 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card-modern p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

/* Detailed Service Cards */
.service-card-detailed {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.service-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-header h3 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.program-level {
    background: var(--light-blue);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.service-content {
    padding: 0 2rem 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
}

.service-features i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.service-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

/* Feature Cards */
.feature-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-content h5 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--light-text);
    margin: 0;
}

/* Visual Cards */
.visual-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.card-header i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.card-header span {
    font-weight: 600;
    color: var(--dark-text);
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric-label {
    flex: 0 0 120px;
    font-size: 0.875rem;
    color: var(--light-text);
}

.metric-bar {
    flex: 1;
    height: 8px;
    background: var(--light-blue);
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 1s ease;
}

.metric-value {
    flex: 0 0 40px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--dark-text);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Improved footer contact email style */
.footer-contact p {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-contact a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s;
    white-space: nowrap;
}
@media (max-width: 991px) {
  .footer-contact a {
    white-space: normal;
  }
}
.footer-contact {
  min-width: 220px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}
.footer-logo {
  margin-bottom: 1rem;
}
.footer-contact a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
.footer-contact i.fa-envelope {
    color: var(--secondary-color);
    font-size: 1.1em;
    margin-right: 0.3em;
}

.footer-phone-link {
    color: inherit;
    text-decoration: none;
}

.footer-phone-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.footer-copyright,
.footer-made {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Additional Service Cards */
.additional-service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.additional-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.additional-service-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(0, 177, 246, 0.05) 0%, white 100%);
}

.service-icon-small {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-info h5 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-info p {
    color: var(--light-text);
    margin: 0;
    line-height: 1.5;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.process-step h5 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Case Study Cards */
.case-study-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.case-study-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.case-study-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.case-study-badge {
    background: var(--light-blue);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.case-study-content {
    padding: 0 2rem 2rem;
}

.case-study-content h4 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 1rem;
}

.case-study-description {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-study-results {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.result-item {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.result-label {
    font-size: 0.875rem;
    color: var(--light-text);
}

.case-study-details h6 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.case-study-details ul {
    list-style: none;
    padding: 0;
}

.case-study-details li {
    padding: 0.25rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1rem;
}

.case-study-details li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Success Metrics */
.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.metric-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--light-text);
    font-weight: 500;
}

/* Industry Cards */
.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.industry-card.enhanced {
    padding: 2.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    position: relative;
    overflow: hidden;
}

.industry-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.industry-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    flex-shrink: 0;
}

.industry-icon.healthcare {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 100%);
    color: #22c55e;
}

.industry-icon.finance {
    background: linear-gradient(135deg, #fef3c7 0%, #f0f9ff 100%);
    color: #f59e0b;
}

.industry-icon.ecommerce {
    background: linear-gradient(135deg, #fce7f3 0%, #f0f9ff 100%);
    color: #ec4899;
}

.industry-icon.education {
    background: linear-gradient(135deg, #e0e7ff 0%, #f0f9ff 100%);
    color: #6366f1;
}

.industry-icon.manufacturing {
    background: linear-gradient(135deg, #f3e8ff 0%, #f0f9ff 100%);
    color: #8b5cf6;
}

.industry-icon.startup {
    background: linear-gradient(135deg, #fef2f2 0%, #f0f9ff 100%);
    color: #ef4444;
}

.industry-icon.government {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    color: #0369a1;
}

.industry-meta h5 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.industry-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industry-description {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.industry-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 177, 246, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--secondary-color);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-item strong {
    color: var(--dark-text);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.feature-item small {
    color: var(--light-text);
    font-size: 0.8rem;
    line-height: 1.3;
}

.industry-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 104, 164, 0.05);
    border-radius: 12px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.industry-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.industry-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 177, 246, 0.3);
    color: white;
}

.industry-card h5 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.industry-features {
    list-style: none;
    padding: 0;
}

.industry-features li {
    padding: 0.25rem 0;
    color: var(--light-text);
    font-size: 0.875rem;
    position: relative;
    padding-left: 1rem;
}

.industry-features li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Success Stories */
.success-stories {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
}

.success-stories h3 {
    color: var(--dark-text);
    font-weight: 800;
    margin-bottom: 2rem;
}

.success-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.success-content h6 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.success-content p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.success-metric {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Technology Stack */
.tech-category {
    text-align: center;
    margin-bottom: 2rem;
}

.tech-category h6 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-tag {
    background: var(--light-blue);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Training Program Cards */
.training-program-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.training-program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.program-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--light-blue) 0%, white 100%);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.program-header h4 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.program-content {
    padding: 1rem 2rem;
}

.program-details {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--light-text);
}

.detail-item i {
    color: var(--secondary-color);
}

.program-topics {
    margin-top: 1.5rem;
}

.program-topics h6 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.program-topics ul {
    list-style: none;
    padding: 0;
}

.program-topics li {
    padding: 0.25rem 0;
    color: var(--light-text);
    font-size: 0.875rem;
    position: relative;
    padding-left: 1rem;
}

.program-topics li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.program-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

/* Training Formats */
.format-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.format-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.format-card h5 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 1rem;
}

.format-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.format-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.format-features li {
    padding: 0.5rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
}

.format-features li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact Forms */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 177, 246, 0.1);
}

.service-checkboxes {
    background: var(--light-blue);
    padding: 1.5rem;
    border-radius: 10px;
}

.form-check {
    margin-bottom: 0.5rem;
}

.form-check-input {
    margin-right: 0.5rem;
}

.form-check-label {
    color: var(--dark-text);
    font-weight: 500;
}

/* Contact Cards */
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-card h5 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--secondary-color);
}

/* Quick Action Cards */
.quick-action-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.quick-action-card h5 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 1rem;
}

.quick-action-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Phone number button styling */
.quick-action-card .btn {
    white-space: nowrap;
    min-width: 180px;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
}

.quick-action-card .btn i {
    margin-right: 0.5rem;
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--dark-text);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--light-blue);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* About Page Specific */
.company-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    flex: 1;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: var(--light-text);
    font-weight: 500;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.visual-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
}

.visual-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.visual-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.visual-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-text);
}

.location-card,
.team-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.location-card:hover,
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.location-icon,
.team-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.location-features,
.team-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature-tag {
    background: var(--light-blue);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.advantage-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(0, 177, 246, 0.05) 0%, white 100%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.advantage-card h4 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--light-text);
    line-height: 1.6;
}

.mission-card,
.vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.value-card h5 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Industry Page Specific */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.industry-icon-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-icon-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.industry-icon-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.industry-icon-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-text);
}

.industry-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.industry-stats .stat-item {
    text-align: center;
    flex: 1;
}

.industry-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.industry-stats .stat-label {
    font-size: 0.875rem;
    color: var(--light-text);
    font-weight: 500;
}

.industry-card-detailed {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.industry-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.industry-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--light-blue) 0%, white 100%);
}

.industry-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.industry-header h3 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.industry-content {
    padding: 1rem 2rem 2rem;
}

.industry-content p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.industry-solutions h6 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.industry-solutions ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.industry-solutions li {
    padding: 0.25rem 0;
    color: var(--light-text);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-solutions i {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

.industry-benefits {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.benefit-stat {
    text-align: center;
    flex: 1;
}

.benefit-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.benefit-stat .stat-label {
    font-size: 0.75rem;
    color: var(--light-text);
    font-weight: 500;
}

.compliance-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.compliance-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.compliance-card h6 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.compliance-card p {
    color: var(--light-text);
    font-size: 0.875rem;
    line-height: 1.5;
}

.success-metric-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.success-metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.success-metric-card .metric-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.success-metric-card .metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.success-metric-card .metric-label {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.success-metric-card p {
    color: var(--light-text);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--dark-text);
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--light-blue);
    color: var(--primary-color);
}

.dropdown-item.active {
    background-color: var(--primary-color);
    color: white;
}

.dropdown-divider {
    border-color: var(--border-color);
    margin: 0.5rem 0;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
}

/* Fix dropdown toggle styling */
.dropdown-toggle {
    background: none !important;
    border: none !important;
}

.dropdown-toggle:focus {
    box-shadow: none !important;
}

/* Mobile dropdown fixes */
@media (max-width: 991.98px) {
    .dropdown-menu {
        border: none;
        box-shadow: none;
        background: transparent;
        margin-top: 0;
        padding: 0;
    }
    
    .dropdown-item {
        padding: 0.75rem 1.5rem;
        border-left: 3px solid transparent;
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--light-blue);
        border-left-color: var(--primary-color);
    }
    
    .dropdown-item.active {
        background-color: var(--light-blue);
        color: var(--primary-color);
        border-left-color: var(--primary-color);
    }
    
    /* Hide dropdown arrows on mobile */
    .dropdown-toggle::after {
        display: none !important;
    }
}

/* Training Page Specific */
.training-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.benefit-item span {
    color: var(--dark-text);
    font-weight: 500;
}

.skill-progress {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.skill-name {
    flex: 0 0 150px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.875rem;
}

.progress {
    flex: 1;
    height: 10px;
    background: var(--light-blue);
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 5px;
    transition: width 1s ease;
}

.skill-percentage {
    flex: 0 0 40px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.875rem;
}

.instructor-highlights {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.instructor-stat {
    text-align: center;
}

.instructor-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.instructor-stat .stat-label {
    font-size: 0.875rem;
    color: var(--light-text);
    font-weight: 500;
}

.instructor-qualities {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.quality-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.quality-item span {
    color: var(--dark-text);
    font-weight: 500;
}

.cert-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.cert-badge {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.cert-badge i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.cert-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-text);
}

/* WhatsApp Chat Widget */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.whatsapp-button {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 3s infinite;
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover::before {
    opacity: 1;
}

.whatsapp-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    color: white;
    font-size: 30px;
    z-index: 1;
    position: relative;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.chat-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.chat-avatar {
    position: relative;
}

.chat-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.chat-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border: 2px solid white;
    border-radius: 50%;
    animation: statusBlink 2s infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.chat-info h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chat-info p {
    margin: 2px 0 0 0;
    font-size: 13px;
    opacity: 0.9;
    font-weight: 300;
}

.close-chat {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: auto;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.close-chat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.close-chat:hover::before {
    transform: scale(1);
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.close-chat:active {
    transform: rotate(90deg) scale(0.95);
}

.close-chat i {
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.chat-body {
    padding: 25px;
    max-height: 350px;
    overflow-y: auto;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9ff 100%);
}

.chat-body::-webkit-scrollbar {
    width: 4px;
}

.chat-body::-webkit-scrollbar-track {
    background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
    background: rgba(37, 211, 102, 0.3);
    border-radius: 2px;
}

.message {
    margin-bottom: 18px;
    animation: messageSlide 0.3s ease-out;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 15px 18px;
    border-radius: 20px 20px 20px 8px;
    max-width: 85%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.1);
    position: relative;
}

.bot-message::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(to bottom, #25D366, #128C7E);
    border-radius: 2px;
}

.bot-message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #2c3e50;
}

.bot-message p:not(:last-child) {
    margin-bottom: 10px;
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.quick-reply {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(37, 211, 102, 0.05) 100%);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #25D366;
    padding: 12px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.quick-reply::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.quick-reply:hover::before {
    left: 100%;
}

.quick-reply:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.quick-reply i {
    font-size: 14px;
}

.chat-footer {
    border-top: 1px solid rgba(37, 211, 102, 0.1);
    padding: 20px;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f3f4 100%);
    border-radius: 0 0 20px 20px;
}

.chat-input-container {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.chat-input-container input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid rgba(37, 211, 102, 0.2);
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.chat-input-container input:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.chat-input-container input::placeholder {
    color: #94a3b8;
}

.send-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.send-btn i {
    font-size: 16px;
}

.whatsapp-link {
    text-align: center;
}

.whatsapp-direct {
    color: #25D366;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-direct:hover {
    color: white;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-chat-box {
        width: 320px;
        right: -15px;
        bottom: 75px;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-button i {
        font-size: 26px;
    }
    
    .chat-body {
        max-height: 280px;
        padding: 20px;
    }
    
    .chat-header {
        padding: 18px;
    }
    
    .close-chat {
        width: 40px;
        height: 40px;
        font-size: 20px;
        padding: 12px;
    }
    
    .chat-footer {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .whatsapp-chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-chat-box {
        width: 300px;
        right: -25px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
    
    .chat-body {
        max-height: 250px;
        padding: 15px;
    }
    
    .chat-header {
        padding: 15px;
    }
    
    .close-chat {
        width: 38px;
        height: 38px;
        font-size: 18px;
        padding: 10px;
    }
    
    .chat-footer {
        padding: 15px;
    }
    
    .bot-message {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .quick-reply {
        padding: 10px 14px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .whatsapp-chat-box {
        width: 280px;
        right: -30px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .tech-item {
        flex: 0 0 120px;
        height: 100px;
    }
    
    .tech-track {
        gap: 1rem;
    }
    
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-200px * 12)); }
    }
    
    .company-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .visual-grid {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
    
    .case-study-results {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .program-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cert-badges {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .floating-card {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        transform: scale(0.8);
    }
    
    .hero-main-visual {
        padding: 1rem;
    }
    
    .hero-robot-image {
        max-width: 280px;
    }
    
    .hero-main-icon {
        font-size: 5rem;
    }
    
    .service-card-modern,
    .service-card-detailed,
    .training-program-card {
        margin-bottom: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.bg-light {
    background-color: var(--light-blue) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-section {
        display: none !important;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .service-card-modern,
    .case-study-card,
    .training-program-card {
        page-break-inside: avoid;
        margin-bottom: 1rem;
    }
}


.brand-logo {
    max-width: 60px;
    height: auto;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}
@media (max-width: 768px) {
    .brand-logo {
        max-width: 40px;
    }
}
.me-2 {
    margin-right: 0.5rem !important;
}

.tech-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  display: inline-block;
}
.tech-icon-bg {
  background: #fff;
}

.footer-logo {
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 1rem auto;
}
@media (max-width: 768px) {
  .footer-logo {
    max-width: 70px;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.footer-social-link {
  color: #fff;
  font-size: 1.4rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer-social-link:hover {
  color: var(--secondary-color);
  text-decoration: none;
}