* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }
    body{
        background: rgba(253, 188, 253, 0.603);
    }
    header{
        width: 100%;
        height: 90px;
        background:rgb(79, 0, 87);
        color: white;
        text-align: center;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
    .cards{
        display:flex;
        flex-direction: row;
        gap: 30px;
        padding: 30px 50px;
    }
      .cards2{
       display: grid;
       grid-template-columns: repeat(2, 1fr);
        gap: 0px;
        padding: 20px 20px;
       
    }
    .first-section{
        display:flex;
        flex-direction: column;
        width: 440px;
        gap: 20px;
        padding: 40px 30px;
        margin:0px;
       
    }
    .second-section{
        display:flex;
        flex-direction: column;
        width: 800px;
        gap: 5px;
        padding: 0px 25px;
        margin:0px;
        transition: transform 0.2s ease;
    }
    .second-section:hover{
        transform: translateY(-5px);
    }
    .card{
        width: 290px;
        height: 145px;
        background: rgb(109, 22, 117);
        color: white;
        border-radius: 5%;
        text-align: center;
        padding: 30px;
        font-size: 14px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        transition: transform 0.2s ease;
    }
    .card2{
        width: 400px;
        height: 140px;
        background: rgb(79, 15, 85);
        color: white;
        border-radius: 5%;
        text-align: center;
        font-size: 14px;
        padding: 30px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        transition: transform 0.2s ease;
    }
    .card:hover {
  transform: translateY(5px);
  background: rgb(78, 16, 83)
}
    .card i{
        margin-bottom: 15px;
    }
     .card h2{
        margin-bottom: 15px;
    }

     .card2:hover {
  transform: translateY(-5px);
  background: rgb(63, 12, 68);
}
    .card2 i{
        margin-bottom: 15px;
    }
     .card2 h2{
        margin-bottom: 15px;
    }

.my-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    width: 1200px;
    height: 620px;
    margin: 0px 0px 30px 50px;
}
.first-grid{
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    width: 400px;
    height: 580px;
    margin: 5px;
    padding: 60px 5px 5px 5px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
     transition: transform 0.2s ease;
    }
.first-grid:hover{
        transform: translateY(-5px);
    }
.second-grid{
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    width: 750px;
    height: 510px;
    margin: 2px;
}
.first-chart{
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    width: 740px;
    height: 300px;
    margin: 2px;
    padding: 15px 15px 15px 60px;
    border-radius: 10px;
    transition: transform 0.2s ease;
    }
.first-chart:hover{
        transform: translateY(-5px);
    }
.second-chart{
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    width: 740px;
    height: 300px;
    margin: 2px;
    padding: 20px 15px 15px 60px;
    border-radius: 10px;
    transition: transform 0.2s ease;
    }
.second-chart:hover{
        transform: translateY(5px);
    }

.second-chart2{
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    width: 700px;
    height: 370px;
    margin: 2px;
    padding: 20px 50px 10px 20px;
    border-radius: 10px;
}


footer{
        width: 100%;
        height: 120px;
        background:rgb(79, 0, 87);
        color: white;
        text-align: center;
        padding: 80px 0px 70px 20px;
        font-size: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }


.social-links {
    display: flex;
    gap: 1rem;
}
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: rgb(86, 6, 94);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

