/* TrimSoft Studio - Custom Styles */

/* Global Styles */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2d3748;
    --accent-color: #d69e2e;
    --light-bg: #f7fafc;
    --dark-text: #2d3748;
    --white: #ffffff;
    --navy-dark: #0f1419;
    --charcoal: #4a5568;
    --warm-grey: #718096;
    --gold: #d69e2e;
    --gold-light: #f6e05e;
    --shadow: 0 0.5rem 1rem rgba(26, 54, 93, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    padding-bottom: 80px;
    /* Prevent sticky contact bar from covering footer */
}

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

/* Navigation */
.navbar {
    box-shadow: 0 2px 20px rgba(26, 54, 93, 0.1);
    transition: var(--transition);
    background: rgba(15, 20, 25, 0.95) !important;
}

.navbar.scrolled {
    background: rgba(15, 20, 25, 0.98) !important;
    box-shadow: 0 4px 25px rgba(26, 54, 93, 0.15);
}

.navbar.scrolled .navbar-brand-text .brand-name,
.navbar.scrolled .navbar-brand-text .brand-tagline {
    color: #ffffff !important;
}

.navbar.scrolled .nav-link {
    color: #ffffff !important;
}

.navbar.scrolled .nav-link:hover {
    color: var(--gold) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand-text .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.navbar-brand-text .brand-tagline {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gold) !important;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

/* Service Cards */
.service-icon {
    transition: var(--transition);
}

.card {
    transition: var(--transition);
    border: none;
    border-radius: 15px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.card:hover .service-icon {
    transform: scale(1.1);
}

/* Project Cards */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.project-card img {
    transition: var(--transition);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(45, 55, 72, 0.9) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.1);
}

/* Feature Icons */
.feature-icon {
    flex-shrink: 0;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Buttons */
.btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(26, 54, 93, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Footer */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    margin: 0 !important;
    /* Remove individual margins in favor of flex gap */
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}


/* Typography */
.display-4 {
    font-weight: 700;
    line-height: 1.2;
}

.display-5 {
    font-weight: 600;
    line-height: 1.3;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 4rem 0;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .project-card img {
        height: 200px;
    }
}

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

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

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-bg);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.rounded-custom {
    border-radius: 15px;
}

/* Form Styles */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.25);
}

/* Section Spacing */
.section-padding {
    padding: 5rem 0;
}

.section-padding-sm {
    padding: 3rem 0;
}

/* Background Patterns */
.bg-pattern {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

/* Hover Effects */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333333;
}

/* Floating Action Buttons Container */
.floating-actions {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* WhatsApp Button */
.whatsapp-bubble {
    position: fixed;
    bottom: 180px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #666666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    text-decoration: none;
    z-index: 1000;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 24px;
    color: white;
}

/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1001;
}

/* Move to Top Button */
.back-to-top {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999 !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    transition: var(--transition) !important;
    background: #000000 !important;
    border: none !important;
    color: white !important;
}

.back-to-top:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
    background: #333333 !important;
    color: white !important;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    animation: pulse-black 2s infinite;
}

@keyframes pulse-black {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    animation: none;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, #0f1419 0%, #2d3748 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    scroll-behavior: smooth;
}

.message-content {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    line-height: 1.5;
}

.bot-message .message-content {
    background: white;
    color: #2d3748;
    border-bottom-left-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.user-message .message-content {
    background: #0f1419;
    color: white;
    border-bottom-right-radius: 5px;
}

.chatbot-input {
    padding: 20px;
    background: white;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    transition: var(--transition);
    background: #f8f9fa;
}

.chatbot-input input:focus {
    outline: none;
    border-color: #0f1419;
    background: white;
    box-shadow: 0 0 0 3px rgba(15, 20, 25, 0.1);
}

.chatbot-input button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #0f1419;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Form Enhancements */
.contact-info-card {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
}

.contact-info-card h4 {
    color: white;
}

.contact-info-card .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* WhatsApp Button Enhancement */
.btn-whatsapp {
    background: #666666;
    border-color: #666666;
    color: white;
}

.btn-whatsapp:hover {
    background: #333333;
    border-color: #333333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #666666;
    box-shadow: 0 0 0 0.2rem rgba(102, 102, 102, 0.25);
}

.form-control.is-valid {
    border-color: #999999;
    box-shadow: 0 0 0 0.2rem rgba(153, 153, 153, 0.25);
}

/* Success/Error Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background: linear-gradient(135deg, #e6e6e6 0%, #cccccc 100%);
    color: #000000;
}

.alert-danger {
    background: linear-gradient(135deg, #f5f5f5 0%, #e6e6e6 100%);
    color: #000000;
}

/* Bootstrap Primary Color Overrides - Remove All Blue */
.bg-primary {
    background-color: var(--primary-color) !important;
}

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

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

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

.badge.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Bootstrap Success/Danger Color Overrides - Corporate Colors */
.text-success {
    color: var(--charcoal) !important;
}

.bg-success {
    background-color: var(--charcoal) !important;
}

.btn-success {
    background-color: var(--charcoal) !important;
    border-color: var(--charcoal) !important;
}

.btn-success:hover {
    background-color: var(--warm-grey) !important;
    border-color: var(--warm-grey) !important;
}

.border-success {
    border-color: var(--charcoal) !important;
}

.badge.bg-success {
    background-color: var(--charcoal) !important;
}

.text-danger {
    color: var(--warm-grey) !important;
}

.bg-danger {
    background-color: var(--warm-grey) !important;
}

.btn-danger {
    background-color: var(--warm-grey) !important;
    border-color: var(--warm-grey) !important;
}

.btn-danger:hover {
    background-color: var(--charcoal) !important;
    border-color: var(--charcoal) !important;
}

.border-danger {
    border-color: var(--warm-grey) !important;
}

.badge.bg-danger {
    background-color: var(--warm-grey) !important;
}

/* Footer Brand Text Colors */
.footer-brand-name {
    color: #ffffff !important;
}

.footer-brand-tagline {
    color: var(--gold) !important;
}

/* Footer Link Hover Effects */
.hover-white:hover {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

/* Footer Contact Info - White Text */
.footer-contact-info {
    color: #ffffff !important;
}

/* Footer Menu Items - White Text */
.footer-menu-item {
    color: #ffffff !important;
}

.footer-menu-item:hover {
    color: var(--gold) !important;
    transition: color 0.3s ease;
}

/* Footer Copyright - White Text */
.footer-copyright {
    color: #ffffff !important;
}

.footer-copyright .heart {
    color: #dc3545 !important;
}

/* Footer Mission Statement - White Text */
.footer-mission {
    color: #ffffff !important;
}

/* Code Logo */
.code-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    background: var(--navy-dark);
    border: 2px solid var(--gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.code-logo:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: scale(1.1);
}

/* Clients Section */
.clients-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-color) 100%);
    padding: 80px 0;
}

