.elementor-5 .elementor-element.elementor-element-51aedb7{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-26ddc19 *//* --- CSS Variables & Reset --- */
:root {
    /* Palette inspired by LeanLayer & User Request */
    --primary-purple: #6B46C1;
    --primary-dark: #553C9A;
    --accent-green: #10B981;
    --accent-green-hover: #059669;
    --text-dark: #1F2937;
    --text-light: #4B5563;
    /* Slightly darker for better readability */
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --border-color: #E5E7EB;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
ul {
    list-style: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}
h1 {
    font-size: 3rem;
}
h2 {
    font-size: 2.25rem;
    color: var(--primary-purple);
}
h3 {
    font-size: 1.5rem;
}
p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}
.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}
.subheading {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 400;
}
/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}
.btn-primary {
    background-color: var(--primary-purple);
    color: white;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: var(--accent-green);
    color: white;
}
.btn-secondary:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-2px);
}
.btn-outline {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
}
.btn-outline:hover {
    background-color: var(--primary-purple);
    color: white;
}
/* --- Hero Section --- */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #F3F4F6 0%, #EDE9FE 100%);
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
}
.hero h1 span {
    color: var(--primary-purple);
}
.hero .status-badge {
    display: inline-block;
    background: #DEF7EC;
    color: #03543F;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}
/* --- Grid Layouts --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-purple);
}
.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-green);
}
.card h3 {
    color: var(--primary-dark);
}
/* --- Sections --- */
section {
    padding: 80px 0;
}
.bg-light {
    background-color: var(--bg-light);
}
/* --- Resume/Certifications Style --- */
.skill-list,
.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}
.skill-tag {
    background: #EFF6FF;
    color: #1E40AF;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}
.cert-tag {
    background: #ECFDF5;
    color: #047857;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #A7F3D0;
}
/* --- Responsive Tweaks --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .hero-cta {
        flex-direction: column;
    }
}/* End custom CSS */