/* ✅ Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Heebo", sans-serif;
}

/* ✅ About Section */
.about-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5%;
    background: #f4f8fc; /* Light Blue Background */
    position: relative;
    overflow: hidden;
}

/* ✅ Left Side: Text Content with Frame */
.about-content {
    width: 60%;
    color: #333;
    position: relative;
    z-index: 2;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 4px solid #007bff;
}

.about-content h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #0056b3;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* ✅ Key Points */
.key-points {
    margin-bottom: 15px;
}

.point {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.point span {
    font-size: 22px;
    color: #007bff;
    margin-right: 10px;
}

.point p {
    font-size: 18px;
    color: #333;
}

/* ✅ Right Side: Curved Background with Image */
.about-image-frame {
    width: 40%;
    height: 100%;
    background: #acda4d;
    position: absolute;
    top: 0;
    right: 0;
    clip-path: ellipse(80% 50% at 100% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ✅ Image Inside Curved Section */
.curve-box {
    width: 280px;
    height: 280px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: ;adow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* ✅ Image */
.curve-box img {
    width: 80%;
    max-width: 220px;
    border-radius: 10px;
}

/* ✅ Adding Blue Border Effect */
.curve-box::before {
    content: "";
    width: 100%;
    height: 100%;
    border: 4px solid #007bff;
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 15px;
    z-index: -1;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 40px 5%;
    }

    .about-content {
        width: 100%;
    }

    .about-image-frame {
        width: 100%;
        height: 300px;
        clip-path: ellipse(100% 100% at 60% 100%);
        position: relative;
        top: 40px;
    }

    .curve-box {
        width: 220px;
        height: 220px;
    }

    .curve-box img {
        max-width: 150px;
    }

    .about-content h1 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 16px;
    }

    .point p {
        font-size: 16px;
    }
}
/* ✅ Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Heebo", sans-serif;
}

/* ✅ About Section (Unchanged) */
.about-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5%;
    background: #f4f8fc;
    position: relative;
    overflow: hidden;
}

/* ✅ Read More Button */
.read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: #0056b3;
}

/* ✅ Read More Modal - Stylish with Curves & Color Combination */
.read-more-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    color: white;
    font-size: 18px;
}

.read-more-modal p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ✅ Modal Buttons - Modern Style */
.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.modal-btn {
    padding: 10px 18px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close {
    background: #ff4757;
    color: white;
}

.modal-close:hover {
    background: #e84118;
}

.modal-know-more {
    background: #2ed573;
    color: white;
}

.modal-know-more:hover {
    background: #1dd1a1;
}

/* ✅ Overlay Effect */
.read-more-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    backdrop-filter: blur(5px);
}
    