/* Provision Health Corp - Custom Styles */

:root {
    --primary-color: #21374c;
    --secondary-color: #00bfd9;
    --base-color: #FFFFFF;
}

/* Global Styles */
html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background-color: var(--base-color);
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    body {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Navigation */
.navbar-brand img {
    height: 60px;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    margin: 0 10px;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #21374c 0%, #2d4a63 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-secondary-custom:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Content Sections */
.content-section {
    padding: 30px 0;
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.section-title-alt {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-card h3,
.service-card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.service-card ul li {
    margin-bottom: 10px;
}

/* Icon Styles */
.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.service-icon i {
    font-size: 2.5rem;
}

/* Profile Images */
.profile-image-section {
    padding: 40px 0;
}

.profile-image-section img {
    max-width: 100%;
    height: auto;
}

/* Footer */
footer {
    background-color: #21374c;
    border-top: 3px solid var(--secondary-color);
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
}

footer a {
    color: white;
}

footer a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

footer p {
    color: white;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Page Specific */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    .navbar-nav {
        font-size: 1.5rem;
    }
}

