/* Color Variables */
:root {
    --primary-color: #6366f1;
    --primary-light: #a5b4fc;
    --primary-dark: #4f46e5;
    --secondary-color: #f1f5f9;
    --secondary-light: #f8fafc;
    --secondary-dark: #e2e8f0;
    --accent-color: #10b981;
    --accent-light: #6ee7b7;
    --accent-dark: #059669;
    --warning-color: #f59e0b;
    --warning-light: #fbbf24;
    --danger-color: #ef4444;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header Styles */
.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-shape-1 {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.hero-shape-2 {
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: var(--warning-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.feature-card {
    background: var(--secondary-light);
    border: 1px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    color: var(--primary-color);
}

.feature-icon-lg {
    color: var(--primary-color);
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.price-tag {
    background: var(--secondary-light);
    border-radius: 8px;
    padding: 1rem;
    margin-top: auto;
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.pricing-card.bg-primary {
    background: var(--primary-color) !important;
}

.price-display {
    padding: 1rem 0;
}

/* Team Section */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

/* Review Cards */
.review-card {
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.stars i {
    color: var(--warning-color);
}

/* FAQ Cards */
.faq-card {
    border-left: 4px solid var(--accent-color);
    transition: background-color 0.3s ease;
}

.faq-card:hover {
    background-color: var(--secondary-light) !important;
}

/* Gallery */
#gallery img {
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

#gallery img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Contact Form */
.contact-form .form-control {
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.contact-info {
    padding: 2rem 1rem;
    border-radius: 12px;
    background: var(--secondary-light);
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-3px);
}

/* Footer Contact Info Override */
#footer .contact-info {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

#footer .contact-info:hover {
    transform: none !important;
}

/* Footer */
#footer {
    background: #1a1a1a !important;
}

#footer h5,
#footer h6 {
    color: #ffffff !important;
}

#footer p,
#footer .text-muted {
    color: #f0f0f0 !important;
}

#footer small,
#footer .small {
    color: #e0e0e0 !important;
}

#footer a {
    color: #93c5fd !important;
    text-decoration: underline !important;
    transition: color 0.3s ease !important;
}

#footer a:hover {
    color: #dbeafe !important;
}

#footer a:focus {
    outline: 2px solid #93c5fd !important;
    outline-offset: 2px !important;
}

#footer ul li {
    margin-bottom: 0.75rem !important;
}

#footer .contact-details p,
#footer .contact-info p {
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
    background: transparent !important;
}

#footer .contact-details,
#footer .contact-info {
    background: transparent !important;
    border: none !important;
}

#footer .contact-details i,
#footer .contact-info i {
    color: #93c5fd !important;
    margin-right: 0.5rem !important;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Additional Page Styles */
.breadcrumb-section {
    margin-top: 76px;
}

.breadcrumb-icon {
    width: 24px;
    height: 24px;
}

/* Tech Features */
.tech-feature {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Industry Cards */
.industry-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Integration Items */
.integration-item {
    transition: transform 0.3s ease;
}

.integration-item:hover {
    transform: scale(1.05);
}

/* Metric Cards */
.metric-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.metric-number {
    color: var(--primary-color);
}

/* Step Cards */
.step-card {
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
}

.step-number {
    background-color: var(--primary-color) !important;
}

/* Enterprise Page Styles */
.feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.custom-solution {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-solution:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.process-step {
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: scale(1.05);
}

.step-icon {
    background-color: var(--primary-color) !important;
}

.roi-metric {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roi-metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-option {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 800;
}

.h2 {
    font-size: 2rem;
}

.h4 {
    font-size: 1.5rem;
}

.h5 {
    font-size: 1.25rem;
}

.lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Utility Classes */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.rounded-3 {
    border-radius: 0.5rem !important;
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Focus States */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.6s ease-in-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Case Study Cards */
.case-study-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Timeline Items */
.timeline-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.timeline-date {
    font-size: 1.1rem;
}

/* Career Items */
.career-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Core Info Items */
.core-info-item {
    transition: transform 0.3s ease;
}

.core-info-item:hover {
    transform: scale(1.05);
}

/* Blog Cards */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

/* Process Items */
.process-item {
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-3px);
}

.process-number {
    background-color: var(--primary-color) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .h2 {
        font-size: 1.75rem;
    }
    
    .hero-shape-1,
    .hero-shape-2 {
        display: none;
    }
    
    .timeline-item,
    .career-item,
    .case-study-card {
        margin-bottom: 1.5rem;
    }
    
    .process-number {
        width: 50px !important;
        height: 50px !important;
    }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    #footer {
        background: #000000 !important;
        border-top: 3px solid #ffffff !important;
    }
    
    #footer h5,
    #footer h6,
    #footer .contact-details p {
        color: #ffffff !important;
        font-weight: bold !important;
    }
    
    #footer p,
    #footer .text-muted {
        color: #ffffff !important;
    }
    
    #footer a {
        color: #ffffff !important;
        background-color: #0066cc !important;
        padding: 2px 4px !important;
        border-radius: 2px !important;
    }
    
    #footer a:hover,
    #footer a:focus {
        background-color: #ffffff !important;
        color: #000000 !important;
    }
}

/* Footer Forced Visibility Styles */
#footer * {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Enhanced Footer Typography */
#footer {
    line-height: 1.6 !important;
}

#footer .row {
    margin-bottom: 1rem !important;
}

#footer .col-lg-4:not(:last-child) {
    border-right: 1px solid #333 !important;
    padding-right: 2rem !important;
}

@media (max-width: 992px) {
    #footer .col-lg-4:not(:last-child) {
        border-right: none !important;
        border-bottom: 1px solid #333 !important;
        padding-bottom: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
}
