.about-container {
    display: flex;
    min-height: 100vh;
}


/* Main Content */
.about-main {
    flex: 1;
    margin-left: 250px;
    transition: margin-left 0.3s ease;
}


/* Content Area */
.about-content {
    padding: 30px;
    min-height: calc(100vh - 70px - 60px);
}

.content-head {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.content-head-left h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #4da6ff, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.content-head-left p {
    color: #bbbbbb;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Edit About Button */
.edit-about-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4da6ff, #0066cc);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(77, 166, 255, 0.3);
    min-height: 44px;
}

.edit-about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(77, 166, 255, 0.5);
}

.edit-about-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.edit-about-btn:hover i {
    transform: rotate(90deg);
}

/* About Content */
.about-info-container {
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(77, 166, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.about-info-section {
    margin-bottom: 20px;
}

.about-info-section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.about-info-section p {
    color: #bbbbbb;
    font-size: 1rem;
    line-height: 1.6;
}

/* About Form Modal */
.about-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.about-form-modal.active {
    opacity: 1;
    visibility: visible;
}

.form-panel {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(77, 166, 255, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 40px rgba(77, 166, 255, 0.2);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.about-form-modal.active .form-panel {
    transform: translateY(0);
}

.form-head {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(77, 166, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-head h2 {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(90deg, #4da6ff, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.close-form {
    background: transparent;
    border: none;
    color: #bbbbbb;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
}

.close-form:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.form-body {
    padding: 25px;
}

.form-item {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #bbbbbb;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-field,
.form-text {
    width: 100%;
    padding: 12px 16px;
    background: rgba(25, 25, 25, 0.7);
    border: 1px solid rgba(77, 166, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-height: 100px;
}

.form-field:focus,
.form-text:focus {
    outline: none;
    border-color: #4da6ff;
    box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.2);
}

.form-text {
    resize: vertical;
}

.form-cta {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-top: 10px;
}

.form-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 44px;
}

.btn-primary {
    background: linear-gradient(135deg, #4da6ff, #0066cc);
    color: white;
    box-shadow: 0 5px 15px rgba(77, 166, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(77, 166, 255, 0.5);
}

.btn-secondary {
    background: rgba(50, 50, 50, 0.5);
    color: #bbbbbb;
    border: 1px solid rgba(77, 166, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(70, 70, 70, 0.5);
    color: #fff;
}

/* Footer */
.about-footer {
    background: #111111;
    border-top: 1px solid rgba(77, 166, 255, 0.2);
    padding: 20px 30px;
    text-align: center;
    color: #bbbbbb;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {


    .about-main {
        margin-left: 0;
    }


}

@media (max-width: 768px) {


    .about-content {
        padding: 20px;
    }

    .content-head {
        gap: 10px;
    }

    .content-head-left h1 {
        font-size: 1.8rem;
    }

    .content-head-left p {
        font-size: 1rem;
    }

    .about-info-container {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .about-content {
        padding: 15px;
    }

    .content-head-left h1 {
        font-size: 1.5rem;
    }

    .content-head-left p {
        font-size: 0.9rem;
    }

    .edit-about-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
        min-height: 40px;
    }

    .edit-about-btn i {
        font-size: 1rem;
    }

    .about-info-section h2 {
        font-size: 1.4rem;
    }

    .about-info-section p {
        font-size: 0.9rem;
    }

    .form-head h2 {
        font-size: 1.4rem;
    }

    .form-body {
        padding: 20px 15px;
    }

    .form-field,
    .form-text {
        padding: 10px 12px;
        font-size: 0.9rem;
        min-height: 100px;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 40px;
    }


}