:root {
    /* Primary Color Palette - Pastel High-Contrast Colors */
    --primary-blue: #6B73FF;
    --primary-purple: #9B59B6;
    --primary-teal: #16A085;
    --primary-coral: #FF6B6B;
    --primary-green: #2ECC71;
    
    /* Light Shades */
    --light-blue: #E8EAFF;
    --light-purple: #F4E6FF;
    --light-teal: #E8F8F5;
    --light-coral: #FFE8E8;
    --light-green: #E8F8F0;
    
    /* Dark Shades */
    --dark-blue: #4A52CC;
    --dark-purple: #7D3C98;
    --dark-teal: #138D75;
    --dark-coral: #E74C3C;
    --dark-green: #27AE60;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-purple);
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.hero-shapes .shape-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: var(--primary-coral);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
}

.hero-shapes .shape-2 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: var(--primary-teal);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.5;
    z-index: 1;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 12px 30px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

/* Process Steps */
.process-step {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Team Images - ensure always visible */
.team img,
img[src*="team_"] {
    width: 120px;
    height: 120px;
    object-fit: cover;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: none !important;
}

/* Team containers */
#team .col-lg-2, #team .col-md-4, #team .col-6 {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Contact Form */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(107, 115, 255, 0.25);
}

/* Footer */
#footer {
    background: #2c3e50;
}

#footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Gallery - ensure images are always visible */
#gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: none !important;
}

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

/* Gallery container */
#gallery .col-lg-3, #gallery .col-md-4, #gallery .col-6 {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Breadcrumb */
.breadcrumb-icon {
    width: 24px;
    height: 24px;
}

/* Force all elements to be visible - override any hiding animations */
img, .card, .process-step, .col-lg-2, .col-md-4, .col-lg-3, .col-lg-4, section {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
}

/* Disable problematic Sal.js animations */
[data-sal] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition-duration: 0s !important;
}

/* Ensure images are always visible */
img[src*=".webp"] {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: none !important;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-shapes .shape-1,
    .hero-shapes .shape-2 {
        animation: none;
    }
    
    .card:hover {
        transform: none;
    }
    
    #gallery img:hover {
        transform: none;
    }
}

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

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

/* Contact Info Styling */
.contact-info {
    padding: 2rem;
    background: var(--light-blue);
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info i {
    font-size: 1.2rem;
}

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

/* Navbar Adjustments */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

/* Ensure proper spacing from fixed navbar */
body {
    padding-top: 76px;
}

/* High contrast colors for footer - no gradients */
#footer {
    background: #1a252f;
    color: #ffffff;
}

#footer h5, #footer h6 {
    color: #ffffff;
}

#footer p {
    color: #ecf0f1;
}

#footer a {
    color: #bdc3c7;
}

#footer a:hover {
    color: #ffffff;
}

#footer hr {
    border-color: #34495e;
} 


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