*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #080808;
    color: #fff;
}



.container{
    padding: 10px 10%;
}



#about{
    padding: 80px 0;
    color: #ababab;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: large;
}
.about-col-1{
    flex-basis: 35%; /* It means the width of the column will be 35% */
}
.about-col-1 p,li{
    font-family: cursive;
}
.about-col-1 img{
    width: 100%;
    border-radius: 15px;
}
.about-col-2{
    
    flex-basis: 60%;
}
.about-col-2 p{
    font-size: large;
    font-family: cursive;
}
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #080808;
    color: #fff;
}

.container {
    padding: 10px 10%;
}

#about {
    padding: 80px 0;
    color: #ababab;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: large;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
}

.row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    border-bottom: 3px dashed #5A5A5A;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.about-col-1 {
    flex-basis: 40%;
    max-width: 40%;
    margin-bottom: 20px;
    animation: fadeInLeft 1s ease-in-out; /* Animation added */
}

.about-col-1 img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 3px solid #A1662F;
}

.about-col-2 {
    flex-basis: 55%;
    max-width: 55%;
    margin-bottom: 20px;
    animation: fadeInRight 1s ease-in-out; /* Animation added */
}

.about-col-2 p {
    font-size: large;
    line-height: 1.8;
    font-family: cursive;
}

.about-col-2 p strong {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        align-items: center;
    }

    .about-col-1,
    .about-col-2 {
        flex-basis: 100%;
        max-width: 100%;
        text-align: center;
    }

    .about-col-1 img {
        margin-bottom: 20px;
    }
}

.sub-title {
    padding-bottom: 30px;
    text-align: center;
    animation: fadeInDown 1s ease-in-out; /* Animation added */
}

.container h1 {
    font-size: 300%;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

