/*
Theme Name: LBS Academy
Theme URI: https://lbs.academy/
Author: Your Name
Author URI: https://yourwebsite.com/
Description: A Bootstrap-based custom WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lbs-academy
*/

*{
font-family: 'Tajawal', sans-serif;
}
.cv-full-width {
    max-width: 1200px;
    margin: 0 auto;
     font-family: 'Tajawal', sans-serif;
}


.cv-profile-image {
    width: 200px; /* Adjust the size as needed */
    height: 200px;
    object-fit: cover; /* Ensures the image maintains its aspect ratio and fits the circle */
    border-radius: 50%; /* Makes the image rounded */
    margin: 0 auto; /* Centers the image */
    display: block; /* Ensures it behaves like a block-level element */
}

.cv-page {
    padding: 50px 0;
}

.cv-full-name {
    font-size: 2.5rem;
    font-weight: bold;
}

.cv-profile-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

.section-title {
    font-size: 1.75rem;
    color: #333;
    text-align: left;
}

.list-group-item {
    font-size: 1.2rem;
    background-color: #fff;
    border: none;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.list-group-item strong {
    font-weight: 600;
}

.list-group-item i {
    color: #007bff;
    margin-right: 10px;
}
#copyCvLink {
    font-size: 16px;
    padding: 10px 20px;
}
.site-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header-logo img {
    max-width: 120px;
    height: auto;
}

.header-title h1 {
    font-size: 2.5em;  
    margin: 10px 0 5px;
    color: #333;
}

.header-title p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.header-menu {
    margin-top: 20px;
}

.header-menu .main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.header-menu .main-menu li {
    display: inline;
}

.header-menu .main-menu li a {
    text-decoration: none;
    font-size: 22px;
    color: #00BF63; /* Green navigation links */
    transition: color 0.3s ease;
}

.header-menu .main-menu li a:hover {
    color: #1f3f1d; /* Darker green on hover */
}



