.about-container{
    background-color: #fff;
    margin: 0;
    padding:5px;
}
.about-sub-container {
    display: flex;
    width: 80%;
    margin: 20px auto 40px;
    border-radius: 10px;
}
.left-section {
    width: 40%;
    border-radius: 10px; /* Adjust border-radius as needed */
}
.left-section #img{
    width: 80%;
    height: auto;
    box-sizing: border-box;
    object-fit: contain;
    border-radius: 10px;
    margin-left: -10%;
    margin-top: 10%;
    margin-bottom: -10%;
    display: block;
    animation: moveFromLeft 2s ease-in-out;
}
#img img {
    width: 100%; /* Make the image wider than the container */
    margin: auto 0;
    box-sizing: border-box;
    object-fit: contain;
    box-shadow: 20px -10px;
    
}
@keyframes moveFromLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}
.right-section {
    width: 60%;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}
.right-section h2 {
    color: #fff;
    text-align: center;
    text-decoration: underline;
    margin-bottom: 50px;
}
.about-p {
    line-height: 1.6;
    color: #fff;
    font-size: 20px;
    padding: 0 20px;
}
.btn-about{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.btn-about a{
    border: 1px solid var(--primary-color);
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    background: var(--primary-color);
    text-align: center;
    font-size: 20px;
}
.btn-about a:hover{
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
        
        /* Responsive Design */
        @media screen and (max-width: 768px){
            .about-sub-container{
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                width: 95%;
                background: none;
            }
            .left-section{
                width: 100%;
                height: auto;
                background: none;
                margin-bottom: -10%;
                z-index: 99;
            }
            .left-section #img{
                animation: none;
                width: 100%;
                box-sizing: border-box;
                object-fit: contain;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
                margin: 5px;
                height: auto;
            }
            #img img{
                width: 70%;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }
            .right-section{
                width: 100%;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px){
            .about-sub-container{
                display: flex;
                flex-wrap: wrap;
                width: 95%;
            }
            .left-section{
                width: 40%;
                border-bottom-right-radius: 0;
                border-bottom-left-radius: 0;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .left-section img{
                width: 85%;
                margin: -10px 10px 10px 0;
                box-shadow: 15px -15px #ccc;
                object-fit: cover;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            .right-section{
                width: 60%;
            }
            .right-section h2{
                margin-top: 0;
                font-size: 35px;
            }
            .right-section .about-p{
                padding: 0;
                font-size: 17px;
                margin-top: 0;
                margin-bottom: 20px;
            }
        }
        /* End Responsive Design */