/* About Section Styling */
.about {
    padding: 50px 0;
    background-color: #f1f1f1; /* Adjust background color as needed */
}

/* Maximum width for the content */
.max-width {
    max-width: 100%; /* Maximum width to prevent the section from getting too big */
    margin: auto; /* Center the content */
    padding: 0 20px;
}

/* Title Styling with After Pseudo-element */
.about .title {
    text-align: center;
    font-size: 35px;
    font-weight: bolder;
    margin-bottom: 60px;
    color: black; /* Adjust the title color as needed */
    color: blue;
}

.about ul li {
    text-align: left;
    
}

.about strong {
font-weight: bolder;   
color: blue;
}


/* About Content Layout */
.about .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto; /* Center the content */
    padding: 0 15px; /* Add padding for spacing */
}

/* Left Column Styling */
.about .about-content .left {
    flex-basis: 45%; /* Adjust based on layout preference */
    max-width: 360px; /* Maximum width for the left column */
    padding-right: 15px; /* Right padding for spacing */
}

.about .about-content .left img {
    max-width: 100%; /* Maximum width */
    max-height: 300px; /* Smaller fixed maximum height */
    width: auto; /* Auto width to maintain aspect ratio */
    height: auto; /* Auto height to maintain aspect ratio */
    object-fit: cover;
    border-radius: 6px;
}

/* Right Column Styling */
.about .about-content .right {
    flex-basis: 55%; /* Adjust based on layout preference */
    max-width: 440px; /* Maximum width for the right column */
    padding-left: 15px; /* Left padding for spacing */
}

/* Text Content Styling */
.about .about-content .right .text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333; /* Adjust the text color as needed */
}

.about .about-content .right .text span {
    color: #c59655; /* Specific shade of red */
}

.about .about-content .right p {
    text-align: justify;
    color: #333; /* Adjust the paragraph color as needed */
}

/* Download Resume Link Styling */
.about .about-content .right a {
    display: inline-block;
    background: #c59655; /* Specific shade of red */
    color: #fff; /* Text color */
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #c59655;
    transition: all 0.3s ease;
}

.about .about-content .right a:hover {
    color: #c59655;
    background: none;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .about .about-content {
        flex-direction: column;
        text-align: center;
        padding: 0; /* Remove padding for smaller screens */
    }

    .about .about-content .left, 
    .about .about-content .right {
        flex-basis: 100%; /* Take full width on smaller screens */
        max-width: none; /* Remove max-width constraint */
        padding: 0; /* Remove padding for smaller screens */
    }

    .about .about-content .right .text {
        font-size: 20px; /* Adjust font size for smaller screens */
    }
}
.column right about-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
}