.client-logo {
    height: 80px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.6;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--navy-dark) 100%);
    padding: 80px 0;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--gold);
}

.team-member h5 {
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.team-member .position {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-member .bio {
    color: #cccccc;
    font-size: 0.85rem;
    line-height: 1.6;
}

.team-social {
    margin-top: 15px;
}

/* Form Validation Highlighting */
.is-invalid {
    border-color: #dc3545 !important;
    background-image: none !important;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

.is-invalid+.invalid-feedback {
    display: block;
    font-weight: 600;
    margin-top: 5px;
}


.team-social a {
    color: #ffffff;
    margin: 0 8px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--gold);
}

/* Glossy Black Effect for Footer */
footer {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-color) 50%, var(--navy-dark) 100%) !important;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

/* Gold Social Media Icons */
.social-links a {
    color: var(--gold) !important;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.1);
    text-shadow: 0 0 10px rgba(214, 158, 46, 0.5);
}

/* Bootstrap Warning Color Override - Change to Gold */
.text-warning {
    color: var(--gold) !important;
}

.btn-outline-warning {
    color: var(--gold) !important;
    border-color: var(--gold) !important;
}

.btn-outline-warning:hover {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--navy-dark) !important;
}

/* Mobile Responsive Floating Elements */
@media (max-width: 768px) {
    .chatbot-window {
        width: 300px;
        height: 400px;
        left: -10px;
    }

    .chatbot-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .chatbot-container {
        bottom: 80px;
        right: 15px;
    }

    .whatsapp-bubble {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 140px;
        right: 15px;
    }

    .back-to-top {
        width: 50px !important;
        height: 50px !important;
        bottom: 15px !important;
        right: 15px !important;
    }

    .floating-actions {
        bottom: 15px;
        left: 15px;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .chatbot-window {
        width: 280px;
        height: 350px;
        left: -20px;
    }

    .chatbot-container {
        bottom: 70px;
        right: 10px;
    }

    .whatsapp-bubble {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 120px;
        right: 10px;
    }

    .back-to-top {
        width: 45px !important;
        height: 45px !important;
        bottom: 10px !important;
        right: 10px !important;
    }

    .floating-actions {
        bottom: 10px;
        left: 10px;
        gap: 10px;
    }
}

/* Sticky Contact Bar */
.sticky-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.sticky-contact-bar.visible {
    transform: translateY(0);
}

.sticky-contact-bar .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
}

.sticky-contact-bar .contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.sticky-contact-bar .contact-item i {
    font-size: 20px;
}

.sticky-contact-bar .contact-text {
    font-size: 14px;
    font-weight: 600;
}

/* Mobile Responsive Sticky Bar */
@media (max-width: 768px) {
    .sticky-contact-bar {
        padding: 10px 0;
    }

    .sticky-contact-bar .contact-item {
        padding: 6px 10px;
        font-size: 12px;
    }

    .sticky-contact-bar .contact-item i {
        font-size: 16px;
    }

    .sticky-contact-bar .contact-text {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .sticky-contact-bar .contact-text {
        display: none;
    }

    .sticky-contact-bar .contact-item {
        padding: 8px;
    }

    .sticky-contact-bar .contact-item i {
        font-size: 18px;
    }
}

/* Industry Cards */
.industry-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.industry-card i {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.industry-card:hover i {
    color: var(--gold);
    transform: scale(1.1);
}

.industry-card h6 {
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================
   Contact Wizard Styles
   ============================ */

.wizard-steps {
    position: relative;
    padding-left: 10px;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step-item.active {
    opacity: 1;
}

.step-circle {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step-item.active .step-circle {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.step-text {
    display: flex;
    flex-direction: column;
}

.step-title {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.step-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.step-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    margin-left: 21.5px;
    /* (45px width / 2) - (2px width / 2) */
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Service Selection Cards */
.selection-card {
    display: block;
    cursor: pointer;
    border: 2px solid transparent;
    /* default transparent to let shadow work or light gray */
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.selection-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.btn-check:checked+.selection-card {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.15);
}

.btn-check:checked+.selection-card::after {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.btn-check:checked+.selection-card .icon-box {
    transform: scale(1.1) rotate(5deg);
}