.elementor-575 .elementor-element.elementor-element-23f6123{--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-8499b04 */* {
    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 */

.hero {
    min-height: 90vh;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 80px 10%;

    background: white;
}

.hero-content {
    max-width: 680px;
}

.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;

    transition: 0.3s;
}

.btn:hover {
    background: #1d4ed8;
}


/* HERO ICON */

.hero-icon {
    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: #e8f1ff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 100px;
}


/* COMMON SECTION */

section {
    padding: 90px 10%;
}


/* ABOUT */

.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 */

.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;
}


/* WHITE SECTIONS */

.skills,
.projects,
.tools {
    background: white;
}


/* CARDS */

.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;

    transition: 0.3s;
}

.card:hover,
.project:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(37,99,235,0.10);
}

.icon {
    font-size: 35px;

    margin-bottom: 18px;
}

.card h3,
.project h3 {
    margin-bottom: 12px;
}

.card p,
.project p {
    color: #64748b;
}


/* PROCESS */

.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;
}


/* TOOLS */

.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 */

.contact {
    text-align: center;

    background: #eef5ff;
}

.contact p {
    color: #64748b;

    margin-bottom: 25px;
}


/* FOOTER */

footer {
    text-align: center;

    padding: 25px;

    background: #111827;

    color: white;
}


/* TABLET */

@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);
    }
}


/* MOBILE */

@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 */