:root {
    /* Primary Color Palette */
    --primary-blue: #22448d;
    --primary-blue-light: #3767bf;
    --primary-blue-dark: #193b67;
    
    --accent-purple: #6b5bdf;
    --accent-purple-light: #8986db;
    --accent-purple-dark: #534ec5;
    
    --tech-green: #03c6b7;
    --tech-green-light: #21ddac;
    --tech-green-dark: #069f74;
    
    --warm-orange: #ff6048;
    --warm-orange-light: #ee6650;
    --warm-orange-dark: #c95437;
    
    --soft-gray: #82868b;
    --soft-gray-light: #a2adb2;
    --soft-gray-dark: #4c545c;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    --gradient-secondary: linear-gradient(135deg, var(--tech-green), var(--primary-blue));
    --gradient-accent: linear-gradient(135deg, var(--warm-orange), var(--accent-purple));
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--soft-gray-dark);
    font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header Styles */
.navbar {
    background: var(--gradient-primary);
    backdrop-filter: blur(12px);
    box-shadow: 0 3px 29px rgba(47, 106, 182, 0.10);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.55rem;
    color: white !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../SEK_images/hero-bg-pattern.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.12rem;
    margin-bottom: 1.58rem;
    opacity: 0.9;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 13px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(46, 106, 161, 0.10);
}

.service-card:hover {
    transform: translateY(-113px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.39rem;
}

.service-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tech-green);
    text-align: center;
    margin-top: 1rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 19px;
    text-align: center;
    box-shadow: 0 11px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(95, 87, 224, 0.10);
}

.feature-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 20px 39px rgba(0, 0, 0, 0.12);
}

.feature-card i {
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.34rem;
}

/* Feature Items */
.feature-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    background: white;
    transform: translateY(-3px);
}

.feature-item i {
    color: var(--tech-green);
}

.feature-item h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.20rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 17px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid rgba(43, 107, 163, 0.10);
    border-radius: 10px;
    padding: 12px 110px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(47, 84, 148, 0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 210px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 19px rgba(33, 67, 135, 0.30);
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    font-size: 2.65rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

section h3 {
    font-size: 1.62rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

section p {
    font-size: 1rem;
    color: var(--soft-gray);
    margin-bottom: 1.72rem;
}

/* Background Patterns */
.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #deeefb 100%) !important;
}

/* Footer */
footer {
    background: var(--gradient-primary) !important;
    color: white;
}

footer h5, footer h6 {
    color: white;
    font-weight: 600;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

/* Additional Page Styles */
.process-step, .support-card, .advanced-feature, .integration-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--tech-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover, .support-card:hover, .advanced-feature:hover, .integration-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--accent-purple);
}

.process-step h5, .support-card h5, .advanced-feature h5, .integration-card h5 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.14rem;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
}

/* Space Page */
#space {
    background: var(--gradient-secondary);
    color: white;
}

#space h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Image Sizing */
img {
    max-width: 100%;
    height: auto;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Info Icons */
.contact-info i {
    color: var(--tech-green);
    margin-bottom: 0.60rem;
}

/* Process Steps */
.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border-top: 4px solid var(--tech-green);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.53rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.process-step h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.23rem;
}

/* Timeline Items */
.timeline-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 5px solid var(--accent-purple);
}

.timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.timeline-item h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.11rem;
}

/* Career Cards */
.career-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(235, 75, 46, 0.10);
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--warm-orange);
}

.career-card h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.33rem;
}

/* Info Cards */
.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 3px solid var(--tech-green);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.info-card h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.11rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(116, 94, 241, 0.10);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-card h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.32rem;
}

.blog-card .btn-outline-primary {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    margin-top: 1rem;
}

.blog-card .btn-outline-primary:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Gallery Section */
.gallery-grid .gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gallery-grid .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer Disclaimer */
footer #site_disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.03rem;
    margin-bottom: 1rem;
} 


/* 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;
}

.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;
    }
}
