* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(120deg, #f1f5f9 0%, #e9ebf1 100%);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 85px;
    height: 85px;
    border-radius: 50%;
}

.head {
    color: #333;
    font-size: 28px;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-left: auto; /* Ensures the icons are moved to the far right */
}

.fa {
    font-size: 24px;
    color: #333;
    text-decoration: none;
}

.fa:hover {
    color: #66A6FF;
}



.content-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
}

.container {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
}

.left {
    flex-basis: 45%;
}

.right {
    flex-basis: 45%;
}

.highlight {
    color: #66A6FF;
    font-weight: bold;
}

.certificates ul {
    margin-top: 10px;
    list-style-type: none;
    padding-left: 0;
}

.certificates ul li {
    padding: 5px 0;
}

.centered {
    text-align: center;
    margin: 40px auto;
}

.profiles-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.profiles {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.profile-pic {
    width: 160px;
    height: 200px;
    object-fit: cover;
    border-radius: 10%;
}

.list-container {
    flex-basis: 45%;
    padding: 20px;
}

.offer-list {
    list-style-type: none;
    padding: 0;
}

.offer-list li {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #66A6FF;
    border-radius: 50%;
    margin-right: 10px;
}

.profit-graph-container {
    flex-basis: 50%;
    text-align: center;
}

.profit-graph {
    width: 120%;
    height: 100%;
    max-width: 400px;
}

.schedule {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #ccc;
}

.contact-section {
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #ccc;
}

.social-media a {
    font-size: 24px;   
    margin-right: 15px; 
    text-decoration: none; 
}

.social-media a.fa-envelope {
    color: #D44638; 
    justify-items: right
}

.social-media a.fa-linkedin {
    color: #0077B5; 
}

.social-media a.fa-instagram {
    background: -webkit-linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}

.social-media a:hover {
    opacity: 1; 
}
.book-btn {
    background-color: #66A6FF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-left: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: solid black;

}

.book-btn:hover {
    background-color: #5495E7;
    transform: scale(1.05);
}

.book-btn:active {
    background-color: #3E76CC;
    transform: scale(0.98);
}

.book-btn:focus {
    outline: none;
}

.book-btn.interactive {
    animation: changeText 5s infinite;
}

@keyframes changeText {
    0%, 50% {
        content: "Book a Meeting";
    }
    50.1%, 100% {
        content: "Make a Call";
    }
}

header .button-container {
    position: absolute; /* Absolute positioning */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
}
