/* assets/css/pages/about/profile.css */

/* Existing styles for profile page ... */

.text-justify-custom {
    text-align: justify;
    hyphens: auto; /* Enable auto hyphenation */
    -webkit-hyphens: auto; /* For Safari */
    -moz-hyphens: auto; /* For Firefox */
    -ms-hyphens: auto; /* For IE/Edge */
    line-height: 1.8; /* Improved line height for readability */
    margin-bottom: 1.5rem; /* Consistent paragraph spacing */
}

/* Banner Image Styling */
.content-banner-image-container img {
    border-radius: 8px; /* Consistent border radius */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Section Title Styling (if you add more sections with h2 titles) */
.content-section h1.display-5,
.content-section h2 {
    /* color: var(--dark-tiffany, #5EBFB7); */ /* Use a variable or a specific color */
    /* font-weight: bold; */
    font-size: 2.8rem; /* Match home.css .section-title */
    color: #333;       /* Match home.css .section-title */
    font-weight: 600;   /* Match home.css .section-title */
}

/* Counter Animation Section Styles */
#company-highlights {
    /* background-color: #f8f9fa; */ /* REMOVE light background to use page background */
}

.counter-item {
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #E0F2F1; /* MODIFIED to pale-tiffany */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.counter-item i {
    color: var(--tiffany-blue, #81D8D0); /* Icon color */
}

.counter-number {
    font-size: 2.5rem; /* Larger number for emphasis */
    font-weight: 700;
    color: #FFB800; /* MODIFIED to soft-gold */
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1rem;
    color: #555; /* Label color */
    font-weight: 500;
}

/* Media Gallery Section Styles */
.gallery-item a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff; /* Added a background for the link area */
}

.gallery-item a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-thumbnail {
    width: 100%;
    height: 220px; /* Adjust height as needed for thumbnails */
    object-fit: cover;
    display: block; /* Ensure image is block to fill link */
    transition: transform 0.3s ease;
}

.gallery-item a:hover .gallery-thumbnail {
    transform: scale(1.05);
}

.gallery-item-title {
    color: var(--dark-tiffany, #5EBFB7);
    font-weight: 600;
    font-size: 1rem; /* Adjust title size if needed */
}

/* Core Strengths / Infographics Section Styles */
#core-strengths {
    /* background-color: #f8f9fa; */ /* Ensure this is commented out or removed */
}

.strength-item {
    padding: 20px;
}

.strength-icon i {
    color: #E0F2F1; /* MODIFIED to pale-tiffany */
    transition: transform 0.3s ease;
}

.strength-item:hover .strength-icon i {
    transform: scale(1.1);
}

#core-strengths h4 {
    color: #E0F2F1; /* MODIFIED to pale-tiffany */
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

#core-strengths p {
    font-size: 0.95rem;
    color: #555;
}

/* Market Distribution Section Styles to be removed */
#market-distribution .map-container {
    position: relative;
    max-width: 800px; 
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden; 
}

.world-map-image {
    display: block;
    width: 100%;
    height: auto;
}

.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--soft-gold, #FFB800);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    transform: translate(-50%, -50%); 
    cursor: pointer; 
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.map-marker:hover {
    transform: translate(-50%, -50%) scale(1.3);
    background-color: var(--tiffany-blue, #81D8D0);
}

.map-legend p {
    font-size: 0.9rem;
    color: #666;
    padding: 0 15px; 
} 