/* ==========================
   HOME HEADER
========================== */

.home-header{
    width:100%;
    height:70vh;
    padding:0 5%;
    /* background: #000; */
    background-color:#008080;

    display:flex;
    justify-content:space-between;
    align-items:center;

    overflow:visible;
}


/* ==========================
   LEFT
========================== */

.header-text{
    width:30%;
}

.header-text p{
    color:#fff;
    font-size:1.2rem;
    font-weight:600;
    margin-bottom:20px;
}

.header-text h1{
    color:#fff;
    font-size:4.8rem;
    font-weight:800;
    line-height:.95;
    margin-bottom:20px;
}

.header-text img{
    width:190px;
    margin-bottom:35px;
}

.header-text h3{
    color:#c7dddd;
    font-size:1.4rem;
    font-weight:600;
}


/* ==========================
   CENTER
========================== */

.header-image{
    /* width:40%; */
    display:flex;
    justify-content:center;
}

.image-bg{
    width:380px;
    height:500px;
    background:#FFC72C;

    border-radius:180px 180px 180px 180px;
    overflow: hidden;
    display:flex;
    justify-content:center;
    align-items:flex-end;

    transform:translateY(50px);
}

.image-bg img{
    width:500px;
    /* max-width:520px; */
    height: 400px;
}


/* ==========================
   RIGHT
========================== */

.header-stats{
    width:20%;

    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:45px;
}

.header-stats p{
    color:#c7dddd;
    font-size:1rem;
    font-weight:600;
    margin-bottom:8px;
}

.header-stats h2{
    color:#fff;
    font-size:3rem;
    font-weight:800;
}


/* ==========================
   RESPONSIVE
========================== */

@media (max-width:992px){

    .home-header{
        height:auto;
        padding:60px 5%;
        flex-direction:column;
        gap:60px;
    }

    .header-text,
    .header-image,
    .header-stats{
        width:100%;
        text-align:center;
    }

    .header-stats{
        align-items:center;
    }

    .header-stats p,
    .header-stats h2{
        text-align:center;
    }

    .image-bg{
        width:300px;
        height:430px;
        transform:translateY(0);
    }

    .header-text h1{
        font-size:3.5rem;
    }
}




/* tools section */
.tools {
    width: 100%;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 45px;
    margin-top: 140px;
    margin-bottom: 40px;
}

.tool-card {
    height: 260px;
    border: 2px solid #edf1f1;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    transition: 0.3s ease;
    background: white;
}

.tool-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.tool-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #222;
}

.tool-card p {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #657070;
}

.tool-card:hover {
    background:#008080 ;
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    color: white;
}
.tool-card:hover p{
  color: white;
}


/* tablets */
@media (max-width: 1100px) {
    .tools {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* mobile */
@media (max-width: 600px) {
    .tools {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tool-card {
        height: 220px;
    }
}




.education-experience {
    width: 90%;
    max-width: 1200px;
    margin: 100px auto;
}

.education-experience h2 {
    text-align: center;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 70px;
}

.education-experience .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}

.education-experience .item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.education-experience span {
    color: #008b72;
    font-weight: 700;
    font-size: 1.2rem;
}

.education-experience .info {
    border-left: 2px solid #ddd;
    padding-left: 30px;
    position: relative;
}

.education-experience .info::before {
    content: "";
    width: 14px;
    height: 14px;
    background: #008b72;
    border-radius: 50%;
    position: absolute;
    left: -8px;
    top: 6px;
}

.education-experience h3 {
    font-size: 1.7rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.education-experience p {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .education-experience .content {
        grid-template-columns: 1fr;
    }

    .education-experience .item {
        grid-template-columns: 90px 1fr;
    }

    .education-experience h2 {
        font-size: 2.3rem;
    }

    .education-experience h3 {
        font-size: 1.3rem;
    }
}