/* Container and Layout */
.about-section {
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 40px auto;
}
/* Bottom Section Margin */
.about-bottom {
    margin-top: 0px;
}
/* About Image with Glass & Hover */
.about-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
    cursor: pointer;
    will-change: transform;
}
.about-img:hover {
    transform: scale(1.05) rotate(1.5deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.4s ease;
}
.about-img:hover img {
    filter: brightness(1.1) saturate(1.1);
}
/* About Content Styling */
.about-content {
    color: #222;
    padding-left: 0px;
}
/* Subtitle with Stylish Line */
.about-sub-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff4c60;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.about-line {
    width: 50px;
    height: 3px;
    background: #93bd29;
    border-radius: 2px;
}
/* Headings with Gradient Text */
.about-content h2,
.about-content h3 {
    font-weight: 700;
    margin-bottom: 18px;
    color: transparent;
    background: #16539b;
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 1.2px;
}
.about-content h2 {
    font-size: 34px;
}
.about-content h3 {
    font-size: 26px;
    margin-top: 20px;
}
/* Paragraph with Soft Shadows and Spacing */
.about-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
    text-shadow: 0 0 3px rgba(255,255,255,0.3);
}
/* List Style - Rounded Bullets */
.about-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}
.about-content ul li {
    position: relative;
    font-size: 18px;
    color: #555;
    padding-left: 25px;
    margin-bottom: 14px;
    letter-spacing: 0.7px;
    line-height: 1.5;
}
.about-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #004e89, #1379c6);
    border-radius: 50%;
    box-shadow: 0 0 6px rgb(0 79 138 / 82%);
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 20px;
    }
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 15px;
        border-radius: 16px;
    }
    .about-sub-title {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    .about-content h2 {
        font-size: 26px;
    }
    .about-content h3 {
        font-size: 20px;
        margin-top: 30px;
    }
    .about-content p,
    .about-content ul li {
        font-size: 16px;
    }
    .about-content ul li::before {
        width: 10px;
        height: 10px;
        top: 7px;
    }
}
