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

body {
    font-family: 'Inter', Arial, sans-serif;
    color: #032a61;
    background-color: white;
}

/* Header */
.titlebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
    background-color: rgb(241, 241, 232);
}

#logo {
    font-size: 26px;
    font-weight: 800;
    font-family: 'Georgia', serif;
}

#nav a {
    margin: 0 20px;
    text-decoration: none;
    color: #555;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

#contact {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hero Section */
.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    background-color: rgb(241, 241, 232);
    min-height: 80vh;
}

.intro h1 {
    font-size: 75px;
    font-family: 'Georgia', serif;
    line-height: 1.1;
    margin-bottom: 20px;
}

.email {
    text-decoration: none;
    color: #f36f21; /* Orange from the pic */
    font-weight: bold;
    border-bottom: 2px solid #f36f21;
}

.experience {
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.num {
    font-size: 60px;
    font-weight: 900;
    margin-right: 15px;
}

.exp-text {
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Center Image */
.profile-container {
    position: relative;
}

.profile-pic {
    width: 350px;
    height: auto;
    filter: grayscale(100%);
    border-radius: 0 0 200px 200px; /* Matching the curved bottom */
    z-index: 2;
    position: relative;
}

/* Right Side */
.sidediv {
    max-width: 250px;
    text-align: right;
}

.interest {
    font-size: 18px;
    color: #666;
    margin-bottom: 80px;
}

.cert-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cert-icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: #ccc;
}

.para {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-align: center;
}

/* Services Section (Replacing Tables) */
.services-section {
    padding: 80px;
    display: flex;
    gap: 50px;
}

.cards-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    display: flex;
    align-items: center;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 20px;
    font-size: 24px;
}

.help-text {
    flex: 1;
}

.help-text h2 {
    font-size: 45px;
    margin-bottom: 20px;
}

.help-text p {
    color: #777;
    line-height: 1.6;
    margin-bottom: 30px;
}