:root {
    /* Primary Color Palette - Pastel High-Contrast */
    --primary-color: #2c7be5;
    --secondary-color: #00d2d3;
    --accent-color: #f0ad4e;
    --success-color: #28a745;
    --warning-color: #ffc107;
    
    /* Light and Dark Shades */
    --primary-light: #e3f2fd;
    --primary-dark: #1565c0;
    --secondary-light: #e0f7fa;
    --secondary-dark: #006064;
    --accent-light: #fff3cd;
    --accent-dark: #e67e22;
    --success-light: #d4edda;
    --success-dark: #155724;
    --warning-light: #fff3cd;
    --warning-dark: #856404;
    
    /* Additional Colors */
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --white: #ffffff;
    --black: #000000;
}

/* Conservative Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Conservative Font Sizes */
.navbar-brand {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: var(--primary-color);
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: var(--medium-gray);
}

h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

h5 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

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

/* Card Styles */
.card {
    border: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

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

.card-img-top {
    border-radius: 0.5rem 0.5rem 0 0;
    height: 200px;
    object-fit: cover;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(44, 123, 229, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

/* Decorative Shapes */
.hero-shape {
    position: absolute;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.hero-shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation: float 4s ease-in-out infinite reverse;
}

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

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    [data-sal] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

/* Icon Styling */
.fa {
    color: var(--primary-color);
}

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

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

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

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

/* Team Member Images */
.team-member img {
    transition: all 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.05);
}

/* Footer Styling */
footer {
    background-color: var(--dark-gray) !important;
}

footer a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

/* Form Styling */
.form-control {
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 123, 229, 0.25);
}

/* Gallery Styling */
#gallery img {
    transition: all 0.3s ease;
    cursor: pointer;
}

#gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Pricing Plan Cards */
.card.border-primary {
    border: 2px solid var(--primary-color) !important;
}

.card.border-warning {
    border: 2px solid var(--warning-color) !important;
}

/* Timeline Styling */
.timeline .card {
    border-left: 3px solid var(--primary-color);
}

/* Breadcrumb Styling */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* Navigation Styling */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Space Page Styling */
#space {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    min-height: calc(100vh - 152px);
}

/* Custom Badge Colors */
.badge.bg-primary {
    background-color: var(--primary-color) !important;
}

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

.badge.bg-warning {
    background-color: var(--warning-color) !important;
    color: var(--dark-gray) !important;
}

.badge.bg-info {
    background-color: var(--secondary-color) !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;
}

/* Custom Animations for Interactive Elements */
.interactive-hover {
    transition: all 0.3s ease;
}

.interactive-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Custom Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* High Contrast for Accessibility */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0056b3;
        --medium-gray: #495057;
        --dark-gray: #212529;
    }
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar, footer, .btn, [data-sal] {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: black !important;
        background: white !important;
    }
} 


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
