.elementor-546 .elementor-element.elementor-element-d2ce442{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-f27b793 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f7faff;
    color: #111827;
    line-height: 1.6;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    background: white;
}

.hero-content {
    max-width: 650px;
}

.tag,
.small-title {
    color: #2563eb;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 65px;
    line-height: 1.1;
    margin: 20px 0;
}

.hero h1 span,
h2 span {
    color: #2563eb;
}

.hero p {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
}

.hero-icon {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: #e8f1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

section {
    padding: 90px 10%;
}

.about {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

h2 {
    font-size: 42px;
    margin: 15px 0 25px;
}

.about p {
    color: #64748b;
    margin-bottom: 15px;
}

.info-box {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-box div {
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
}

.info-box div:last-child {
    border-bottom: none;
}

.info-box p {
    margin: 5px 0 0;
}

.skills,
.projects,
.tools {
    background: white;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.card,
.project {
    background: #f7faff;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #e5edf8;
}

.card h3,
.project h3 {
    margin-bottom: 12px;
}

.card p,
.project p {
    color: #64748b;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.process-grid div {
    background: white;
    padding: 30px;
    border-radius: 14px;
}

.process-grid b {
    color: #2563eb;
    font-size: 25px;
}

.process-grid p {
    color: #64748b;
}

.tool-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.tool-list span {
    background: #eaf2ff;
    color: #2563eb;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
}

.contact {
    text-align: center;
    background: #eef5ff;
}

.contact p {
    color: #64748b;
    margin-bottom: 25px;
}

footer {
    text-align: center;
    padding: 25px;
    background: #111827;
    color: white;
}

@media (max-width: 900px) {

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    section {
        padding: 60px 6%;
    }

    .hero {
        padding: 60px 6%;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-icon {
        width: 200px;
        height: 200px;
        font-size: 70px;
    }

    .cards,
    .process-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 32px;
    }
}/* End custom CSS */