/* Main CSS for SOC2Easy Template */

/* CSS Variables - Pastel High Contrast Colors */
:root {
    --primary-color: #669ce4;
    --primary-light: #9eafe4;
    --primary-dark: #3167a4;
    --secondary-color: #6ac494;
    --secondary-light: #6dfeb2;
    --secondary-dark: #1f8a4a;
    --accent-color: #e7445c;
    --accent-light: #ffaec0;
    --accent-dark: #cc487e;
    --neutral-color: #68777b;
    --neutral-light: #a4a4a4;
    --neutral-dark: #3d4049;
    --warning-color: #ff9700;
    --warning-light: #f0be4e;
    --warning-dark: #b58e00;
    --white: #ffffff;
    --light-#978f8e: #f8f9fa;
    --dark-#767474: #4d5154;
    --black: #000000;
    
    /* Typography */
    --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --line-height-base: 1.6;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-light: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-regular: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Base Styles */
body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark-#8d8483);
    background-color: var(--white);
}

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

h1, .display-4 {
    font-size: 2.65rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-#918382);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-#838383);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.60rem;
    font-weight: 600;
    color: var(--dark-#828080);
}

h4 {
    font-size: 1.28rem;
    font-weight: 600;
}

h5 {
    font-size: 1.23rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

.lead {
    font-size: 1.21rem;
    font-weight: 400;
    color: var(--neutral-color);
}

p {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    padding: 0.75rem 0;
}

.navbar-brand {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--dark-#848484);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.76s ease;
}

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

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

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    z-index: 1;
}

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

/* Button Styles */
.btn {
    border-radius: 0.375rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.69s ease;
    border: none;
}

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

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

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.19rem;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-light);
    transition: all 0.55s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-regular);
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--dark-#8e8e8e);
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--neutral-color);
    line-height: 1.6;
}

/* Section Spacing */
section {
    padding: var(--section-padding);
}

/* Background Variants */
.bg-light {
    background-color: var(--light-#6e6e6e);
}

/* Team Section */
.team img {
    border: 3px solid var(--white);
    box-shadow: var(--shadow-light);
    transition: transform 0.96s ease;
}

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

/* Timeline Styles */
.timeline-item {
    border-left: 3px solid var(--primary-color);
    padding-left: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
}

/* Gallery Styles */
#gallery img {
    border-radius: 0.5rem;
    transition: transform 1.08s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Contact Form */
.form-control {
    border-radius: 0.375rem;
    border: 2px solid #ffffff;
    padding: 0.75rem 1rem;
    transition: border-color 0.94s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(61, 120, 219, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark-#8c8b8b);
    margin-bottom: 0.70rem;
}

/* Footer */
footer {
    background-color: #333333; /* Darker background for better contrast */
    color: #ffffff; /* Brighter white text */
}

footer h5, footer h6 {
    color: #ffffff;
    font-weight: 600; /* Make headings bolder */
    margin-bottom: 1rem;
}

footer a {
    color: #c0c5d0; /* Lighter link color for better contrast */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

footer p {
    color: #e0e0e0; /* Light gray text with better contrast */
}

footer small {
    color: #e0e0e0; /* Light gray text for small text */
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2); /* More visible separator */
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

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

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

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

/* Icon Styles */
.fas {
    color: var(--primary-color);
}

/* Process Section Numbers */
.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.29rem;
    margin-bottom: 1rem;
}

/* Badge Styles */
.badge {
    border-radius: 0.25rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

.badge.bg-light {
    color: var(--primary-color);
}

/* List Styles */
.list-unstyled li {
    margin-bottom: 0.74rem;
}

.list-unstyled .fas {
    margin-right: 0.5rem;
}

/* Animations - Respect Reduced Motion */
@media (prefers-reduced-motion: no-preference) {
    .card,
    .btn,
    .navbar-nav .nav-link,
    .form-control,
    .team img,
    #gallery img {
        transition: all 1.24s ease;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Ensure all content with animations is visible */
[data-sal],
[data-sal-delay],
[data-sal-duration] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

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

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    #gallery {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
} 

.hero-section h1 {
    padding-top: 275px;
}


/* 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);
}

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

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 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;
    }
}
