.hidden {
    display: none !important;
}

.btn-gradient-primary {
    background: linear-gradient(145deg, rgba(255, 50, 120, 0.7) 0%, rgba(175, 85, 240, 1) 100%);    
    border-radius: 10px;
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    background: linear-gradient(145deg, rgba(255, 50, 120, 0.9) 0%, rgba(175, 85, 240, 1) 100%);
}

/* Modal Styling */
.modal-content {
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border: none;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(145deg, rgba(255, 27, 107, 0.35) 0%, rgba(156, 69, 228, 0.85) 100%);
    border-radius: 24px 24px 0 0;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);   
}

/* Form Elements */
.form-floating > .form-control {
    border: 2px solid #e0e6ff;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

/* Section Styling */
.section-container {
    padding: 1.5rem;
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(71, 118, 230, 0.1);
}

.gradient-text {
    background: linear-gradient(45deg, #FF1B6B, #9C45E4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

/* Notification System */
.notification {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification.success {
    background: rgba(46, 213, 115, 0.15);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #2ed573;
}

.notification.error {
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

/* Section Icon Styling */
.section-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, rgba(255, 27, 107, 0.15), rgba(156, 69, 228, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.section-icon i {
    font-size: 24px;
    background: linear-gradient(45deg, #FF1B6B, #9C45E4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Header Layout */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Add all other styles from the page... */

.social-img {
    width: 80px; /* or your desired size */
    height: 80px; /* same as width to maintain square */
    overflow: hidden;
    border-radius: 50%; /* for circular shape */
    position: relative;
}

.social-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* this ensures the image covers the area without distortion */
    position: absolute;
    top: 0;
    left: 0;
}

.btn-gradient-primary-square {
    background: linear-gradient(145deg, rgba(255, 50, 120, 0.7) 0%, rgba(175, 85, 240, 1) 100%);    
    border-radius: .2rem;
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-gradient-primary-square:hover {
    background: linear-gradient(98deg, #6357db 0%, #8f5ed8 94%);
}

.border-2 {
    border-width: .2rem !important;
}

.btn-soft-primary {
    color: #7366ff;
    background-color: rgba(115, 102, 255, 0.1);
    border: 1px solid transparent;
    padding: 0.15rem 0.35rem;
    font-size: 0.65rem;
}

.btn-soft-primary:hover {
    color: #fff;
    background: linear-gradient(98deg, #7366ff 0%, #a26cf8 94%);
}