@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* General Reset */
body {
    margin: 0;
    font-family: "Poppins", serif;
    background: linear-gradient(to bottom, #1e1e2f, #111);
    color: #333;
    display: flex;
    justify-content: center;
    align-items:center;
    height: 100vh;
    overflow-x: hidden;
}

/* About Section */
.about-section {
  border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
   box-shadow: 0px 0px 25px aqua;
background-color:rgba(0, 0, 0, 0.386);
    animation: fadeIn 1s ease-in-out;
    box-shadow: 0 4px 10px white;
    
}

.about-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;

}

.about-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color:aqua;
    text-shadow: 1px 14px 9px rgb(91, 156, 156);
    border-bottom: 2px solid red;
    display: inline-block

}

.about-text h1::after{
  
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: white;
  
}

.about-text .btn {
    display: inline-block;
    padding: 12px 24px;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    animation: fadeIn 1s 0.9 ease-in-out;
}

.about-text .btn:hover {
    background-color: #0056b3;
}

.about-image img {
   
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(227, 218, 218, 0.845);
    animation: fade 1s ease-in-out;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        margin: 20px auto;
    }

    .about-image img{
        animation: fadeIn 1s ease-in-out;
     }

     .about-text h1{
        margin-top: 122px;
     }

     #icon {
    
        display: flex;
        justify-content: center;
        align-items: center;
        
     }
   
}

@media (max-width: 512px) {
    .about-text h1{
        margin-top: 162px;
     }

}

#icon i {
    font-size: 28px;
   color: #0015ff;
   background-color: white;
    border: 3px solid rgb(0, 0, 0);
    height: 45px;
    width: 45px;
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 50%;
    float: left;
    margin-top: 25px;
    margin-right: 12px;

  }
#icon i{
  
    margin-top: 23px;
    margin-right:13px ;
    font-size: 36px;
 }




/* Animation */
 @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation  */
@keyframes fade {
    from {
        opacity: 0;
        transform: translatex(50px);
    }

    to {
        opacity: 1;
        transform: translatex(0);
    }
}


