/* Custom CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a2e; /* Dark background color */
    color: #f0f0f0; /* Light text color */
    line-height: 1.6;
    padding: 0 40px; /* Overall page padding for a contained look */
}

a {
    color: inherit;
    text-decoration: none;
}

/* === Navbar Styling === */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
}

.logo-icon {
    font-size: 24px;
    margin-right: 5px;
    color: #ffc107; /* Yellow */
}

.nav-links a {
    margin-left: 30px;
    font-weight: 400;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

/* === Hero Section Styling === */
.hero-section {
    padding: 50px 0 0;
}

.hero-content {
    display: grid;
    grid-template-areas:
        "text image services"
        "text image services";
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content {
    grid-area: text;
    padding-top: 50px; /* Align with the image height visually */
    max-width: 350px;
}

.greeting {
    font-size: 24px;
    font-weight: 300;
}

.name {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 10px 0;
}

.underline {
    width: 93px;
    height: 4px;
    background-color: #ffc107; /* Yellow underline */
    margin-bottom: 20px;
}

.bio {
    font-size: 16px;
    font-weight: 300;
    color: #aaa;
}

.image-container {
    grid-area: image;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Create the large circular effect */
    background: radial-gradient(circle at center, rgba(46, 49, 66, 0.8) 0%, rgba(26, 26, 46, 0) 70%);
}

.image-container img {
    /* Placeholder for the person image */
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    /* You may need to adjust the position to match the image precisely */
}

.services-box {
    grid-area: services;
    background-color: #2e3142; /* Slightly lighter dark background for the box */
    padding: 25px;
    border-radius: 10px;
    margin-top: 50px; /* To visually align it with the image */
    height: fit-content;
}

.services-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-text {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.read-more {
    color: #ffc107;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.social-icons i {
    font-size: 18px;
    color: #ffc107;
    margin-right: 15px;
}

/* === Trusted By Section === */
.trusted-by {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #2e3142; /* Darker bar background */
    padding: 20px 40px;
    border-radius: 10px;
    margin-top: 50px;
}

.trusted-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    opacity: 0.8;
}

.trusted-logo i {
    margin-right: 10px;
    font-size: 24px;
    /* Specific colors for logos to match the image */
}

.fa-meta { color: #007bff; } /* Blue */
.fa-google { color: #db4437; } /* Red */
.fa-linkedin { color: #0077b5; } /* Dark Blue */
.fa-slack { color: #e01563; } /* Pink/Purple */

/* === What Can I Do Section === */
.what-i-can-do {
    display: flex;
    gap: 80px;
    padding: 100px 0;
}

.left-side {
    flex: 1;
}

.left-side h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 400px;
}

.description {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 400px;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .number {
    font-size: 40px;
    font-weight: 700;
    color: #ffc107; /* Yellow */
}

.stat-item .label {
    font-size: 14px;
    color: #ccc;
    opacity: 0.7;
}

.right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

.service-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2e3142;
    padding: 15px 25px;
    border-radius: 10px;
    border-left: 5px solid transparent; /* To mimic the subtle line */
    transition: border-left 0.3s;
}

.service-card:hover {
    border-left: 5px solid #ffc107;
}

.card-content {
    display: flex;
    align-items: center;
}

.card-content img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 15px;
    object-fit: cover;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
}

.service-subtitle {
    font-size: 14px;
    color: #ccc;
    opacity: 0.7;
}

.service-card .fa-arrow-right {
    color: #ffc107;
    font-size: 20px;
}