/* Color Palette Variables */
:root {
    /* Primary Colors */
    --primary-blue: #2d3a4c;
    --primary-teal: #1bb6a9;
    --primary-orange: #cd692e;
    --primary-purple: #8c4e9e;
    --primary-green: #33b369;
    
    /* Light Shades */
    --light-blue: #ecf0f1;
    --light-teal: #b9ede9;
    --light-orange: #dfc471;
    --light-purple: #d4aeda;
    --light-green: #8fd1a6;
    
    /* Dark Shades */
    --dark-blue: #253b46;
    --dark-teal: #168172;
    --dark-orange: #ce5543;
    --dark-purple: #763193;
    --dark-green: #107f4e;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6a727a;
    --dark-gray: #575c63;
    --black: #1f252c;
    
    /* Fonts */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-xxl: 1.375rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Borders */
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --border-color: #d4e0f0;
    
    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--primary-blue);
}

h1 {
    font-size: var(--font-size-xxl);
}

h2 {
    font-size: var(--font-size-xl);
}

h3 {
    font-size: var(--font-size-lg);
}

h4 {
    font-size: var(--font-size-base);
}

h5, h6 {
    font-size: var(--font-size-sm);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--dark-gray);
}

a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-teal);
}

/* Header Styles */
.navbar {
    background-color: var(--white) !important;
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-sm) 0;
    transition: background-color 0.3s ease;
}

.navbar-brand {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-blue);
}

.navbar-brand:hover {
    color: var(--primary-teal);
}

.navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-teal);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-teal));
    opacity: 0.9;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: var(--white);
    font-size: 2.31rem;
    margin-bottom: var(--spacing-lg);
    padding-top: 175px;
}

.hero-section p {
    color: var(--light-blue);
    font-size: var(--font-size-lg);
}

/* Cards */
.card {
    border: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: var(--border-radius);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-body {
    padding: var(--spacing-lg);
}

/* Service Cards */
.service-card,
.program-card,
.matching-card,
.skill-card,
.network-card,
.support-card,
.resource-card,
.tool-card,
.insight-card,
.strategy-card,
.community-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover,
.program-card:hover,
.matching-card:hover,
.skill-card:hover,
.network-card:hover,
.support-card:hover,
.resource-card:hover,
.tool-card:hover,
.insight-card:hover,
.strategy-card:hover,
.community-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-teal);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
}

.service-card h4 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.service-card .price {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-teal);
    margin-top: var(--spacing-md);
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.service-card ul li {
    padding: var(--spacing-xs) 0;
    color: var(--dark-gray);
}

.service-card ul li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    margin-right: var(--spacing-sm);
}

/* Feature Items */
.feature-box,
.feature-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-box:hover,
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-box i,
.feature-item i {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: var(--spacing-md);
}

.feature-box h4,
.feature-item h4 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-teal);
}

.pricing-card.featured {
    border-color: var(--primary-teal);
    background: linear-gradient(135deg, var(--light-teal), var(--white));
}

.pricing-card h4 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin: var(--spacing-md) 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.pricing-card ul li {
    padding: var(--spacing-xs) 0;
    color: var(--dark-gray);
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    margin-right: var(--spacing-sm);
}

/* Team Members */
.team-member {
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: var(--spacing-md);
    border: 3px solid var(--primary-teal);
}

.team-member h5 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.team-member p {
    color: var(--primary-teal);
    font-size: var(--font-size-sm);
}

/* Reviews */
.review-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-teal);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.review-card p {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: var(--dark-gray);
}

.review-card h6 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0;
}

/* Case Studies */
.case-study-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.case-study-card h4 {
    color: var(--primary-orange);
    margin-bottom: var(--spacing-sm);
}

/* Process Steps */
.process-step {
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: bold;
    margin: 0 auto var(--spacing-md);
}

.process-step h5 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.process-step p {
    color: var(--dark-gray);
    font-size: var(--font-size-sm);
}

/* Timeline */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-teal);
    transform: translateX(-50%);
}

.timeline-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--primary-teal);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.timeline-item h5 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.timeline-item p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* Career/Jobs */
.job-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-purple);
}

.job-card h4 {
    color: var(--primary-purple);
    margin-bottom: var(--spacing-sm);
}

.job-card span {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

/* Core Info */
.info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.info-card h4 {
    color: var(--primary-green);
    margin-bottom: var(--spacing-sm);
}

/* Contact Form */
.form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.2rem rgba(18, 165, 157, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.btn-primary {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-teal);
    border-color: var(--dark-teal);
    transform: translateY(-2px);
}

/* Blog */
.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.blog-card h4 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.blog-card p {
    color: var(--dark-gray);
    font-size: var(--font-size-sm);
}

.blog-card a {
    color: var(--primary-orange);
    font-weight: 600;
}

.blog-card a:hover {
    color: var(--dark-orange);
}

/* FAQ */
.faq-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-purple);
}

.faq-card h5 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.faq-card p {
    color: var(--dark-gray);
    font-size: var(--font-size-sm);
    margin-bottom: 0;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Section Images - Direct styling */
section .container-fluid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

section .container-fluid a:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Breadcrumb */
.breadcrumb-nav {
    background-color: var(--light-gray);
    padding: var(--spacing-md) 0;
    margin-top: 76px;
}

.breadcrumb-image {
    height: 24px;
    width: auto;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

footer h5 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

footer p {
    color: var(--light-blue);
    margin-bottom: var(--spacing-sm);
}

footer a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: var(--spacing-sm);
}

footer hr {
    border-color: var(--primary-teal);
    margin: var(--spacing-xl) 0;
}

footer small {
    color: var(--light-blue);
    font-size: var(--font-size-sm);
}

/* Space Page */
#space {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Utilities */
.text-primary {
    color: var(--primary-teal);
}

.bg-primary {
    background-color: var(--primary-teal);
}

.border-primary {
    border-color: var(--primary-teal);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    padding-top: 175px;
}
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .process-step .step-number {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-base);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #040991;
        --primary-teal: #007572;
        --primary-orange: #e84200;
        --primary-purple: #66086f;
        --primary-green: #0d6d04;
        --black: #000000;
        --white: #ffffff;
        --border-color: #000000;
    }
    
    .card,
    .service-card,
    .pricing-card,
    .team-member,
    .review-card,
    .case-study-card,
    .process-step,
    .timeline-item,
    .job-card,
    .info-card,
    .blog-card,
    .faq-card {
        border: 2px solid var(--black);
    }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
